Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- include_once '../models/Category.php';
- class SiteController{
- public function actionIndex(){
- $categories = array();
- $categories = Category::getCategoriesList();
- return $categories;
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement