zentaopms/extension/biz/todo/ext/view/view.effort.html.hook.php
2023-05-16 10:50:42 +08:00

14 lines
384 B
PHP

<?php if(!isonlybody()):?>
<?php
$this->app->loadlang('effort');
$effortHtml = $this->loadModel('effort')->createAppendLink('todo', $todo->id);
?>
<script>
$(function()
{
$('#mainContent .main-actions:first .btn-toolbar').prepend(<?php echo json_encode($effortHtml);?>);
$(".effort").modalTrigger({width:1024, iframe:true, transition:'elastic'});
})
</script>
<?php endif;?>