if (isset($gitParts[2])) {
$gitBranch[$a['slug']]['branch'] = $gitParts[2];
}
- echo 1;
+
// [3] should be name of feature
if (isset($gitParts[3])) {
$gitBranch[$a['slug']]['feature'] = $gitParts[3];
// Check if no matching action found
if (!$actionFound) {
$err = 'ERROR: The specified action is not valid - '.$glmAction;
- echo $err;
trigger_error ( $err, E_USER_ERROR);
}
*/
public function controller( $menuItem, $action = false, $actionData = false, $returnOutput = false, $forceAction = false )
{
+
if (GLM_MEMBERS_PLUGIN_ADMIN_DEBUG) {
trigger_error(glmAssociateMemoryUsage()." - Start Admin Controller, Menu = $menuItem, Action = $action",E_USER_NOTICE);
trigger_error(glmAssociateTimeTracker()." - Start Admin Controller",E_USER_NOTICE);