2006-10-26 03:35:20 +00:00
|
|
|
<?php
|
|
|
|
// +-----------------------------------------------------------------------+
|
2011-01-18 00:02:52 +00:00
|
|
|
// | Piwigo - a PHP based photo gallery |
|
2008-04-04 22:57:23 +00:00
|
|
|
// +-----------------------------------------------------------------------+
|
2012-01-17 22:48:36 +00:00
|
|
|
// | Copyright(C) 2008-2012 Piwigo Team http://piwigo.org |
|
2008-04-04 22:57:23 +00:00
|
|
|
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
|
|
|
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | This program is free software; you can redistribute it and/or modify |
|
|
|
|
// | it under the terms of the GNU General Public License as published by |
|
|
|
|
// | the Free Software Foundation |
|
|
|
|
// | |
|
2006-10-26 03:35:20 +00:00
|
|
|
// | This program is distributed in the hope that it will be useful, but |
|
|
|
|
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
|
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
|
|
|
// | General Public License for more details. |
|
|
|
|
// | |
|
|
|
|
// | You should have received a copy of the GNU General Public License |
|
|
|
|
// | along with this program; if not, write to the Free Software |
|
|
|
|
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
|
|
|
// | USA. |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
2007-01-09 11:38:54 +00:00
|
|
|
/**
|
|
|
|
* Retrieves an url for a plugin page.
|
2007-01-18 02:09:31 +00:00
|
|
|
* @param string file - php script full name
|
2007-01-09 11:38:54 +00:00
|
|
|
*/
|
2007-01-18 02:09:31 +00:00
|
|
|
function get_admin_plugin_menu_link($file)
|
2006-10-27 00:25:02 +00:00
|
|
|
{
|
2007-01-18 02:09:31 +00:00
|
|
|
global $page;
|
|
|
|
$real_file = realpath($file);
|
|
|
|
$url = get_root_url().'admin.php?page=plugin';
|
|
|
|
if (false!==$real_file)
|
|
|
|
{
|
2007-10-12 03:27:34 +00:00
|
|
|
$real_plugin_path = rtrim(realpath(PHPWG_PLUGINS_PATH), '\\/');
|
2007-01-18 02:09:31 +00:00
|
|
|
$file = substr($real_file, strlen($real_plugin_path)+1);
|
|
|
|
$file = str_replace('\\', '/', $file);//Windows
|
|
|
|
$url .= '&section='.urlencode($file);
|
|
|
|
}
|
|
|
|
else if (isset($page['errors']))
|
|
|
|
{
|
|
|
|
array_push($page['errors'], 'PLUGIN ERROR: "'.$file.'" is not a valid file');
|
|
|
|
}
|
2007-01-09 11:38:54 +00:00
|
|
|
return $url;
|
2006-10-27 00:25:02 +00:00
|
|
|
}
|
2006-10-26 03:35:20 +00:00
|
|
|
?>
|