mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-07 17:23:04 +02:00
Change tabsheet place for plugins, themes and languages.
Plugins, themes and languages use same update page. git-svn-id: http://piwigo.org/svn/trunk@10594 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -2072,9 +2072,7 @@ function get_active_menu($menu_page)
|
||||
case 'notification_by_mail':
|
||||
return 2;
|
||||
|
||||
case 'plugins_list':
|
||||
case 'plugins_update':
|
||||
case 'plugins_new':
|
||||
case 'plugins':
|
||||
case 'plugin':
|
||||
return 3;
|
||||
|
||||
@@ -2091,11 +2089,9 @@ function get_active_menu($menu_page)
|
||||
case 'configuration':
|
||||
case 'extend_for_templates':
|
||||
case 'menubar':
|
||||
case 'themes_new':
|
||||
case 'themes_installed':
|
||||
case 'themes':
|
||||
case 'theme':
|
||||
case 'languages_installed':
|
||||
case 'languages_new':
|
||||
case 'languages':
|
||||
return 5;
|
||||
}
|
||||
return 0;
|
||||
|
||||
@@ -35,24 +35,6 @@ class languages
|
||||
$this->get_fs_languages($target_charset);
|
||||
}
|
||||
|
||||
/**
|
||||
* Set tabsheet for languages pages.
|
||||
* @param string selected page.
|
||||
*/
|
||||
function set_tabsheet($selected)
|
||||
{
|
||||
include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php');
|
||||
|
||||
$link = get_root_url().'admin.php?page=';
|
||||
|
||||
$tabsheet = new tabsheet();
|
||||
$tabsheet->add('languages_installed', l10n('Installed Languages'), $link.'languages_installed');
|
||||
$tabsheet->add('languages_update', l10n('Check for updates'), $link.'languages_update');
|
||||
$tabsheet->add('languages_new', l10n('Add New Language'), $link.'languages_new');
|
||||
$tabsheet->select($selected);
|
||||
$tabsheet->assign();
|
||||
}
|
||||
|
||||
/**
|
||||
* Perform requested actions
|
||||
* @param string - action
|
||||
|
||||
@@ -41,24 +41,6 @@ class plugins
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Set tabsheet for plugins pages.
|
||||
* @param string selected page.
|
||||
*/
|
||||
function set_tabsheet($selected)
|
||||
{
|
||||
include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php');
|
||||
|
||||
$link = get_root_url().'admin.php?page=';
|
||||
|
||||
$tabsheet = new tabsheet();
|
||||
$tabsheet->add('plugins_list', l10n('Plugin list'), $link.'plugins_list');
|
||||
$tabsheet->add('plugins_update', l10n('Check for updates'), $link.'plugins_update');
|
||||
$tabsheet->add('plugins_new', l10n('Other plugins'), $link.'plugins_new');
|
||||
$tabsheet->select($selected);
|
||||
$tabsheet->assign();
|
||||
}
|
||||
|
||||
/**
|
||||
* Perform requested actions
|
||||
* @param string - action
|
||||
|
||||
@@ -40,24 +40,6 @@ class themes
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Set tabsheet for themes pages.
|
||||
* @param string selected page.
|
||||
*/
|
||||
function set_tabsheet($selected)
|
||||
{
|
||||
include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php');
|
||||
|
||||
$link = get_root_url().'admin.php?page=';
|
||||
|
||||
$tabsheet = new tabsheet();
|
||||
$tabsheet->add('themes_installed', l10n('Installed Themes'), $link.'themes_installed');
|
||||
$tabsheet->add('themes_update', l10n('Check for updates'), $link.'themes_update');
|
||||
$tabsheet->add('themes_new', l10n('Add New Theme'), $link.'themes_new');
|
||||
$tabsheet->select($selected);
|
||||
$tabsheet->assign();
|
||||
}
|
||||
|
||||
/**
|
||||
* Perform requested actions
|
||||
* @param string - action
|
||||
|
||||
@@ -15,9 +15,14 @@ class updates
|
||||
var $merged_extensions = array();
|
||||
var $merged_extension_url = 'http://piwigo.org/download/merged_extensions.txt';
|
||||
|
||||
function __construct()
|
||||
function __construct($page='updates')
|
||||
{
|
||||
$this->types = array('plugins', 'themes', 'languages');
|
||||
|
||||
if (in_array($page, $this->types))
|
||||
{
|
||||
$this->types = array($page);
|
||||
}
|
||||
$this->default_themes = array('clear', 'dark', 'Sylvia');
|
||||
$this->default_plugins = array('admin_multi_view', 'c13y_upgrade', 'language_switch', 'LocalFilesEditor');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user