Changeset 32402 for extensions/block_search
- Timestamp:
- Jan 18, 2021, 6:49:10 PM (4 years ago)
- Location:
- extensions/block_search
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/block_search/blocksearch/index.php
r32166 r32402 1 1 <?php 2 // +-----------------------------------------------------------------------+3 // | This file is part of Piwigo. |4 // | |5 // | For copyright and license information, please view the COPYING.txt |6 // | file that was distributed with this source code. |7 // +-----------------------------------------------------------------------+8 9 2 // Recursive call 10 3 $url = '../'; -
extensions/block_search/blocksearch/main.inc.php
r32166 r32402 1 1 <?php 2 2 // +-----------------------------------------------------------------------+ 3 // |Block search for Piwigo by TEMMII | 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2020 - 2021 ddtddt http://temmii.com/piwigo/ | 6 // +-----------------------------------------------------------------------+ 7 // | This program is free software; you can redistribute it and/or modify | 8 // | it under the terms of the GNU General Public License as published by | 9 // | the Free Software Foundation | 10 // | | 11 // | This program is distributed in the hope that it will be useful, but | 12 // | WITHOUT ANY WARRANTY; without even the implied warranty of | 13 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 14 // | General Public License for more details. | 15 // | | 16 // | You should have received a copy of the GNU General Public License | 17 // | along with this program; if not, write to the Free Software | 18 // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | 19 // | USA. | 20 // +-----------------------------------------------------------------------+ 3 21 if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); 4 22 5 23 $block['TEMPLATE'] = realpath(BSEARCH_PATH.'/blocksearch/stuffs_search.tpl'); 6 24 7 8 25 ?> -
extensions/block_search/index.php
r32166 r32402 1 1 <?php 2 // +-----------------------------------------------------------------------+3 // | This file is part of Piwigo. |4 // | |5 // | For copyright and license information, please view the COPYING.txt |6 // | file that was distributed with this source code. |7 // +-----------------------------------------------------------------------+8 9 2 // Recursive call 10 3 $url = '../'; -
extensions/block_search/language/en_UK/index.php
r32166 r32402 1 1 <?php 2 // +-----------------------------------------------------------------------+3 // | This file is part of Piwigo. |4 // | |5 // | For copyright and license information, please view the COPYING.txt |6 // | file that was distributed with this source code. |7 // +-----------------------------------------------------------------------+8 9 2 // Recursive call 10 3 $url = '../'; -
extensions/block_search/language/en_UK/plugin.lang.php
r32322 r32402 3 3 // |Block search for Piwigo by TEMMII | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2020 ddtddthttp://temmii.com/piwigo/ |5 // | Copyright(C) 2020 - 2021 ddtddt http://temmii.com/piwigo/ | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | This program is free software; you can redistribute it and/or modify | -
extensions/block_search/language/fr_FR/index.php
r32166 r32402 1 1 <?php 2 // +-----------------------------------------------------------------------+3 // | This file is part of Piwigo. |4 // | |5 // | For copyright and license information, please view the COPYING.txt |6 // | file that was distributed with this source code. |7 // +-----------------------------------------------------------------------+8 9 2 // Recursive call 10 3 $url = '../'; -
extensions/block_search/language/index.php
r32166 r32402 1 1 <?php 2 // +-----------------------------------------------------------------------+3 // | This file is part of Piwigo. |4 // | |5 // | For copyright and license information, please view the COPYING.txt |6 // | file that was distributed with this source code. |7 // +-----------------------------------------------------------------------+8 9 2 // Recursive call 10 3 $url = '../'; -
extensions/block_search/main.inc.php
r32166 r32402 12 12 // |Block search for Piwigo by TEMMII | 13 13 // +-----------------------------------------------------------------------+ 14 // | Copyright(C) 2020 ddtddthttp://temmii.com/piwigo/ |14 // | Copyright(C) 2020 - 2021 ddtddt http://temmii.com/piwigo/ | 15 15 // +-----------------------------------------------------------------------+ 16 16 // | This program is free software; you can redistribute it and/or modify | … … 39 39 40 40 global $pwg_loaded_plugins; 41 41 var_dump ($pwg_loaded_plugins); 42 42 if (isset($pwg_loaded_plugins['PWG_Stuffs'])){ 43 43 … … 58 58 } 59 59 } 60 61 62 63 64 65 66 67 68 69
Note: See TracChangeset
for help on using the changeset viewer.