create.php 463 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * create.php
  4. *
  5. * @author Spyros Soldatos <spyros@valor.gr>
  6. * @link http://code.google.com/p/srbac/
  7. */
  8. /**
  9. * The create new auth item view.
  10. *
  11. * @author Spyros Soldatos <spyros@valor.gr>
  12. * @package srbac.views.authitem.manage
  13. * @since 1.0.0
  14. */
  15. ?>
  16. <div class="title"><?php echo Helper::translate('srbac','Create New Item') ?></div>
  17. <?php echo $this->renderPartial('manage/_form', array(
  18. 'model'=>$model,
  19. 'update'=>false,
  20. ), false, true); ?>