PMCORE-1176

This commit is contained in:
Paula Quispe
2020-10-23 17:32:12 -04:00
committed by Julio Cesar Laura Avendaño
parent 7eeda4ef57
commit 0d32551ca5
14 changed files with 621 additions and 177 deletions

View File

@@ -1,5 +1,7 @@
<?php
use ProcessMaker\Model\ProcessCategory as ModelCategories;
class ProcessProxy extends HttpProxyController
{
@@ -9,15 +11,29 @@ class ProcessProxy extends HttpProxyController
$RBAC->allows(basename(__FILE__), $name);
parent::call($name);
}
/**
* get Process Categories List with defailt value (empty option) and -All- aoption
*/
public function categoriesList ()
{
$data = $this->getCategoriesList();
$defaultOption[] = Array ('CATEGORY_UID' => '<reset>','CATEGORY_NAME' => G::LoadTranslation( 'ID_ALL' ));
return array_merge( $defaultOption, $data );
/**
* Get Categories list with default values
*
* @link https://wiki.processmaker.com/3.2/Processes#Designer_Menu
*/
public function categoriesList()
{
$defaultOption = [];
// Add the option All categories
$defaultOption[] = [
'CATEGORY_UID' => '',
'CATEGORY_NAME' => G::LoadTranslation('ID_ALL')
];
// Add the option Without categories
$defaultOption[] = [
'CATEGORY_UID' => 'NONE',
'CATEGORY_NAME' => G::LoadTranslation('ID_PROCESS_NO_CATEGORY')
];
$listCategories = ModelCategories::getCategories();
return array_merge($defaultOption, $listCategories);
}
/**