/**
  * Get business activity tag list for acl resource
  *
  * @method get
  * @route /aclresource/businessactivity/tag/formlist
  */
 public function businessActivityTagsForAclResourceAction()
 {
     $di = Di::getDefault();
     $router = $di->get('router');
     $list = TagsRepository::getGlobalList('ba');
     $router->response()->json($list);
 }
Example #2
0
 /**
  * Get service tag list
  *
  * @method get
  * @route /service/tag/formlist
  */
 public function serviceTagsAction()
 {
     $di = Di::getDefault();
     $router = $di->get('router');
     $list = TagsRepository::getGlobalList('service');
     $router->response()->json($list);
 }
Example #3
0
 /**
  * Get contact tag list 
  *
  * @method get
  * @route /contact/tag/formlist
  */
 public function contactTagsAction()
 {
     $router = Di::getDefault()->get('router');
     $list = TagsRepository::getGlobalList('contact');
     $router->response()->json($list);
 }