mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
http://forum.phpwebgallery.net/viewtopic.php?pid=92097#p92097 A plugin to integrate the menu class see test_menu directory A plugin to show how to use the menu class see AMenuManager directory And common classes needed for the AMenuManager plugin see grum_plugins_classes-2 directory See topic http://forum.phpwebgallery.net/viewtopic.php?pid=92637#p92637 for more informations git-svn-id: http://piwigo.org/svn/trunk@2466 68402e56-0260-453c-a942-63ccdbb3a9ee
56 lines
1.3 KiB
Smarty
56 lines
1.3 KiB
Smarty
{literal}
|
|
<script type="text/javascript">
|
|
|
|
function load_list(do_action, item, permut)
|
|
{
|
|
/*
|
|
do_action
|
|
'list' : just load list
|
|
'permut' : permut items in list
|
|
'delete' : delete the item in list
|
|
*/
|
|
var doc = document.getElementById("iurls");
|
|
|
|
action_todo='';
|
|
if(do_action=='permut')
|
|
{
|
|
action_todo='links_permut&fItem='+item+'&fPermut='+permut;
|
|
}
|
|
else if(do_action=='delete')
|
|
{
|
|
if(confirm('{/literal}{'g002_confirm_delete_link'|@translate}{literal}'))
|
|
{
|
|
action_todo='links_delete&fItem='+item;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
action_todo='links_list';
|
|
}
|
|
|
|
if(action_todo!='')
|
|
{
|
|
http_request=create_httpobject('get', '', '{/literal}{$datas.AMM_AJAX_URL_LIST}{literal}'+action_todo, false);
|
|
http_request.send(null);
|
|
doc.innerHTML=http_request.responseText;
|
|
}
|
|
}
|
|
|
|
</script>
|
|
{/literal}
|
|
|
|
|
|
<h3>{'g002_linkslist'|@translate} / <span style="font-weight:normal"><a href="{$datas.lnk_config}" title="{'g002_configlinks'|@translate}">{'g002_configlinks'|@translate}</a></span>
|
|
</h3>
|
|
|
|
[{$datas.nburl}]<br/>
|
|
<a href="{$datas.lnk_create}" title="{'g002_addlink'|@translate}">{'g002_addlink'|@translate}</a>
|
|
|
|
<br/>
|
|
|
|
<div id="iurls"></div>
|
|
|
|
|
|
<script type="text/javascript">
|
|
load_list('list', 0, 0);
|
|
</script> |