mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
['template'] as user_template for displaying pictures in the template
git-svn-id: http://piwigo.org/svn/trunk@29 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -23,6 +23,7 @@ $handle = $vtp->Open( '../template/'.$user['template'].'/admin/admin.vtp' );
|
||||
// language
|
||||
$tpl = array( 'menu_title', 'title_default', 'charset' );
|
||||
templatize_array( $tpl, 'lang', $handle );
|
||||
$vtp->setGlobalVar( $handle, 'user_template', $user['template'] );
|
||||
//--------------------------------------- validating page and creation of title
|
||||
$page_valide = false;
|
||||
$title = '';
|
||||
|
||||
@@ -25,6 +25,7 @@ $vtp->setGlobalVar( $sub, 'cat_down', $lang['cat_down'] );
|
||||
$vtp->setGlobalVar( $sub, 'cat_image_info', $lang['cat_image_info'] );
|
||||
$vtp->setGlobalVar( $sub, 'cat_permission', $lang['cat_permission'] );
|
||||
$vtp->setGlobalVar( $sub, 'cat_update', $lang['cat_update'] );
|
||||
$vtp->setGlobalVar( $sub, 'user_template', $user['template'] );
|
||||
//--------------------------------------------------------------- rank updates
|
||||
if ( isset( $_GET['up'] ) && is_numeric( $_GET['up'] ) )
|
||||
{
|
||||
|
||||
@@ -21,6 +21,7 @@ $error = array();
|
||||
$tpl = array( 'permuser_authorized','permuser_forbidden','menu_groups',
|
||||
'submit','menu_users','permuser_parent_forbidden' );
|
||||
templatize_array( $tpl, 'lang', $sub );
|
||||
$vtp->setGlobalVar( $sub, 'user_template', $user['template'] );
|
||||
//-------------------------------------------------------------- category infos
|
||||
if ( isset( $_GET['cat_id'] ) )
|
||||
{
|
||||
|
||||
@@ -139,6 +139,7 @@ if ( isset( $_POST['submit'] ) )
|
||||
$sub = $vtp->Open( '../template/'.$user['template'].'/admin/comments.vtp' );
|
||||
$tpl = array( 'stats_last_days','delete','close','submit','open' );
|
||||
templatize_array( $tpl, 'lang', $sub );
|
||||
$vtp->setGlobalVar( $sub, 'user_template', $user['template'] );
|
||||
//--------------------------------------------------- number of days to display
|
||||
if ( isset( $_GET['last_days'] ) ) define( MAX_DAYS, $_GET['last_days'] );
|
||||
else define( MAX_DAYS, 0 );
|
||||
|
||||
@@ -20,6 +20,7 @@ $sub = $vtp->Open( '../template/'.$user['template'].'/admin/group_list.vtp' );
|
||||
$tpl = array( 'group_add','add','listuser_permission','delete',
|
||||
'group_confirm','yes','no','group_list_title' );
|
||||
templatize_array( $tpl, 'lang', $sub );
|
||||
$vtp->setGlobalVar( $sub, 'user_template', $user['template'] );
|
||||
//-------------------------------------------------------------- delete a group
|
||||
$error = array();
|
||||
if ( isset ( $_GET['delete'] ) and is_numeric( $_GET['delete'] ) )
|
||||
|
||||
@@ -22,6 +22,7 @@ $tpl = array( 'permuser_authorized','permuser_forbidden','submit',
|
||||
'permuser_parent_forbidden','permuser_info_message',
|
||||
'adduser_info_back' );
|
||||
templatize_array( $tpl, 'lang', $sub );
|
||||
$vtp->setGlobalVar( $sub, 'user_template', $user['template'] );
|
||||
//--------------------------------------------------------------------- updates
|
||||
if ( isset( $_POST['submit'] ) )
|
||||
{
|
||||
|
||||
@@ -38,6 +38,7 @@ $tpl = array( 'stats_last_days','date','login',
|
||||
'stats_visitors','stats_empty', 'stats_pages_seen_graph_title',
|
||||
'stats_visitors_graph_title');
|
||||
templatize_array( $tpl, 'lang', $sub );
|
||||
$vtp->setGlobalVar( $sub, 'user_template', $user['template'] );
|
||||
//--------------------------------------------------- number of days to display
|
||||
if ( isset( $_GET['last_days'] ) )
|
||||
{
|
||||
|
||||
@@ -267,6 +267,7 @@ $tpl = array(
|
||||
'tn_results_gen_time','tn_stats','tn_stats_nb','tn_stats_total',
|
||||
'tn_stats_max','tn_stats_min','tn_stats_mean' );
|
||||
templatize_array( $tpl, 'lang', $sub );
|
||||
$vtp->setGlobalVar( $sub, 'user_template', $user['template'] );
|
||||
//----------------------------------------------------- miniaturization results
|
||||
if ( isset( $_GET['dir'] ) )
|
||||
{
|
||||
|
||||
@@ -19,7 +19,7 @@ include_once( './include/isadmin.inc.php' );
|
||||
//------------------------------------------------------------------- functions
|
||||
function insert_local_category( $cat_id )
|
||||
{
|
||||
global $conf, $page;
|
||||
global $conf, $page, $user;
|
||||
|
||||
$site_id = 1;
|
||||
|
||||
@@ -31,7 +31,8 @@ function insert_local_category( $cat_id )
|
||||
$result = get_cat_info( $cat_id );
|
||||
$cat_directory.= '/'.$result['local_dir'];
|
||||
// 1. display the category name to update
|
||||
$output = '<img src="./images/puce.gif" alt=">" />';
|
||||
$src = '../template/'.$user['template'].'/admin/images/puce.gif';
|
||||
$output = '<img src="'.$src.'" alt=">" />';
|
||||
$output.= '<span style="font-weight:bold;">'.$result['name'][0].'</span>';
|
||||
$output.= ' [ '.$result['last_dir'].' ]';
|
||||
$output.= '<div class="retrait">';
|
||||
@@ -370,7 +371,7 @@ function remote_images()
|
||||
// the xml_file.
|
||||
function insert_remote_category( $xml_dir, $site_id, $id_uppercat, $level )
|
||||
{
|
||||
global $conf;
|
||||
global $conf,$user;
|
||||
|
||||
$output = '';
|
||||
$categories = array();
|
||||
@@ -382,7 +383,8 @@ function insert_remote_category( $xml_dir, $site_id, $id_uppercat, $level )
|
||||
$name = getAttribute( $list_dirs[$i], 'name' );
|
||||
$categories[$i] = $name;
|
||||
|
||||
$output.= '<img src="./images/puce.gif">';
|
||||
$src = '../template/'.$user['template'].'/admin/images/puce.gif';
|
||||
$output.= '<img src="'.$src.'" alt=">" />';
|
||||
$output.= '<span style="font-weight:bold;">'.$name.'</span>';
|
||||
$output.= '<div class="retrait">';
|
||||
|
||||
@@ -552,6 +554,7 @@ $tpl = array( 'update_default_title', 'update_only_cat', 'update_all',
|
||||
'update_research_conclusion', 'update_deletion_conclusion',
|
||||
'remote_site', 'update_part_research' );
|
||||
templatize_array( $tpl, 'lang', $sub );
|
||||
$vtp->setGlobalVar( $sub, 'user_template', $user['template'] );
|
||||
//-------------------------------------------- introduction : choices of update
|
||||
// Display choice if "update" var is not specified
|
||||
check_cat_id( $_GET['update'] );
|
||||
|
||||
@@ -22,6 +22,7 @@ $tpl = array( 'permuser_authorized','permuser_forbidden','submit',
|
||||
'permuser_parent_forbidden','permuser_info_message',
|
||||
'adduser_info_back' );
|
||||
templatize_array( $tpl, 'lang', $sub );
|
||||
$vtp->setGlobalVar( $sub, 'user_template', $user['template'] );
|
||||
//--------------------------------------------------------------------- updates
|
||||
if ( isset( $_POST['submit'] ) )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user