Changeset 32408
- Timestamp:
- Jan 18, 2021, 9:34:13 PM (4 years ago)
- Location:
- extensions/meta_og
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/meta_og/admin.php
r32229 r32408 1 1 <?php 2 2 // +-----------------------------------------------------------------------+ 3 // | meta_og plugin for Piwigo by TEMMII|4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 20 08-2020ddtddt http://temmii.com/piwigo/ |3 // | Meta Open Graph plugin for Piwigo by TEMMII | 4 // +-----------------------------------------------------------------------+ 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/meta_og/include/function.mog.inc.php
r32229 r32408 1 1 <?php 2 2 // +-----------------------------------------------------------------------+ 3 // | meta_og plugin for Piwigo by TEMMII|3 // | Meta Open Graph plugin for Piwigo by TEMMII | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 20 08-2020ddtddt http://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/meta_og/index.php
r32133 r32408 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/meta_og/initadmin.php
r32229 r32408 1 1 <?php 2 2 // +-----------------------------------------------------------------------+ 3 // | meta_og plugin for Piwigo by TEMMII|4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 20 08-2020ddtddt http://temmii.com/piwigo/ |3 // | Meta Open Graph plugin for Piwigo by TEMMII | 4 // +-----------------------------------------------------------------------+ 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 | … … 23 23 include_once(metaog_PATH . 'include/function.mog.inc.php'); 24 24 //Add link menu 25 add_event_handler('get_admin_plugin_menu_links', 'metaog_admin_menu');25 /*add_event_handler('get_admin_plugin_menu_links', 'metaog_admin_menu'); 26 26 function metaog_admin_menu($menu){ 27 27 $menu[] = array( … … 30 30 ); 31 31 return $menu; 32 } 32 }*/ 33 33 34 34 //add prefiltre photo … … 43 43 44 44 function metaogPadminfT($content, &$smarty){ 45 $search = '#< p style="margin:40px 0 0 0">#';45 $search = '#<input type="hidden" name="pwg_token"#'; 46 46 return preg_replace($search,'{$MOG_ADMINPHOTO}', $content); 47 47 } … … 94 94 $template->assign('SHOWMOGI', "0"); 95 95 } 96 if(!isset($metaogpath)){$metaogpath="";} 96 97 $template->assign( 97 98 'metaog_editP', … … 184 185 $template->assign('SHOWMOGI', "0"); 185 186 } 187 if(!isset($metaogpath)){$metaogpath="";} 186 188 $tab_album = pwg_db_fetch_assoc(pwg_query("SELECT id,representative_picture_id FROM " . CATEGORIES_TABLE . " WHERE id = '".$_GET['cat_id']."';")); 187 189 $template->assign( -
extensions/meta_og/language/en_UK/index.php
r32112 r32408 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/meta_og/language/en_UK/plugin.lang.php
r32249 r32408 1 1 <?php 2 2 // +-----------------------------------------------------------------------+ 3 // | meta_og plugin for Piwigo by TEMMII|3 // | Meta Open Graph plugin for Piwigo by TEMMII | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 20 08-2020ddtddt http://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/meta_og/language/fr_FR/index.php
r32112 r32408 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/meta_og/language/fr_FR/plugin.lang.php
r32229 r32408 1 1 <?php 2 2 // +-----------------------------------------------------------------------+ 3 // | meta_og plugin for Piwigo by TEMMII|3 // | Meta Open Graph plugin for Piwigo by TEMMII | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 20 08-2020ddtddt http://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/meta_og/language/index.php
r32112 r32408 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/meta_og/main.inc.php
r32229 r32408 7 7 Author: ddtddt 8 8 Author URI: http://temmii.com/piwigo/ 9 Has Settings: true 9 10 */ 10 11 11 12 // +-----------------------------------------------------------------------+ 12 // | meta_og plugin for Piwigo by TEMMII|13 // +-----------------------------------------------------------------------+ 14 // | Copyright(C) 20 08-2020ddtddt http://temmii.com/piwigo/ |13 // | Meta Open Graph plugin for Piwigo by TEMMII | 14 // +-----------------------------------------------------------------------+ 15 // | Copyright(C) 2020-2021 ddtddt http://temmii.com/piwigo/ | 15 16 // +-----------------------------------------------------------------------+ 16 17 // | This program is free software; you can redistribute it and/or modify | -
extensions/meta_og/maintain.class.php
r32229 r32408 1 1 <?php 2 2 // +-----------------------------------------------------------------------+ 3 // | meta plugin for Piwigo|3 // | Meta Open Graph plugin for Piwigo by TEMMII | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 20 08-2016ddtddt http://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/meta_og/mog_adminphoto.tpl
r32229 r32408 95 95 {/if} 96 96 </p> 97 < p style="margin:40px 0 0 0">97 <input type="hidden" name="pwg_token"
Note: See TracChangeset
for help on using the changeset viewer.