Example #1
0
 /**
  *  DISPLAY
  */
 public static function show($args = array())
 {
     if ($user = site()->user() and $user->hasPanelAccess()) {
         $self = new self($args);
         return $self->_output();
     }
 }
Example #2
0
 public static function out()
 {
     $buffer = new self();
     echo $buffer->_output();
 }