[9796] | 1 | <?php |
---|
| 2 | /* |
---|
| 3 | Plugin Name: Delete Hit/Rate |
---|
| 4 | Version: auto |
---|
[31437] | 5 | Description: delete hit/Rate |
---|
[9796] | 6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=520 |
---|
| 7 | Author: ddtddt |
---|
[31436] | 8 | Author URI: http://temmii.com/piwigo/ |
---|
[9796] | 9 | */ |
---|
[31436] | 10 | // +-----------------------------------------------------------------------+ |
---|
| 11 | // | Delete Hit/Rate plugin for piwigo | |
---|
| 12 | // +-----------------------------------------------------------------------+ |
---|
| 13 | // | Copyright(C) 2011-2016 ddtddt http://temmii.com/piwigo/ | |
---|
| 14 | // +-----------------------------------------------------------------------+ |
---|
| 15 | // | This program is free software; you can redistribute it and/or modify | |
---|
| 16 | // | it under the terms of the GNU General Public License as published by | |
---|
| 17 | // | the Free Software Foundation | |
---|
| 18 | // | | |
---|
| 19 | // | This program is distributed in the hope that it will be useful, but | |
---|
| 20 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
| 21 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
| 22 | // | General Public License for more details. | |
---|
| 23 | // | | |
---|
| 24 | // | You should have received a copy of the GNU General Public License | |
---|
| 25 | // | along with this program; if not, write to the Free Software | |
---|
| 26 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
| 27 | // | USA. | |
---|
| 28 | // +-----------------------------------------------------------------------+ |
---|
[9796] | 29 | |
---|
| 30 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
| 31 | |
---|
| 32 | // Plugin for admin |
---|
| 33 | if (script_basename() == 'admin') |
---|
| 34 | { |
---|
| 35 | include_once(dirname(__FILE__).'/initadmin.php'); |
---|
| 36 | } |
---|
| 37 | |
---|
| 38 | ?> |
---|