mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
A draft version: With 3 advices in English and only one in French. Maybe we can have more than 50 advices from a starting point. This plugin is mainly for beginners but not only. git-svn-id: http://piwigo.org/svn/trunk@1694 68402e56-0260-453c-a942-63ccdbb3a9ee
57 lines
1.5 KiB
PHP
57 lines
1.5 KiB
PHP
<?php /*
|
|
Plugin Name: Admin Advices !
|
|
Author: PhpWebGallery team
|
|
Description: Give you an advice on the administration page.
|
|
*/
|
|
|
|
add_event_handler('loc_begin_page_tail', 'set_admin_advice' );
|
|
|
|
|
|
function set_admin_advice()
|
|
{
|
|
global $page, $user, $template, $conf;
|
|
|
|
// This Plugin works only on the Admin page
|
|
if ( isset($page['body_id']) and $page['body_id']=='theAdminPage'
|
|
and isset($page['page']) and $page['page'] == 'intro' )
|
|
{
|
|
// Setup Advice Language (Maybe there is already a variable)
|
|
$advlang = ( isset($user['language']) ) ?
|
|
$user['language'] : $conf['default_language']; // en_UK.iso-8859-1
|
|
|
|
$adv = array();
|
|
|
|
// Include language advices
|
|
include_once( PHPWG_ROOT_PATH
|
|
. "plugins/admin_advices/$advlang/lang.adv.php" );
|
|
|
|
// If there is an advice
|
|
if ( $cond )
|
|
{
|
|
// $template->set_filenames( array( 'advice' => 'admin_advices.tpl' ));
|
|
$template->set_filenames(array(
|
|
'admin_advice' =>
|
|
PHPWG_ROOT_PATH.'/plugins/admin_advices/admin_advices.tpl')
|
|
);
|
|
$advice_text = array_shift($adv);
|
|
$template->assign_vars(
|
|
array(
|
|
'ADVICE_ABOUT' => '$conf[' . "'$confk'] ",
|
|
'ADVICE_TEXT' => $advice_text,
|
|
)
|
|
);
|
|
foreach ($adv as $advice)
|
|
{
|
|
$template->assign_block_vars(
|
|
'More',
|
|
array(
|
|
'ADVICE' => $advice
|
|
)
|
|
);
|
|
}
|
|
$template->parse('admin_advice');
|
|
}
|
|
}
|
|
}
|
|
?>
|