Guest User

Untitled

a guest
Mar 16th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <!-- Wrapper for a slate -->
  2. <div id="<?=$this->id ?>" class="<?=$this->slate ?> slate-wrapper">
  3. <?=$this->content?>
  4. <div>
  5.  
  6. <!-- 3 Slate List View -->
  7. <? if ($this->slate == Kfx2_View_Helper_ThreeSlate::SLATE_BLANK ) : ?>
  8.  
  9. <? elseif ($this->slate == Kfx2_View_Helper_ThreeSlate::SLATE_ERROR) :?>
  10.  
  11. <? elseif ($this->slate == Kfx2_View_Helper_ThreeSlate::SLATE_REGULAR) :?>
  12.  
  13. <? endif;?>
  14.  
  15. <!-- SET SLATE IN CONTROLLER -->
  16. <?php
  17. public function listAction()
  18. {
  19. $materials = $this->_Material->getTable()->findAll();
  20. $this->view->slate = $materials->count() == 0 ?
  21. Kfx2_View_Helper_ThreeSlate::SLATE_BLANK : Kfx2_View_Helper_ThreeSlate::SLATE_REGULAR;
  22. }
  23.  
  24. ?>
Add Comment
Please, Sign In to add comment