mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
+ add functionnalities updating files for the AMenuManager plugin + fixes some bugs + add functionnalities updating common classes grum_plugins_classes-2 (needed for the AMenuManager plugin) + add functionalities for google_translator use git-svn-id: http://piwigo.org/svn/trunk@2468 68402e56-0260-453c-a942-63ccdbb3a9ee
50 lines
1.0 KiB
Smarty
50 lines
1.0 KiB
Smarty
{literal}
|
|
<script type="text/javascript">
|
|
|
|
function load_list(do_action, item)
|
|
{
|
|
/*
|
|
do_action
|
|
'list' : just load list
|
|
'delete' : delete the item in list
|
|
*/
|
|
var doc = document.getElementById("isections");
|
|
|
|
action_todo='';
|
|
if(do_action=='delete')
|
|
{
|
|
if(confirm('{/literal}{'g002_confirm_delete_link'|@translate}{literal}'))
|
|
{
|
|
action_todo='personalised_delete&fItem='+item;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
action_todo='personalised_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_personalisedlist'|@translate}</h3>
|
|
|
|
[{$datas.nbsections}]<br/>
|
|
<a href="{$datas.lnk_create}" title="{'g002_addsection'|@translate}">{'g002_addsection'|@translate}</a>
|
|
|
|
<br/>
|
|
|
|
<div id="isections"></div>
|
|
|
|
|
|
<script type="text/javascript">
|
|
load_list('list', 0);
|
|
</script> |