PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
wp-all-export-pro
/
src
/
App
/
Controller
<?php namespace Wpae\App\Controller; use Wpae\App\Service\CategoriesService; use Wpae\Controller\BaseController; use Wpae\Http\JsonResponse; use Wpae\Http\Request; class CategoriesController extends BaseController { public function indexAction(Request $request) { $categoriesService = new CategoriesService(); $categories = array( 'id' => 0, 'title' => 'Root', 'children' => $categoriesService->getTaxonomyHierarchy(0) ); return new JsonResponse($categories); } }
[+]
..
[-] CategoriesController.php
[edit]
[-] TemplatesController.php
[edit]
[-] CurrencyController.php
[edit]
[-] GoogleCategoriesController.php
[edit]
[-] SchedulingLicenseController.php
[edit]
[-] ExportController.php
[edit]
[-] SchedulingConnectionController.php
[edit]
[-] AttributesController.php
[edit]