Guest User

Untitled

a guest
Jan 24th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. class Front_Model_Noticias extends Tritoq_Model
  2. {
  3.     //put your code here
  4.    
  5.     public function listarModel ()
  6.     {
  7.         $data = array(0,1,2,3);
  8.        
  9.         return $data;
  10.     }
  11. }
  12.  
  13.  
  14. $model = new Front_Model_Noticias();
  15.      
  16. $data = $model->listar();
  17. echo $model->listar('index/noticias.phtml');
Add Comment
Please, Sign In to add comment