mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 12:39:25 +01:00
move non-mail specific methods of translation class to Api\Translation
This commit is contained in:
parent
ea798d93f2
commit
49f75bc8dd
@ -11,7 +11,6 @@
|
|||||||
namespace EGroupware\Api;
|
namespace EGroupware\Api;
|
||||||
|
|
||||||
use egw_customfields;
|
use egw_customfields;
|
||||||
use translation;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* eGW's application configuration in a centralized location
|
* eGW's application configuration in a centralized location
|
||||||
@ -295,7 +294,7 @@ class Config
|
|||||||
//$client_config[$app]['customfields'] = egw_customfields::get($app);
|
//$client_config[$app]['customfields'] = egw_customfields::get($app);
|
||||||
}
|
}
|
||||||
// some things need on client-side which are not direct configs
|
// some things need on client-side which are not direct configs
|
||||||
$client_config['phpgwapi']['max_lang_time'] = translation::max_lang_time();
|
$client_config['phpgwapi']['max_lang_time'] = Translation::max_lang_time();
|
||||||
|
|
||||||
return $client_config;
|
return $client_config;
|
||||||
}
|
}
|
||||||
|
@ -15,7 +15,6 @@ namespace EGroupware\Api\Db;
|
|||||||
|
|
||||||
use EGroupware\Api;
|
use EGroupware\Api;
|
||||||
|
|
||||||
use translation;
|
|
||||||
use html;
|
use html;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -641,7 +640,7 @@ class Backup
|
|||||||
{
|
{
|
||||||
if ($convert_to_system_charset && !$this->db->capabilities['client_encoding'])
|
if ($convert_to_system_charset && !$this->db->capabilities['client_encoding'])
|
||||||
{
|
{
|
||||||
$data = translation::convert($data,$charset);
|
$data = Api\Translation::convert($data,$charset);
|
||||||
}
|
}
|
||||||
if ($insert_n_rows > 1)
|
if ($insert_n_rows > 1)
|
||||||
{
|
{
|
||||||
|
1110
api/src/Translation.php
Normal file
1110
api/src/Translation.php
Normal file
File diff suppressed because it is too large
Load Diff
@ -17,7 +17,6 @@ namespace EGroupware\Api;
|
|||||||
use mime_magic;
|
use mime_magic;
|
||||||
use common;
|
use common;
|
||||||
use html;
|
use html;
|
||||||
use translation;
|
|
||||||
use HTTP_WebDAV_Server;
|
use HTTP_WebDAV_Server;
|
||||||
use egw_time;
|
use egw_time;
|
||||||
|
|
||||||
@ -1518,7 +1517,7 @@ class Vfs extends Vfs\StreamWrapper
|
|||||||
|
|
||||||
// Use safe names - replace unsafe chars, convert to ASCII (ZIP spec says CP437, but we'll try)
|
// Use safe names - replace unsafe chars, convert to ASCII (ZIP spec says CP437, but we'll try)
|
||||||
$path = explode('/',$relative);
|
$path = explode('/',$relative);
|
||||||
$_name = translation::convert(translation::to_ascii(implode('/', str_replace($replace,'_',$path))),false,'ASCII');
|
$_name = Translation::convert(Translation::to_ascii(implode('/', str_replace($replace,'_',$path))),false,'ASCII');
|
||||||
|
|
||||||
// Don't go infinite with app entries
|
// Don't go infinite with app entries
|
||||||
if(self::is_link($addfile))
|
if(self::is_link($addfile))
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user