Advertisement
Guest User

SiteC-r

a guest
Jan 15th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2.  
  3. include_once '../models/Category.php';
  4.  
  5.  
  6. class SiteController{
  7. public function actionIndex(){
  8. $categories = array();
  9. $categories = Category::getCategoriesList();
  10.  
  11. return $categories;
  12. }
  13. }
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement