footer.html.php 562 B

12345678910111213141516171819
  1. <?php
  2. if(isset($flowAction)) $action = $flowAction; // The view method has the $flowAction property instead of the $action property.
  3. if(!empty($flow->js)) js::execute($flow->js);
  4. if(!empty($action->js)) js::execute($action->js);
  5. if($action->open == 'modal')
  6. {
  7. include '../../common/view/footer.modal.html.php';
  8. }
  9. else
  10. {
  11. if(isset($lang->apps->{$flow->app}))
  12. {
  13. include $this->app->getModuleRoot($flow->app) . 'common/view/footer.html.php';
  14. }
  15. else
  16. {
  17. include $app->getModuleRoot() . 'common/view/footer.html.php';
  18. }
  19. }