This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-debian/modules/gallery/views/admin_dashboard.html.php

44 lines
1.3 KiB
PHP
Raw Normal View History

2013-04-04 09:26:00 +00:00
<?php defined("SYSPATH") or die("No direct script access.") ?>
<script type="text/javascript">
update_blocks = function() {
$.get(<?= html::js_string(url::site("admin/dashboard/reorder")) ?>,
{"csrf": "<?= $csrf ?>",
"dashboard_center[]": $("#g-admin-dashboard").sortable(
"toArray", {attribute: "block_id"}),
"dashboard_sidebar[]": $("#g-admin-dashboard-sidebar").sortable(
"toArray", {attribute: "block_id"})});
};
$(document).ready(function(){
$("#g-admin-dashboard .g-block .ui-widget-header").addClass("g-draggable");
$("#g-admin-dashboard").sortable({
connectWith: ["#g-admin-dashboard-sidebar"],
cursor: "move",
handle: $(".ui-widget-header"),
opacity: 0.6,
placeholder: "g-target",
stop: update_blocks
});
$("#g-admin-dashboard-sidebar .g-block .ui-widget-header").addClass("g-draggable");
$("#g-admin-dashboard-sidebar").sortable({
connectWith: ["#g-admin-dashboard"],
cursor: "move",
handle: $(".ui-widget-header"),
opacity: 0.6,
placeholder: "g-target",
stop: update_blocks
});
});
</script>
2013-04-04 09:26:06 +00:00
<div>
<? if ($obsolete_modules_message): ?>
<p class="g-warning">
<?= $obsolete_modules_message ?>
</p>
<? endif ?>
</div>
2013-04-04 09:26:00 +00:00
<div id="g-admin-dashboard">
<?= $blocks ?>
</div>