Changeset 32904 for extensions/PersoFooter
- Timestamp:
- Jan 15, 2023, 5:26:48 PM (2 years ago)
- Location:
- extensions/PersoFooter
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/PersoFooter/admin.php
r32387 r32904 3 3 // | Perso Footer plugin for Piwigo by TEMMII | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2011 - 202 1ddtddt http://temmii.com/piwigo/ |5 // | Copyright(C) 2011 - 2023 ddtddt http://temmii.com/piwigo/ | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | This program is free software; you can redistribute it and/or modify | -
extensions/PersoFooter/language/en_UK/plugin.lang.php
r32387 r32904 3 3 // | Perso Footer plugin for Piwigo by TEMMII | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2011 - 202 1ddtddt http://temmii.com/piwigo/ |5 // | Copyright(C) 2011 - 2023 ddtddt http://temmii.com/piwigo/ | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | This program is free software; you can redistribute it and/or modify | -
extensions/PersoFooter/language/fr_FR/plugin.lang.php
r32387 r32904 3 3 // | Perso Footer plugin for Piwigo by TEMMII | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2011 - 202 1ddtddt http://temmii.com/piwigo/ |5 // | Copyright(C) 2011 - 2023 ddtddt http://temmii.com/piwigo/ | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | This program is free software; you can redistribute it and/or modify | -
extensions/PersoFooter/main.inc.php
r32387 r32904 12 12 // | Perso Footer plugin for Piwigo by TEMMII | 13 13 // +-----------------------------------------------------------------------+ 14 // | Copyright(C) 2011 - 202 1ddtddt http://temmii.com/piwigo/ |14 // | Copyright(C) 2011 - 2023 ddtddt http://temmii.com/piwigo/ | 15 15 // +-----------------------------------------------------------------------+ 16 16 // | This program is free software; you can redistribute it and/or modify | … … 34 34 define('PFT_PATH' , PHPWG_PLUGINS_PATH . PFT_DIR . '/'); 35 35 define('PFT_ADMIN',get_root_url().'admin.php?page=plugin-'.PFT_DIR); 36 /*37 add_event_handler('get_admin_plugin_menu_links', 'PFT_admin_menu');38 function PFT_admin_menu($menu){39 if (is_webmaster()){40 array_push($menu, array(41 'NAME' => 'Perso Footer',42 'URL' => PFT_ADMIN));43 }44 return $menu;45 }*/46 36 47 37 add_event_handler('loc_end_page_tail', 'pft'); … … 53 43 $pat=trigger_change('AP_render_content', $conf['persoFooter']); 54 44 if (!empty($pat)){ 55 $template->assign('PERSO_FOOTER2', $pat); 45 $template->assign('PERSO_FOOTER2', $pat); 46 }else{ 47 $template->assign('PERSO_FOOTER2', ""); 56 48 } 57 49 $template->set_filename('PERSO_FOOTER', realpath(PFT_PATH.'persofooter.tpl')); -
extensions/PersoFooter/maintain.class.php
r32387 r32904 3 3 // | Perso Footer plugin for Piwigo by TEMMII | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2011 - 202 1ddtddt http://temmii.com/piwigo/ |5 // | Copyright(C) 2011 - 2023 ddtddt http://temmii.com/piwigo/ | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | This program is free software; you can redistribute it and/or modify |
Note: See TracChangeset
for help on using the changeset viewer.