2021-08-18 19:42:30 +00:00
< ? php
2021-09-02 21:44:01 +00:00
/**
* @ brief translater , a plugin for Dotclear 2
2021-11-01 21:32:32 +00:00
*
2021-09-02 21:44:01 +00:00
* @ package Dotclear
* @ subpackage Plugin
2021-11-01 21:32:32 +00:00
*
2021-09-02 21:44:01 +00:00
* @ author Jean - Christian Denis & contributors
2021-11-01 21:32:32 +00:00
*
2021-09-02 21:44:01 +00:00
* @ copyright Jean - Christian Denis
* @ copyright GPL - 2.0 https :// www . gnu . org / licenses / gpl - 2.0 . html
*/
2023-03-14 23:26:31 +00:00
declare ( strict_types = 1 );
namespace Dotclear\Plugin\translater ;
use dcCore ;
use dcNsProcess ;
use dcPage ;
use dt ;
use html ;
use files ;
use form ;
class Manage extends dcNsProcess
{
public static function init () : bool
{
if ( defined ( 'DC_CONTEXT_ADMIN' )) {
self :: $init = dcCore :: app () -> auth -> isSuperAdmin ();
}
2021-08-18 19:42:30 +00:00
2023-03-14 23:26:31 +00:00
return self :: $init ;
2021-09-24 23:58:59 +00:00
}
2021-08-18 19:42:30 +00:00
2023-03-14 23:26:31 +00:00
public static function process () : bool
{
if ( ! self :: $init ) {
return false ;
}
2021-08-18 22:48:47 +00:00
2023-03-14 23:26:31 +00:00
// set vars used in process and render methods
dcCore :: app () -> admin -> translater = new Translater ();
dcCore :: app () -> admin -> type = $_REQUEST [ 'type' ] ? ? dcCore :: app () -> admin -> translater -> get ( 'start_page' ) ? : '' ;
dcCore :: app () -> admin -> module = $_REQUEST [ 'module' ] ? ? '' ;
dcCore :: app () -> admin -> lang = $_REQUEST [ 'lang' ] ? ? '' ;
$action = $_POST [ 'action' ] ? ? '' ;
2021-08-18 22:48:47 +00:00
2023-03-14 23:26:31 +00:00
// check module type
if ( ! in_array ( dcCore :: app () -> admin -> type , [ 'plugin' , 'theme' ])) {
dcCore :: app () -> admin -> type = '' ;
2021-08-18 22:48:47 +00:00
}
2023-03-14 23:26:31 +00:00
// check if module exists
if ( ! empty ( dcCore :: app () -> admin -> type ) && ! empty ( dcCore :: app () -> admin -> module )) {
try {
dcCore :: app () -> admin -> module = dcCore :: app () -> admin -> translater -> getModule ( dcCore :: app () -> admin -> type , dcCore :: app () -> admin -> module );
} catch ( Exception $e ) {
dcCore :: app () -> error -> add ( $e -> getMessage ());
dcCore :: app () -> admin -> module = '' ;
2021-08-18 22:48:47 +00:00
}
2021-09-24 23:58:59 +00:00
}
2023-03-14 23:26:31 +00:00
//check if module lang exists
if ( ! empty ( dcCore :: app () -> admin -> module ) && ! empty ( dcCore :: app () -> admin -> lang )) {
try {
dcCore :: app () -> admin -> lang = dcCore :: app () -> admin -> translater -> getLang ( dcCore :: app () -> admin -> module , dcCore :: app () -> admin -> lang );
} catch ( Exception $e ) {
dcCore :: app () -> error -> add ( $e -> getMessage ());
dcCore :: app () -> admin -> lang = '' ;
2021-08-18 22:48:47 +00:00
}
2021-09-24 23:58:59 +00:00
}
2021-08-18 22:48:47 +00:00
2023-03-14 23:26:31 +00:00
// execute action
try {
if ( $action == 'module_create_backups' ) {
if ( empty ( dcCore :: app () -> admin -> module ) || empty ( $_POST [ 'codes' ])) {
throw new Exception ( __ ( 'Nothing to backup' ));
}
$module_codes = dcCore :: app () -> admin -> module -> getUsedlangs ();
foreach ( $module_codes as $code_id ) {
if ( in_array ( $code_id , $_POST [ 'codes' ])) {
dcCore :: app () -> admin -> module -> createBackup ( $code_id );
}
}
self :: redirect ( __ ( 'Backup successfully created' ));
2021-08-18 22:48:47 +00:00
}
2023-03-14 23:26:31 +00:00
if ( $action == 'module_restore_backup' ) {
if ( empty ( dcCore :: app () -> admin -> module ) || empty ( $_POST [ 'files' ])) {
throw new Exception ( __ ( 'Nothing to restore' ));
}
$module_backups = dcCore :: app () -> admin -> module -> getBackups ( true );
foreach ( $module_backups as $backup_file ) {
if ( in_array ( $backup_file , $_POST [ 'files' ])) {
dcCore :: app () -> admin -> module -> restoreBackup ( $backup_file );
}
}
2021-08-18 22:48:47 +00:00
2023-03-14 23:26:31 +00:00
self :: redirect ( __ ( 'Backup successfully restored' ));
}
2021-08-18 22:48:47 +00:00
2023-03-14 23:26:31 +00:00
if ( $action == 'module_delete_backup' ) {
if ( empty ( dcCore :: app () -> admin -> module ) || empty ( $_POST [ 'files' ])) {
throw new Exception ( __ ( 'Nothing to delete' ));
}
$module_backups = dcCore :: app () -> admin -> module -> getBackups ( true );
foreach ( $module_backups as $backup_file ) {
if ( in_array ( $backup_file , $_POST [ 'files' ])) {
dcCore :: app () -> admin -> module -> deleteBackup ( $backup_file );
}
}
2021-08-18 22:48:47 +00:00
2023-03-14 23:26:31 +00:00
self :: redirect ( __ ( 'Backup successfully deleted' ));
}
2021-08-18 22:48:47 +00:00
2023-03-14 23:26:31 +00:00
if ( $action == 'module_export_pack' ) {
if ( empty ( dcCore :: app () -> admin -> module ) || empty ( $_POST [ 'codes' ])) {
throw new Exception ( __ ( 'Nothing to export' ));
}
dcCore :: app () -> admin -> module -> exportPack ( $_POST [ 'codes' ]);
2021-08-18 22:48:47 +00:00
2023-03-14 23:26:31 +00:00
self :: redirect ( __ ( 'Language successfully exported' ));
}
2021-08-18 22:48:47 +00:00
2023-03-14 23:26:31 +00:00
if ( $action == 'module_import_pack' ) {
if ( empty ( $_FILES [ 'packfile' ][ 'name' ])) {
throw new Exception ( __ ( 'Nothing to import' ));
}
dcCore :: app () -> admin -> module -> importPack ( $_FILES [ 'packfile' ]);
self :: redirect ( __ ( 'Language successfully imported' ));
2021-09-25 09:45:08 +00:00
}
2021-08-18 22:48:47 +00:00
2023-03-14 23:26:31 +00:00
if ( $action == 'module_add_code' ) {
if ( empty ( dcCore :: app () -> admin -> module ) || empty ( $_POST [ 'code' ])) {
throw new Exception ( __ ( 'Nothing to create' ));
}
dcCore :: app () -> admin -> module -> addLang ( $_POST [ 'code' ], $_POST [ 'from' ] ? ? '' );
self :: redirect ( __ ( 'Language successfully added' ), $_POST [ 'code' ]);
}
if ( $action == 'module_delete_codes' ) {
if ( empty ( dcCore :: app () -> admin -> module ) || empty ( $_POST [ 'codes' ])) {
throw new Exception ( __ ( 'Nothing to delete' ));
}
$module_codes = dcCore :: app () -> admin -> module -> getUsedlangs ();
foreach ( $module_codes as $code_id ) {
if ( in_array ( $code_id , $_POST [ 'codes' ])) {
dcCore :: app () -> admin -> module -> delLang ( $code_id );
}
}
self :: redirect ( __ ( 'Language successfully deleted' ), $_POST [ 'code' ]);
}
if ( $action == 'module_update_code' ) {
if ( empty ( dcCore :: app () -> admin -> module ) || empty ( $_POST [ 'code' ]) || empty ( $_POST [ 'entries' ])) {
throw new Exception ( __ ( 'Nothing to update' ));
2021-08-18 22:48:47 +00:00
}
2023-03-14 23:26:31 +00:00
if ( ! empty ( $_POST [ 'update_group' ])) {
foreach ( $_POST [ 'entries' ] as $i => $entry ) {
if ( isset ( $entry [ 'check' ]) && isset ( $_POST [ 'multigroup' ])) {
$_POST [ 'entries' ][ $i ][ 'group' ] = $_POST [ 'multigroup' ];
}
}
}
dcCore :: app () -> admin -> module -> updLang ( $_POST [ 'code' ], $_POST [ 'entries' ]);
self :: redirect ( __ ( 'Language successfully updated' ), $_POST [ 'code' ]);
2021-08-18 22:48:47 +00:00
}
2023-03-14 23:26:31 +00:00
} catch ( Exception $e ) {
dcCore :: app () -> error -> add ( $e -> getMessage ());
2021-08-18 22:48:47 +00:00
}
2023-03-14 23:26:31 +00:00
return true ;
2021-09-24 23:58:59 +00:00
}
2021-08-18 19:42:30 +00:00
2023-03-14 23:26:31 +00:00
public static function render () : void
{
if ( ! self :: $init ) {
return ;
2021-08-18 22:48:47 +00:00
}
2023-03-14 23:26:31 +00:00
$breadcrumb = [ My :: name () => dcCore :: app () -> adminurl -> get ( My :: id (), [ 'type' => '-' ])];
if ( empty ( dcCore :: app () -> admin -> type )) {
$breadcrumb = [ My :: name () => '' ];
} elseif ( empty ( dcCore :: app () -> admin -> module )) {
$breadcrumb [ dcCore :: app () -> admin -> type == 'plugin' ? __ ( 'Plugins' ) : __ ( 'Themes' )] = '' ;
} elseif ( empty ( dcCore :: app () -> admin -> lang )) {
$breadcrumb [ dcCore :: app () -> admin -> type == 'plugin' ? __ ( 'Plugins' ) : __ ( 'Themes' )] = dcCore :: app () -> adminurl -> get ( My :: id (), [ 'type' => dcCore :: app () -> admin -> type ]);
$breadcrumb [ html :: escapeHTML ( dcCore :: app () -> admin -> module -> name )] = '' ;
} elseif ( ! empty ( dcCore :: app () -> admin -> lang )) {
$breadcrumb [ dcCore :: app () -> admin -> type == 'plugin' ? __ ( 'Plugins' ) : __ ( 'Themes' )] = dcCore :: app () -> adminurl -> get ( My :: id (), [ 'type' => dcCore :: app () -> admin -> type ]);
$breadcrumb [ html :: escapeHTML ( dcCore :: app () -> admin -> module -> name )] = dcCore :: app () -> adminurl -> get ( My :: id (), [ 'type' => dcCore :: app () -> admin -> type , 'module' => dcCore :: app () -> admin -> module -> id ]);
$breadcrumb [ html :: escapeHTML ( sprintf ( __ ( '%s language edition' ), dcCore :: app () -> admin -> lang -> name ))] = '' ;
2021-08-18 22:48:47 +00:00
}
2023-03-14 23:26:31 +00:00
dcPage :: openModule (
My :: name (),
dcPage :: jsPageTabs () .
dcPage :: cssModuleLoad ( My :: id () . '/css/backend.css' ) .
dcPage :: jsJson ( 'translater' , [
'title_add_detail' => __ ( 'Use this text' ),
'image_field' => dcPage :: getPF ( My :: id () . '/img/field.png' ),
'image_toggle' => dcPage :: getPF ( My :: id () . '/img/toggle.png' ),
]) .
dcPage :: jsModuleLoad ( My :: id () . '/js/backend.js' ) .
# --BEHAVIOR-- translaterAdminHeaders
dcCore :: app () -> callBehavior ( 'translaterAdminHeaders' )
2021-09-24 23:58:59 +00:00
);
2023-03-14 23:26:31 +00:00
2021-11-01 21:32:32 +00:00
echo
2023-03-14 23:26:31 +00:00
dcPage :: breadcrumb ( $breadcrumb ) .
dcPage :: notices ();
if ( empty ( dcCore :: app () -> admin -> module ) && dcCore :: app () -> admin -> type != '' ) {
// modules list
echo '<form id="theme-form" method="post" action="' . dcCore :: app () -> adminurl -> get ( My :: id (), [ 'type' => 'plugin' ]) . '">' ;
$res = '' ;
$modules = dcCore :: app () -> admin -> translater -> getModules ( dcCore :: app () -> admin -> type );
ksort ( $modules );
foreach ( $modules as $module ) {
if ( dcCore :: app () -> admin -> translater -> get ( 'hide_default' ) && in_array ( $module -> id , My :: defaultDistribModules ( dcCore :: app () -> admin -> type ))) {
continue ;
2021-08-18 22:48:47 +00:00
}
2023-03-14 23:26:31 +00:00
if ( $module -> root_writable ) {
$res .= sprintf (
'<tr class="line"><td class="nowrap minimal"><a href="%s" title="%s">%s</a></td>' ,
dcCore :: app () -> adminurl -> get ( My :: id (), [ 'type' => $module -> type , 'module' => $module -> id ]),
html :: escapeHTML ( sprintf ( __ ( 'Translate module %s' ), __ ( $module -> name ))),
html :: escapeHTML ( $module -> id )
);
} else {
$res .= sprintf (
'<tr class="line offline"><td class="nowrap">%s</td>' ,
html :: escapeHTML ( $module -> id )
);
}
$codes = $module -> getLangs ();
foreach ( $codes as $code_id => $code_name ) {
if ( $module -> root_writable ) {
$codes [ $code_id ] = sprintf (
'<a class="wait maximal nowrap" title="%s" href="%s">%s (%s)</a>' ,
html :: escapeHTML ( sprintf ( __ ( 'Edit language %s of module %s' ), html :: escapeHTML ( $code_name ), __ ( $module -> name ))),
dcCore :: app () -> adminurl -> get ( My :: id (), [ 'type' => $module -> type , 'module' => $module -> id , 'lang' => $code_id ]),
html :: escapeHTML ( $code_name ),
$code_id
);
} else {
$codes [ $code_id ] = html :: escapeHTML ( $code_name ) . '(' . $code_id . ')' ;
}
}
$res .= sprintf (
'<td class="nowrap maximal">%s</td><td class="nowrap minimal">%s</td><td class="nowrap minimal count">%s</td></tr>' ,
implode ( ', ' , $codes ),
html :: escapeHTML ( __ ( $module -> name )),
$module -> version
);
}
if ( $res ) {
echo '
< div class = " table-outer " >
< table class = " clear " >
< caption > ' . sprintf(__(' Modules list of type " %s " '), dcCore::app()->admin->type) . ' </ caption >
< tr >
< th class = " nowrap " > ' . __(' Id ') . ' </ th >
< th class = " nowrap " > ' . __(' Languages ') . ' </ th >
< th class = " nowrap " > ' . __(' Name ') . ' </ th >
< th class = " nowrap " > ' . __(' Version ') . ' </ th >
</ tr > ' .
$res .
'</table></div>' ;
2021-08-18 22:48:47 +00:00
} else {
2023-03-14 23:26:31 +00:00
echo '<tr><td colspan="6">' . __ ( 'There is no editable modules' ) . '</td></tr>' ;
2021-08-18 22:48:47 +00:00
}
2023-03-14 23:26:31 +00:00
echo '</form>' ;
dcPage :: helpBlock ( 'translater.type' );
} elseif ( ! empty ( dcCore :: app () -> admin -> module ) && empty ( dcCore :: app () -> admin -> lang )) {
$codes = dcCore :: app () -> admin -> module -> getUsedLangs ();
$backups = dcCore :: app () -> admin -> module -> getBackups ();
$unused_codes = dcCore :: app () -> admin -> module -> getUnusedLangs ();
// module summary
echo '<h3>' . sprintf ( __ ( 'Module %s %s by %s' ), dcCore :: app () -> admin -> module -> name , dcCore :: app () -> admin -> module -> version , dcCore :: app () -> admin -> module -> author ) . ' </ h3 >
< ul class = " nice col " >
< li >< strong > ' . __(' Root ') . ' </ strong > ' . dcCore::app()->admin->module->root . ' </ li >
< li >< strong > ' . __(' Locales ') . ' </ strong > ' . dcCore::app()->admin->module->locales . ' </ li >
< li >< strong > ' . __(' Backups ') . ' </ strong > ' . dcCore::app()->admin->module->getBackupRoot() . ' </ li >
</ ul >
< p >& nbsp ; </ p > ' ;
// existing languages
if ( count ( $codes )) {
echo
'<div class="clear fieldset"><h3>' . __ ( 'Translations' ) . '</h3>' .
'<form id="module-translations-form" method="post" action="' . dcCore :: app () -> adminurl -> get ( My :: id ()) . '">' .
'<table class="clear maximal">' .
'<caption>' . __ ( 'Existing languages translations' ) . '</caption>' .
'<tr>' .
'<th class="nowrap" colspan="2">' . __ ( 'Language' ) . '</th>' .
'<th class="nowrap">' . __ ( 'Code' ) . '</th>' .
'<th class="nowrap">' . __ ( 'Backups' ) . '</th>' .
'<th class="nowrap">' . __ ( 'Last backup' ) . '</th>' .
'</tr>' ;
2021-08-18 22:48:47 +00:00
2023-03-14 23:26:31 +00:00
foreach ( $codes as $code_name => $code_id ) {
echo
'<tr class="line">' .
'<td class="minimal">' . form :: checkbox ([ 'codes[]' , 'existing_code_' . $code_id ], $code_id , '' , '' , '' , false ) . '</td>' .
'<td class="nowrap">' .
'<a href="' .
dcCore :: app () -> adminurl -> get ( My :: id (), [ 'type' => dcCore :: app () -> admin -> module -> type , 'module' => dcCore :: app () -> admin -> module -> id , 'lang' => $code_id ])
. '" title="' . sprintf ( __ ( 'Edit %s language' ), html :: escapeHTML ( $code_name )) . '">' . $code_name . '</a>' .
'</td>' .
'<td class="nowrap maximal"> ' . $code_id . '</td>' ;
if ( isset ( $backups [ $code_id ])) {
$time [ $code_id ] = 0 ;
foreach ( $backups [ $code_id ] as $file => $info ) {
$time [ $code_id ] = isset ( $time [ $code_id ]) && $time [ $code_id ] > $info [ 'time' ] ?
$time [ $code_id ] : $info [ 'time' ];
}
echo
'<td class="nowrap">' . count ( $backups [ $code_id ]) . '</td>' .
'<td class="nowrap"> ' .
dt :: str ( '%Y-%m-%d %H:%M' , ( int ) $time [ $code_id ], dcCore :: app () -> blog -> settings -> get ( 'system' ) -> get ( 'blog_timezone' )) .
'</td>' ;
} else {
echo '<td class="nowrap">' . __ ( 'no backups' ) . '</td><td class="maximal nowrap">-</td>' ;
}
echo '</tr>' ;
}
echo ' </ table >
< div class = " two-cols " >
< p class = " col checkboxes-helpers " ></ p >
< p class = " col right " > ' . __(' Selected languages action : ') . ' ' .
form :: combo ( 'action' , [
__ ( 'Backup languages' ) => 'module_create_backups' ,
__ ( 'Delete languages' ) => 'module_delete_codes' ,
__ ( 'Export languages' ) => 'module_export_pack' ,
]) . '
< input id = " do-action " type = " submit " value = " ' . __('ok') . ' " /></ p > ' .
dcCore :: app () -> formNonce () .
dcCore :: app () -> adminurl -> getHiddenFormFields (
My :: id (),
[ 'type' => dcCore :: app () -> admin -> module -> type , 'module' => dcCore :: app () -> admin -> module -> id ]
) . '
</ p ></ div ></ form >< p >& nbsp ; </ p ></ div > ' ;
}
2021-09-25 09:45:08 +00:00
2023-03-14 23:26:31 +00:00
// backups
if ( ! empty ( $codes ) || ! empty ( $backups )) {
// delete / retore backups
if ( ! empty ( $backups )) {
echo '<div class="fieldset"><h3>' . __ ( 'Backups' ) . '</h3>' .
'<form id="module-backups-form" method="post" action="' . dcCore :: app () -> adminurl -> get ( My :: id ()) . '">' .
'<table class="clear">' .
'<caption>' . __ ( 'Existing languages backups' ) . '</caption>' .
'<tr>' .
'<th class="nowrap" colspan="2">' . __ ( 'Language' ) . '</th>' .
'<th class="nowrap">' . __ ( 'Code' ) . '</th>' .
'<th class="nowrap">' . __ ( 'Date' ) . '</th>' .
'<th class="nowrap">' . __ ( 'File' ) . '</th>' .
'<th class="nowrap">' . __ ( 'Size' ) . '</th>' .
'</tr>' ;
$table_line = '<tr class="line">' .
'<td class="minimal">%s</td>' .
'<td class="nowrap"><label for="%s">%s</label></td>' .
'<td class="nowrap maximal">%s</td>' .
'<td class="nowrap count">%s</td>' .
'<td class="nowrap">%s</td>' .
'<td class="nowrap count">%s</td>' .
'</tr>' ;
$i = 0 ;
foreach ( $backups as $backup_codes ) {
foreach ( $backup_codes as $backup_file => $backup_code ) {
$i ++ ;
$form_id = 'form_file_' . $backup_code [ 'code' ] . $backup_code [ 'time' ];
echo sprintf (
$table_line ,
form :: checkbox ([ 'files[]' , $form_id ], $backup_file , '' , '' , '' , false ),
$form_id ,
$backup_code [ 'name' ],
$backup_code [ 'code' ],
dt :: str (
dcCore :: app () -> blog -> settings -> get ( 'system' ) -> get ( 'date_format' ) . ' ' . dcCore :: app () -> blog -> get ( 'settings' ) -> get ( 'system->time_format' ),
( int ) $backup_code [ 'time' ],
dcCore :: app () -> blog -> settings -> get ( 'system' ) -> get ( 'blog_timezone' )
),
$backup_code [ 'path' ][ 'basename' ],
files :: size ( $backup_code [ 'size' ])
);
}
}
echo '
</ table >
< div class = " two-cols " >
< p class = " col checkboxes-helpers " ></ p >
< p class = " col right " > ' . __(' Selected backups action : ') . ' ' .
form :: combo ( 'action' , [
__ ( 'Restore backups' ) => 'module_restore_backup' ,
__ ( 'Delete backups' ) => 'module_delete_backup' ,
]) . '
< input id = " do-action " type = " submit " value = " ' . __('ok') . ' " /></ p > ' .
dcCore :: app () -> formNonce () .
dcCore :: app () -> adminurl -> getHiddenFormFields (
My :: id (),
[ 'type' => dcCore :: app () -> admin -> module -> type , 'module' => dcCore :: app () -> admin -> module -> id ]
) . '
</ p ></ div ></ form >< p >& nbsp ; </ p ></ div > ' ;
}
}
2021-09-25 09:45:08 +00:00
2023-03-14 23:26:31 +00:00
echo '<div class="two-cols">' ;
// add language
if ( ! empty ( $unused_codes )) {
echo '<div class="col fieldset"><h3>' . __ ( 'Add language' ) . ' </ h3 >
< form id = " muodule-code-create-form " method = " post " action = " ' . dcCore::app()->adminurl->get(My::id()) . ' " >
< p class = " field " >< label for = " code " > ' . __(' Select language : ') . ' </ label > ' .
form :: combo ([ 'code' ], array_merge ([ '-' => '-' ], $unused_codes ), dcCore :: app () -> auth -> getInfo ( 'user_lang' )) . '</p>' ;
if ( empty ( $codes )) {
echo '<p>' . form :: hidden ([ 'from' ], '' ) . '</p>' ;
} else {
echo
'<p class="field"><label for="from">' . __ ( 'Copy from language:' ) . '</label>' .
form :: combo ([ 'from' ], array_merge ([ '-' => '' ], $codes )) . ' (' . __ ( 'optionnal' ) . ')</p>' ;
2021-09-24 23:58:59 +00:00
}
2023-03-14 23:26:31 +00:00
echo '
< p >< input type = " submit " name = " save " value = " ' . __('Create') . ' " /> ' .
dcCore :: app () -> formNonce () .
dcCore :: app () -> adminurl -> getHiddenFormFields (
My :: id (),
[ 'type' => dcCore :: app () -> admin -> module -> type , 'module' => dcCore :: app () -> admin -> module -> id , 'action' => 'module_add_code' ]
) . '
</ p ></ form >< p >& nbsp ; </ p ></ div > ' ;
2021-08-18 22:48:47 +00:00
}
2023-03-14 23:26:31 +00:00
// Import
echo '<div class="col fieldset"><h3>' . __ ( 'Import' ) . ' </ h3 >
< form id = " module-pack-import-form " method = " post " action = " ' . dcCore::app()->adminurl->get(My::id()) . ' " enctype = " multipart/form-data " >
< p >< label for = " packfile " > ' . __(' Select languages package to import : ') . ' < label > ' .
' < input id = " packfile " type = " file " name = " packfile " /></ p >
< p >
< input type = " submit " name = " save " value = " ' . __('Import') . ' " /> ' .
2022-11-13 17:40:31 +00:00
dcCore :: app () -> formNonce () .
dcCore :: app () -> adminurl -> getHiddenFormFields (
2023-03-14 23:26:31 +00:00
My :: id (),
[ 'type' => dcCore :: app () -> admin -> module -> type , 'module' => dcCore :: app () -> admin -> module -> id , 'action' => 'module_import_pack' ]
2021-09-24 23:58:59 +00:00
) . '
2023-03-14 23:26:31 +00:00
</ p ></ form >< p >& nbsp ; </ p ></ div > ' ;
2021-08-18 22:48:47 +00:00
2023-03-14 23:26:31 +00:00
echo '</div>' ;
2021-09-25 09:45:08 +00:00
2023-03-14 23:26:31 +00:00
dcPage :: helpBlock ( 'translater.module' );
} elseif ( ! empty ( dcCore :: app () -> admin -> lang )) {
$lines = dcCore :: app () -> admin -> lang -> getMessages ();
$allowed_l10n_groups = [];
2021-09-24 23:58:59 +00:00
2023-03-14 23:26:31 +00:00
echo
'<div id="lang-form">' .
'<form id="lang-edit-form" method="post" action="' . dcCore :: app () -> adminurl -> get ( My :: id ()) . '">' .
'<table class="table-outer">' .
'<caption>' . sprintf ( __ ( 'List of %s localized strings' ), count ( $lines )) . '</caption>' .
'<tr>' .
'<th colspan="2">' . __ ( 'Group' ) . '</th>' .
'<th>' . __ ( 'String' ) . '</th>' .
'<th>' . __ ( 'Translation' ) . '</th>' .
'<th>' . __ ( 'Existing' ) . '</th>' .
'<th>' . __ ( 'File' ) . '</th>' .
'</tr>' ;
2021-08-18 22:48:47 +00:00
2023-03-14 23:26:31 +00:00
$table_line = '<tr class="line%s">' .
'<td class="nowrap minimal">%s</td>' .
'<td class="nowrap minimal">%s</td>' .
'<td>%s</td>' .
'<td class="nowrap translatertarget">%s</td>' .
'<td class="translatermsgstr">%s</td>' .
'<td class="nowrap translatermsgfile">%s</td>' .
'</tr>' ;
$table_ul = '<div class="subtranslater"><strong>%s</strong><div class="strlist">%s</div></div><br />' ;
$table_li = '<i>%s</i><br />' ;
2021-08-18 22:48:47 +00:00
2023-03-14 23:26:31 +00:00
$i = 1 ;
foreach ( $lines as $msgid => $rs ) {
$in_dc = ( $rs [ 'in_dc' ] && dcCore :: app () -> admin -> translater -> get ( 'parse_nodc' ));
$t_msgstr = $t_files = $strin = [];
2021-08-18 22:48:47 +00:00
2021-11-01 21:32:32 +00:00
foreach ( $rs [ 'o_msgstrs' ] as $o_msgstr ) {
2023-03-14 23:26:31 +00:00
if ( ! isset ( $strin [ $o_msgstr [ 'msgstr' ][ 0 ]])) {
$strin [ $o_msgstr [ 'msgstr' ][ 0 ]] = [];
2021-09-24 23:58:59 +00:00
}
2023-03-14 23:26:31 +00:00
$strin [ $o_msgstr [ 'msgstr' ][ 0 ]][] = [ 'module' => $o_msgstr [ 'module' ], 'file' => $o_msgstr [ 'file' ]];
2021-09-24 23:58:59 +00:00
}
2021-11-01 21:32:32 +00:00
foreach ( $strin as $k => $v ) {
2021-09-24 23:58:59 +00:00
$res = [];
2021-11-01 21:32:32 +00:00
foreach ( $v as $str ) {
2021-09-24 23:58:59 +00:00
$res [] = sprintf ( $table_li , html :: escapeHTML ( $str [ 'module' ] . ':' . $str [ 'file' ]));
}
$t_msgstr [] = sprintf ( $table_ul , html :: escapeHTML ( $k ), implode ( '' , $res ));
}
2021-08-18 22:48:47 +00:00
2023-03-14 23:26:31 +00:00
if ( ! empty ( $rs [ 'files' ][ 0 ])) {
if ( count ( $rs [ 'files' ]) == 1 ) {
$t_files [] = $rs [ 'files' ][ 0 ][ 0 ] . ':' . $rs [ 'files' ][ 0 ][ 1 ];
} else {
$res = [];
foreach ( $rs [ 'files' ] as $location ) {
$res [] = sprintf ( $table_li , implode ( ' : ' , $location ));
}
$t_files [] = sprintf ( $table_ul , sprintf ( __ ( '%s occurrences' ), count ( $rs [ 'files' ])), implode ( '' , $res ));
;
}
}
2021-11-01 21:32:32 +00:00
echo sprintf (
$table_line ,
$in_dc ? ' offline' : ' translaterline' ,
2023-03-14 23:26:31 +00:00
form :: checkbox ([ 'entries[' . $i . '][check]' ], 1 ),
form :: combo ([ 'entries[' . $i . '][group]' ], My :: l10nGroupsCombo (), $rs [ 'group' ], '' , '' , $in_dc ),
html :: escapeHTML ( $msgid ),
form :: hidden ([ 'entries[' . $i . '][msgid]' ], html :: escapeHTML ( $msgid )) .
form :: field ([ 'entries[' . $i . '][msgstr][0]' ], 48 , 255 , html :: escapeHTML ( $rs [ 'msgstr' ][ 0 ]), '' , '' , $in_dc ),
2021-09-24 23:58:59 +00:00
implode ( '' , $t_msgstr ),
2023-03-14 23:26:31 +00:00
implode ( '' , $t_files )
2021-09-24 23:58:59 +00:00
);
2023-03-14 23:26:31 +00:00
if ( ! empty ( $rs [ 'plural' ])) {
$t_msgstr = $strin = [];
foreach ( dcCore :: app () -> admin -> lang -> plural as $j => $plural ) {
foreach ( $rs [ 'o_msgstrs' ] as $o_msgstr ) {
if ( isset ( $o_msgstr [ 'msgstr' ][ $j + 1 ])) {
if ( ! isset ( $strin [ $o_msgstr [ 'msgstr' ][ $j + 1 ]])) {
$strin [ $o_msgstr [ 'msgstr' ][ $j + 1 ]] = [];
}
$strin [ $o_msgstr [ 'msgstr' ][ $j + 1 ]][] = [ 'module' => $o_msgstr [ 'module' ], 'file' => $o_msgstr [ 'file' ]];
}
}
foreach ( $strin as $k => $v ) {
$res = [];
foreach ( $v as $str ) {
$res [] = sprintf ( $table_li , html :: escapeHTML ( $str [ 'module' ] . ':' . $str [ 'file' ]));
}
$t_msgstr [] = sprintf ( $table_ul , html :: escapeHTML ( $k ), implode ( '' , $res ));
}
echo sprintf (
$table_line ,
$in_dc ? ' offline' : ' translaterline' ,
'+' ,
sprintf ( __ ( 'Plural "%s"' ), $plural ),
sprintf ( __ ( 'Plural form of "%s"' ), $rs [ 'plural' ]),
form :: hidden ([ 'entries[' . $i . '][msgid_plural]' ], html :: escapeHTML ( $rs [ 'plural' ])) .
form :: field ([ 'entries[' . $i . '][msgstr][' . ( $j + 1 ) . ']' ], 48 , 255 , html :: escapeHTML ( $rs [ 'msgstr' ][ $j + 1 ] ? ? '' ), '' , '' , $in_dc ),
implode ( '' , $t_msgstr ),
''
);
}
}
$i ++ ;
2021-08-18 22:48:47 +00:00
}
2023-03-14 23:26:31 +00:00
echo sprintf (
$table_line ,
' offline' ,
form :: checkbox ([ 'entries[' . $i . '][check]' ], 1 ),
form :: combo ([ 'entries[' . $i . '][group]' ], My :: l10nGroupsCombo (), 'main' ),
form :: field ([ 'entries[' . $i . '][msgid]' ], 48 , 255 , '' ),
form :: field ([ 'entries[' . $i . '][msgstr][0]' ], 48 , 255 , '' ),
'' ,
''
);
echo
'</table>' .
'<div class="two-cols">' .
'<div class="col left">' .
'<p class="checkboxes-helpers"></p>' .
'<p><label for="update_group">' .
form :: checkbox ( 'update_group' , 1 ) .
__ ( 'Change the group of the selected translations to:' ) . ' ' .
form :: combo ( 'multigroup' , My :: l10nGroupsCombo ()) . '</label></p>' .
'</div>' .
'<p class="col right">' .
'<input id="do-action" type="submit" value="' . __ ( 'Save' ) . ' (s)" accesskey="s" /></p>' .
dcCore :: app () -> formNonce () .
form :: hidden ([ 'code' ], dcCore :: app () -> admin -> lang -> code ) .
dcCore :: app () -> adminurl -> getHiddenFormFields (
My :: id (),
[ 'type' => dcCore :: app () -> admin -> module -> type , 'module' => dcCore :: app () -> admin -> module -> id , 'lang' => dcCore :: app () -> admin -> lang -> code , 'action' => 'module_update_code' ]
) .
'</p></div>' .
'</form>' .
'<p> </p>' .
'</div>' ;
dcPage :: helpBlock ( 'translater.lang' );
} else {
$line = '<li><a href="%s"%s>%s</a></li>' ;
echo '<h4><i>' . __ ( 'Translate your Dotclear plugins and themes' ) . '</i></h4>' .
sprintf (
'<h3><ul class="nice">%s</ul></h3>' ,
sprintf (
$line ,
dcCore :: app () -> adminurl -> get ( My :: id (), [ 'type' => 'plugin' ]),
dcCore :: app () -> admin -> type == 'plugin' ? ' class="active"' : '' ,
__ ( 'Translate plugins' )
) .
sprintf (
$line ,
dcCore :: app () -> adminurl -> get ( My :: id (), [ 'type' => 'theme' ]),
dcCore :: app () -> admin -> type == 'theme' ? ' class="active"' : '' ,
__ ( 'Translate themes' )
)
);
dcPage :: helpBlock ( 'translater.index' );
2021-08-18 22:48:47 +00:00
}
2023-03-14 23:26:31 +00:00
dcPage :: closeModule ();
2021-09-24 23:58:59 +00:00
}
2021-08-18 19:42:30 +00:00
2023-03-14 23:26:31 +00:00
private static function redirect ( string $msg , ? string $lang = null ) : void
{
$redir = [
'type' => dcCore :: app () -> admin -> type ,
'module' => dcCore :: app () -> admin -> module -> id ,
];
if ( $lang ) {
$redir [ 'lang' ] = $lang ;
}
2021-08-18 19:42:30 +00:00
2023-03-14 23:26:31 +00:00
dcPage :: addSuccessNotice ( $msg );
dcCore :: app () -> adminurl -> redirect ( My :: id (), $redir );
}
}