view.effort.html.hook.php 384 B

12345678910111213
  1. <?php if(!isonlybody()):?>
  2. <?php
  3. $this->app->loadlang('effort');
  4. $effortHtml = $this->loadModel('effort')->createAppendLink('todo', $todo->id);
  5. ?>
  6. <script>
  7. $(function()
  8. {
  9. $('#mainContent .main-actions:first .btn-toolbar').prepend(<?php echo json_encode($effortHtml);?>);
  10. $(".effort").modalTrigger({width:1024, iframe:true, transition:'elastic'});
  11. })
  12. </script>
  13. <?php endif;?>