@@ -34,13 +34,13 @@ discard block |
||
34 | 34 | use Capwelton\LibApp\Set\AppLinkSet; |
35 | 35 | use Capwelton\LibApp\Set\AppLogSet; |
36 | 36 | |
37 | -require_once dirname(__FILE__) . '/define.php'; |
|
38 | -require_once dirname(__FILE__) . '/functions.php'; |
|
37 | +require_once dirname(__FILE__).'/define.php'; |
|
38 | +require_once dirname(__FILE__).'/functions.php'; |
|
39 | 39 | |
40 | 40 | $libappAddon = bab_getAddonInfosInstance('libapp'); |
41 | 41 | $libappPhpPath = $libappAddon->getPhpPath(); |
42 | 42 | |
43 | -require_once $libappPhpPath . '../vendor/autoload.php'; |
|
43 | +require_once $libappPhpPath.'../vendor/autoload.php'; |
|
44 | 44 | |
45 | 45 | /** |
46 | 46 | * Provides extensible functionalities to manage an application. |
@@ -76,13 +76,13 @@ discard block |
||
76 | 76 | $this->addonPrefix = 'app'; |
77 | 77 | |
78 | 78 | $this->classPrefix = $this->addonPrefix; |
79 | - $this->controllerTg = 'addon/' . $this->addonName . '/main'; |
|
79 | + $this->controllerTg = 'addon/'.$this->addonName.'/main'; |
|
80 | 80 | |
81 | 81 | $addon = bab_getAddonInfosInstance($this->addonName); |
82 | 82 | $this->phpPath = $addon->getPhpPath(); |
83 | 83 | $this->recordSetPath = $this->phpPath; |
84 | 84 | $this->ctrlPath = $this->phpPath; |
85 | - $this->uiPath = $this->phpPath . 'ui/'; |
|
85 | + $this->uiPath = $this->phpPath.'ui/'; |
|
86 | 86 | |
87 | 87 | $babDB = bab_getDB(); |
88 | 88 | |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | if (class_exists($componentDefinitionObjectName)) { |
100 | 100 | $componentDefinition = new $componentDefinitionObjectName; |
101 | 101 | $components = $componentDefinition->getComponents($this); |
102 | - foreach ($components as $singleName => $singleComponent){ |
|
102 | + foreach ($components as $singleName => $singleComponent) { |
|
103 | 103 | $this->addComponent($singleName, $singleComponent); |
104 | 104 | } |
105 | 105 | } |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | $nbElem = count($componentName); |
129 | 129 | $componentName = $componentName[$nbElem - 1]; |
130 | 130 | $componentName = strtoupper($componentName); |
131 | - if(isset($this->components[$componentName])){ |
|
131 | + if (isset($this->components[$componentName])) { |
|
132 | 132 | return $this->components[$componentName]; |
133 | 133 | } |
134 | 134 | return null; |
@@ -157,9 +157,9 @@ discard block |
||
157 | 157 | |
158 | 158 | public function __get($componentName) |
159 | 159 | { |
160 | - if(isset($this->components[$componentName])){ |
|
160 | + if (isset($this->components[$componentName])) { |
|
161 | 161 | return $this->components[$componentName]; |
162 | - }else{ |
|
162 | + } else { |
|
163 | 163 | return null; |
164 | 164 | } |
165 | 165 | } |
@@ -178,12 +178,12 @@ discard block |
||
178 | 178 | |
179 | 179 | $messages = array(); |
180 | 180 | |
181 | - foreach ($components as $componentName => $component){ |
|
181 | + foreach ($components as $componentName => $component) { |
|
182 | 182 | $dependencies = $component->checkDependencies(); |
183 | - foreach($dependencies['requiredComponents'] as $requiredComponent){ |
|
183 | + foreach ($dependencies['requiredComponents'] as $requiredComponent) { |
|
184 | 184 | $messages['requiredComponents'][$componentName][] = $requiredComponent; |
185 | 185 | } |
186 | - foreach($dependencies['optionalComponents'] as $optionalComponent){ |
|
186 | + foreach ($dependencies['optionalComponents'] as $optionalComponent) { |
|
187 | 187 | $messages['optionalComponents'][$componentName][] = $optionalComponent; |
188 | 188 | } |
189 | 189 | } |
@@ -195,9 +195,9 @@ discard block |
||
195 | 195 | { |
196 | 196 | $components = $this->getComponents(); |
197 | 197 | $componentDefinitions = array(); |
198 | - foreach ($components as $component){ |
|
198 | + foreach ($components as $component) { |
|
199 | 199 | $packageName = $component->getPackageName(); |
200 | - if(isset($componentDefinitions[$packageName]) && !empty($componentDefinitions[$packageName])){ |
|
200 | + if (isset($componentDefinitions[$packageName]) && !empty($componentDefinitions[$packageName])) { |
|
201 | 201 | continue; |
202 | 202 | } |
203 | 203 | $componentDefinitions[$packageName] = $component->getDefinition(); |
@@ -240,8 +240,8 @@ discard block |
||
240 | 240 | public function getRecordSetPathname($class) |
241 | 241 | { |
242 | 242 | // $App->MyRecordSet() -> myrecord.class.php |
243 | - $file = strtolower(substr($class, strlen($this->classPrefix), -3)) . '.class.php'; |
|
244 | - return $this->recordSetPath . $file; |
|
243 | + $file = strtolower(substr($class, strlen($this->classPrefix), -3)).'.class.php'; |
|
244 | + return $this->recordSetPath.$file; |
|
245 | 245 | } |
246 | 246 | |
247 | 247 | /** |
@@ -253,8 +253,8 @@ discard block |
||
253 | 253 | public function getRecordPathname($class) |
254 | 254 | { |
255 | 255 | // $App->MyRecord() -> myrecord.class.php |
256 | - $file = strtolower(substr($class, strlen($this->classPrefix))) . '.class.php'; |
|
257 | - return $this->recordSetPath . $file; |
|
256 | + $file = strtolower(substr($class, strlen($this->classPrefix))).'.class.php'; |
|
257 | + return $this->recordSetPath.$file; |
|
258 | 258 | } |
259 | 259 | |
260 | 260 | /** |
@@ -355,7 +355,7 @@ discard block |
||
355 | 355 | |
356 | 356 | if (substr($method, 0, 7) === 'include' && substr($method, -3) === 'Set') { |
357 | 357 | $incl = $method; |
358 | - $classNameMethod = substr($method, strlen('include')) . 'ClassName'; |
|
358 | + $classNameMethod = substr($method, strlen('include')).'ClassName'; |
|
359 | 359 | |
360 | 360 | |
361 | 361 | $classname = $this->$classNameMethod(); |
@@ -377,7 +377,7 @@ discard block |
||
377 | 377 | // We need to revert to multilang fields before synchronizing. |
378 | 378 | $set->useLang(false); |
379 | 379 | } |
380 | - $sql .= $mysqlbackend->setToSql($set) . "\n"; |
|
380 | + $sql .= $mysqlbackend->setToSql($set)."\n"; |
|
381 | 381 | } |
382 | 382 | } |
383 | 383 | } |
@@ -404,9 +404,9 @@ discard block |
||
404 | 404 | '; |
405 | 405 | |
406 | 406 | $noPackageNames = array(); |
407 | - foreach ($this->components as $component){ |
|
407 | + foreach ($this->components as $component) { |
|
408 | 408 | /* @var $component AppComponent */ |
409 | - try{ |
|
409 | + try { |
|
410 | 410 | /* @var $set \ORM_RecordSet */ |
411 | 411 | $set = $component->recordSet(); |
412 | 412 | //Check if the component is not overriden by the addon |
@@ -414,26 +414,26 @@ discard block |
||
414 | 414 | //In case the set has been overriden, we simply do nothing here, as it will be instanciated by the synchronizeSql method |
415 | 415 | $cmprc = new \ReflectionClass($set); |
416 | 416 | $componentSetClass = $cmprc->getShortName(); |
417 | - if(method_exists($this, $componentSetClass)){ |
|
417 | + if (method_exists($this, $componentSetClass)) { |
|
418 | 418 | continue; |
419 | 419 | } |
420 | - if(method_exists($set, 'useLang')){ |
|
420 | + if (method_exists($set, 'useLang')) { |
|
421 | 421 | // This is necessary if the recordSet constructor uses a setLang(). |
422 | 422 | // We need to revert to multilang fields before synchronizing. |
423 | 423 | $set->useLang(false); |
424 | 424 | } |
425 | - $sql .= $mysqlbackend->setToSql($set) . "\n"; |
|
425 | + $sql .= $mysqlbackend->setToSql($set)."\n"; |
|
426 | 426 | |
427 | - if(empty($component->getPackageName())){ |
|
427 | + if (empty($component->getPackageName())) { |
|
428 | 428 | $noPackageNames[] = $component->getName(); |
429 | 429 | } |
430 | 430 | } |
431 | - catch (\Exception $e){ |
|
431 | + catch (\Exception $e) { |
|
432 | 432 | |
433 | 433 | } |
434 | 434 | } |
435 | 435 | |
436 | - if(!empty($noPackageNames)){ |
|
436 | + if (!empty($noPackageNames)) { |
|
437 | 437 | $errorMessage = implode(', ', $noPackageNames); |
438 | 438 | \bab_installWindow::message( |
439 | 439 | sprintf( |
@@ -457,18 +457,18 @@ discard block |
||
457 | 457 | $synchronize->fromSqlString($sql); |
458 | 458 | |
459 | 459 | $dependencies = $this->checkComponentsDependencies(); |
460 | - foreach ($dependencies['requiredComponents'] as $componentName => $requiredComponents){ |
|
461 | - foreach ($requiredComponents as $requiredComponent){ |
|
460 | + foreach ($dependencies['requiredComponents'] as $componentName => $requiredComponents) { |
|
461 | + foreach ($requiredComponents as $requiredComponent) { |
|
462 | 462 | $hasComponent = $this->getComponentByName($requiredComponent); |
463 | - if(!$hasComponent){ |
|
463 | + if (!$hasComponent) { |
|
464 | 464 | \bab_installWindow::message(sprintf($this->translate('The component %s is required for the component %s to work. You will encounter fatal errors'), $requiredComponent, $componentName)); |
465 | 465 | } |
466 | 466 | } |
467 | 467 | } |
468 | - foreach ($dependencies['optionalComponents'] as $componentName => $optionalComponents){ |
|
469 | - foreach ($optionalComponents as $optionalComponent){ |
|
468 | + foreach ($dependencies['optionalComponents'] as $componentName => $optionalComponents) { |
|
469 | + foreach ($optionalComponents as $optionalComponent) { |
|
470 | 470 | $hasComponent = $this->getComponentByName($optionalComponent); |
471 | - if(!$hasComponent){ |
|
471 | + if (!$hasComponent) { |
|
472 | 472 | \bab_installWindow::message(sprintf($this->translate('The optional component %s has not been added. The component %s may have reduced functionalities'), $optionalComponent, $componentName)); |
473 | 473 | } |
474 | 474 | } |
@@ -481,7 +481,7 @@ discard block |
||
481 | 481 | { |
482 | 482 | $components = $this->getComponents(); |
483 | 483 | |
484 | - foreach ($components as $component){ |
|
484 | + foreach ($components as $component) { |
|
485 | 485 | $component->onUpdate(); |
486 | 486 | } |
487 | 487 | |
@@ -502,7 +502,7 @@ discard block |
||
502 | 502 | |
503 | 503 | if (substr($method, 0, strlen('include')) === 'include' && substr($method, -strlen('Set')) === 'Set') { |
504 | 504 | $incl = $method; |
505 | - $classNameMethod = substr($method, strlen('include')) . 'ClassName'; |
|
505 | + $classNameMethod = substr($method, strlen('include')).'ClassName'; |
|
506 | 506 | |
507 | 507 | $classname = $this->$classNameMethod(); |
508 | 508 | |
@@ -516,7 +516,7 @@ discard block |
||
516 | 516 | |
517 | 517 | if (class_exists($classname) && method_exists($this, $call)) { |
518 | 518 | $set = $this->$call(); |
519 | - $sql .= $mysqlbackend->setToSql($set) . "\n"; |
|
519 | + $sql .= $mysqlbackend->setToSql($set)."\n"; |
|
520 | 520 | } |
521 | 521 | } |
522 | 522 | } |
@@ -530,7 +530,7 @@ discard block |
||
530 | 530 | |
531 | 531 | public function includeBase() |
532 | 532 | { |
533 | - require_once APP_PHP_PATH . 'base.class.php'; |
|
533 | + require_once APP_PHP_PATH.'base.class.php'; |
|
534 | 534 | } |
535 | 535 | |
536 | 536 | /** |
@@ -538,7 +538,7 @@ discard block |
||
538 | 538 | */ |
539 | 539 | public function includeRecordSet() |
540 | 540 | { |
541 | - require_once APP_SET_PATH . 'record.class.php'; |
|
541 | + require_once APP_SET_PATH.'record.class.php'; |
|
542 | 542 | } |
543 | 543 | |
544 | 544 | |
@@ -547,7 +547,7 @@ discard block |
||
547 | 547 | */ |
548 | 548 | public function includeTraceableRecordSet() |
549 | 549 | { |
550 | - require_once APP_SET_PATH . 'traceablerecord.class.php'; |
|
550 | + require_once APP_SET_PATH.'traceablerecord.class.php'; |
|
551 | 551 | } |
552 | 552 | |
553 | 553 | |
@@ -584,7 +584,7 @@ discard block |
||
584 | 584 | */ |
585 | 585 | public function LogSetClassName() |
586 | 586 | { |
587 | - return $this->LogClassName() . 'Set'; |
|
587 | + return $this->LogClassName().'Set'; |
|
588 | 588 | } |
589 | 589 | |
590 | 590 | /** |
@@ -613,7 +613,7 @@ discard block |
||
613 | 613 | */ |
614 | 614 | public function LinkSetClassName() |
615 | 615 | { |
616 | - return $this->LinkClassName() . 'Set'; |
|
616 | + return $this->LinkClassName().'Set'; |
|
617 | 617 | } |
618 | 618 | |
619 | 619 | /** |
@@ -642,7 +642,7 @@ discard block |
||
642 | 642 | */ |
643 | 643 | public function NotificationSetClassName() |
644 | 644 | { |
645 | - return $this->NotificationClassName() . 'Set'; |
|
645 | + return $this->NotificationClassName().'Set'; |
|
646 | 646 | } |
647 | 647 | |
648 | 648 | /** |
@@ -670,7 +670,7 @@ discard block |
||
670 | 670 | */ |
671 | 671 | public function SSESetClassName() |
672 | 672 | { |
673 | - return $this->SSEClassName() . 'Set'; |
|
673 | + return $this->SSEClassName().'Set'; |
|
674 | 674 | } |
675 | 675 | |
676 | 676 | /** |
@@ -693,7 +693,7 @@ discard block |
||
693 | 693 | public function getRecordSetByRef($recordClassname) |
694 | 694 | { |
695 | 695 | $recordClassname = str_replace($this->classPrefix, '', $recordClassname); |
696 | - $classSet = $recordClassname . 'Set'; |
|
696 | + $classSet = $recordClassname.'Set'; |
|
697 | 697 | $set = $this->$classSet(); |
698 | 698 | return $set; |
699 | 699 | } |
@@ -714,7 +714,7 @@ discard block |
||
714 | 714 | list($recordClassname, $id) = $refParts; |
715 | 715 | $set = $this->getRecordSetByRef($recordClassname); |
716 | 716 | if (isset($set)) { |
717 | - if($noDefaultCriteria){ |
|
717 | + if ($noDefaultCriteria) { |
|
718 | 718 | $set->setDefaultCriteria(null); |
719 | 719 | } |
720 | 720 | return $set->get($id); |
@@ -733,7 +733,7 @@ discard block |
||
733 | 733 | { |
734 | 734 | $fullClassName = get_class($record); |
735 | 735 | list(, $className) = explode('_', $fullClassName); |
736 | - return $className . ':' . $record->id; |
|
736 | + return $className.':'.$record->id; |
|
737 | 737 | } |
738 | 738 | |
739 | 739 | |
@@ -787,7 +787,7 @@ discard block |
||
787 | 787 | |
788 | 788 | //Then, check if current component has a translation |
789 | 789 | if ($translation === $str) { |
790 | - if($currentComponent = $this->getCurrentComponent()){ |
|
790 | + if ($currentComponent = $this->getCurrentComponent()) { |
|
791 | 791 | $translator->setAddonName($currentComponent->getPackageName()); |
792 | 792 | $translator->setLangPath($currentComponent->getLangPath()); |
793 | 793 | $translation = $translator->translate($str, $str_plurals, $number); |
@@ -796,7 +796,7 @@ discard block |
||
796 | 796 | } |
797 | 797 | //Then, check if libapp has a translation |
798 | 798 | if ($translation === $str) { |
799 | - $translator->setLangPath(null);//Reset lang path |
|
799 | + $translator->setLangPath(null); //Reset lang path |
|
800 | 800 | $translator->setAddonName('libapp'); |
801 | 801 | $translation = $translator->translate($str, $str_plurals, $number); |
802 | 802 | } |
@@ -844,16 +844,16 @@ discard block |
||
844 | 844 | */ |
845 | 845 | public function mailTo($addr, $subject = null, $body = null) |
846 | 846 | { |
847 | - $mailTo = 'mailto:' . $addr; |
|
847 | + $mailTo = 'mailto:'.$addr; |
|
848 | 848 | $parameters = array(); |
849 | 849 | if (isset($subject)) { |
850 | - $parameters[] = 'subject=' . $subject; |
|
850 | + $parameters[] = 'subject='.$subject; |
|
851 | 851 | } |
852 | 852 | if (isset($body)) { |
853 | - $parameters[] = 'body=' . $body; |
|
853 | + $parameters[] = 'body='.$body; |
|
854 | 854 | } |
855 | 855 | if (!empty($parameters)) { |
856 | - $mailTo .= '?' . implode('&', $parameters); |
|
856 | + $mailTo .= '?'.implode('&', $parameters); |
|
857 | 857 | } |
858 | 858 | |
859 | 859 | return $mailTo; |
@@ -904,7 +904,7 @@ discard block |
||
904 | 904 | } |
905 | 905 | |
906 | 906 | $number = number_format($number, $decimals, ',', ' '); |
907 | - return str_replace(' ', bab_nbsp(), $number . ' ' . $prefix . $unitSymbol); |
|
907 | + return str_replace(' ', bab_nbsp(), $number.' '.$prefix.$unitSymbol); |
|
908 | 908 | } |
909 | 909 | |
910 | 910 | |
@@ -924,7 +924,7 @@ discard block |
||
924 | 924 | } |
925 | 925 | |
926 | 926 | if (!isset($format)) { |
927 | - $format = \bab_registry::get('/' . $this->addonName . '/numberFormat', $PhoneNumber->getDefaultFormat()); |
|
927 | + $format = \bab_registry::get('/'.$this->addonName.'/numberFormat', $PhoneNumber->getDefaultFormat()); |
|
928 | 928 | } |
929 | 929 | $phoneNumberUtil = $PhoneNumber->PhoneNumberUtil(); |
930 | 930 | |
@@ -945,7 +945,7 @@ discard block |
||
945 | 945 | */ |
946 | 946 | public function includeController() |
947 | 947 | { |
948 | - require_once APP_PHP_PATH . '/controller.class.php'; |
|
948 | + require_once APP_PHP_PATH.'/controller.class.php'; |
|
949 | 949 | } |
950 | 950 | |
951 | 951 | |
@@ -954,7 +954,7 @@ discard block |
||
954 | 954 | */ |
955 | 955 | public function includeRecordController() |
956 | 956 | { |
957 | - require_once APP_CTRL_PATH . '/record.ctrl.php'; |
|
957 | + require_once APP_CTRL_PATH.'/record.ctrl.php'; |
|
958 | 958 | } |
959 | 959 | |
960 | 960 | |
@@ -994,7 +994,7 @@ discard block |
||
994 | 994 | */ |
995 | 995 | public function includeUi() |
996 | 996 | { |
997 | - require_once APP_UI_PATH . 'ui.class.php'; |
|
997 | + require_once APP_UI_PATH.'ui.class.php'; |
|
998 | 998 | } |
999 | 999 | |
1000 | 1000 | |
@@ -1006,7 +1006,7 @@ discard block |
||
1006 | 1006 | public function Ui() |
1007 | 1007 | { |
1008 | 1008 | $this->includeUi(); |
1009 | - return bab_getInstance($this->classPrefix . 'Ui')->setApp($this); |
|
1009 | + return bab_getInstance($this->classPrefix.'Ui')->setApp($this); |
|
1010 | 1010 | } |
1011 | 1011 | |
1012 | 1012 | /** |
@@ -1034,34 +1034,34 @@ discard block |
||
1034 | 1034 | |
1035 | 1035 | case substr($name, -strlen('SetClassName')) === 'SetClassName': |
1036 | 1036 | $className = substr($name, 0, strlen($name) - strlen('SetClassName')); |
1037 | - if($component = $this->getComponentByName($className)){ |
|
1037 | + if ($component = $this->getComponentByName($className)) { |
|
1038 | 1038 | return $component->getSetClassName(); |
1039 | 1039 | } |
1040 | 1040 | $setName = $className.'Set'; |
1041 | - return $this->classPrefix . $setName; |
|
1041 | + return $this->classPrefix.$setName; |
|
1042 | 1042 | |
1043 | 1043 | case substr($name, -strlen('ClassName')) === 'ClassName': |
1044 | 1044 | $recordName = substr($name, 0, strlen($name) - strlen('ClassName')); |
1045 | - if($component = $this->getComponentByName($recordName)){ |
|
1045 | + if ($component = $this->getComponentByName($recordName)) { |
|
1046 | 1046 | return $component->getRecordClassName(); |
1047 | 1047 | } |
1048 | - return $this->classPrefix . $recordName; |
|
1048 | + return $this->classPrefix.$recordName; |
|
1049 | 1049 | |
1050 | 1050 | case substr($name, 0, strlen('include')) === 'include' && substr($name, -strlen('Set')) === 'Set': |
1051 | 1051 | $fileNameBase = strtolower(substr(substr($name, 0, strlen($name) - strlen('Set')), strlen('include'))); |
1052 | - if($this->getComponentByName($fileNameBase)){ |
|
1052 | + if ($this->getComponentByName($fileNameBase)) { |
|
1053 | 1053 | return; |
1054 | 1054 | } |
1055 | - require_once APP_SET_PATH . $fileNameBase . '.class.php'; |
|
1055 | + require_once APP_SET_PATH.$fileNameBase.'.class.php'; |
|
1056 | 1056 | return; |
1057 | 1057 | |
1058 | 1058 | case substr($name, -strlen('Set')) === 'Set': |
1059 | - if($component = $this->getComponentByName(substr($name, 0, strlen($name) -strlen('Set')))){ |
|
1059 | + if ($component = $this->getComponentByName(substr($name, 0, strlen($name) - strlen('Set')))) { |
|
1060 | 1060 | return $component->recordSet(); |
1061 | 1061 | } |
1062 | - $includeMethod = 'include' . $name; |
|
1062 | + $includeMethod = 'include'.$name; |
|
1063 | 1063 | $this->$includeMethod(); |
1064 | - $setClassNameMethod = $name . 'ClassName'; |
|
1064 | + $setClassNameMethod = $name.'ClassName'; |
|
1065 | 1065 | $className = $this->$setClassNameMethod(); |
1066 | 1066 | $set = new $className($this); |
1067 | 1067 | return $set; |
@@ -1069,8 +1069,8 @@ discard block |
||
1069 | 1069 | case ($component = $this->getComponentByName($name)) != false: |
1070 | 1070 | return $component; |
1071 | 1071 | default: |
1072 | - $setName = $name . 'Set'; |
|
1073 | - $recordClassNameMethod = $name . 'ClassName'; |
|
1072 | + $setName = $name.'Set'; |
|
1073 | + $recordClassNameMethod = $name.'ClassName'; |
|
1074 | 1074 | $recordClassName = $this->$recordClassNameMethod(); |
1075 | 1075 | if (isset($arguments[0])) { |
1076 | 1076 | if ($arguments[0] instanceof $recordClassName) { |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | { |
160 | 160 | if(isset($this->components[$componentName])){ |
161 | 161 | return $this->components[$componentName]; |
162 | - }else{ |
|
162 | + } else{ |
|
163 | 163 | return null; |
164 | 164 | } |
165 | 165 | } |
@@ -427,8 +427,7 @@ discard block |
||
427 | 427 | if(empty($component->getPackageName())){ |
428 | 428 | $noPackageNames[] = $component->getName(); |
429 | 429 | } |
430 | - } |
|
431 | - catch (\Exception $e){ |
|
430 | + } catch (\Exception $e){ |
|
432 | 431 | |
433 | 432 | } |
434 | 433 | } |
@@ -92,7 +92,7 @@ |
||
92 | 92 | public function hasNoAccess(AppRecordSet $recordSet, $accessType, $user = null) |
93 | 93 | { |
94 | 94 | $criterion = $this->getAccessCriterion($recordSet, $accessType, $user); |
95 | - if(! $criterion instanceof \ORM_FalseCriterion){ |
|
95 | + if (!$criterion instanceof \ORM_FalseCriterion) { |
|
96 | 96 | return false; |
97 | 97 | } |
98 | 98 | return true; |
@@ -2,6 +2,6 @@ |
||
2 | 2 | |
3 | 3 | // autoload.php @generated by Composer |
4 | 4 | |
5 | -require_once __DIR__ . '/composer/autoload_real.php'; |
|
5 | +require_once __DIR__.'/composer/autoload_real.php'; |
|
6 | 6 | |
7 | 7 | return ComposerAutoloaderInit0aaa67be5f7bedbc88eff25aa142ea59::getLoader(); |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | $issues = array(); |
6 | 6 | |
7 | 7 | if (!(PHP_VERSION_ID >= 50300)) { |
8 | - $issues[] = 'Your Composer dependencies require a PHP version ">= 5.3.0". You are running ' . PHP_VERSION . '.'; |
|
8 | + $issues[] = 'Your Composer dependencies require a PHP version ">= 5.3.0". You are running '.PHP_VERSION.'.'; |
|
9 | 9 | } |
10 | 10 | |
11 | 11 | if ($issues) { |
@@ -14,13 +14,13 @@ discard block |
||
14 | 14 | } |
15 | 15 | if (!ini_get('display_errors')) { |
16 | 16 | if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { |
17 | - fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL); |
|
17 | + fwrite(STDERR, 'Composer detected issues in your platform:'.PHP_EOL.PHP_EOL.implode(PHP_EOL, $issues).PHP_EOL.PHP_EOL); |
|
18 | 18 | } elseif (!headers_sent()) { |
19 | - echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL; |
|
19 | + echo 'Composer detected issues in your platform:'.PHP_EOL.PHP_EOL.str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)).PHP_EOL.PHP_EOL; |
|
20 | 20 | } |
21 | 21 | } |
22 | 22 | trigger_error( |
23 | - 'Composer detected issues in your platform: ' . implode(' ', $issues), |
|
23 | + 'Composer detected issues in your platform: '.implode(' ', $issues), |
|
24 | 24 | E_USER_ERROR |
25 | 25 | ); |
26 | 26 | } |
@@ -6,5 +6,5 @@ |
||
6 | 6 | $baseDir = dirname($vendorDir); |
7 | 7 | |
8 | 8 | return array( |
9 | - 'Capwelton\\LibApp\\' => array($baseDir . '/programs'), |
|
9 | + 'Capwelton\\LibApp\\' => array($baseDir.'/programs'), |
|
10 | 10 | ); |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | public static function loadClassLoader($class) |
10 | 10 | { |
11 | 11 | if ('Composer\Autoload\ClassLoader' === $class) { |
12 | - require __DIR__ . '/ClassLoader.php'; |
|
12 | + require __DIR__.'/ClassLoader.php'; |
|
13 | 13 | } |
14 | 14 | } |
15 | 15 | |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | return self::$loader; |
23 | 23 | } |
24 | 24 | |
25 | - require __DIR__ . '/platform_check.php'; |
|
25 | + require __DIR__.'/platform_check.php'; |
|
26 | 26 | |
27 | 27 | spl_autoload_register(array('ComposerAutoloaderInit0aaa67be5f7bedbc88eff25aa142ea59', 'loadClassLoader'), true, true); |
28 | 28 | self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); |
@@ -30,21 +30,21 @@ discard block |
||
30 | 30 | |
31 | 31 | $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); |
32 | 32 | if ($useStaticLoader) { |
33 | - require __DIR__ . '/autoload_static.php'; |
|
33 | + require __DIR__.'/autoload_static.php'; |
|
34 | 34 | |
35 | 35 | call_user_func(\Composer\Autoload\ComposerStaticInit0aaa67be5f7bedbc88eff25aa142ea59::getInitializer($loader)); |
36 | 36 | } else { |
37 | - $map = require __DIR__ . '/autoload_namespaces.php'; |
|
37 | + $map = require __DIR__.'/autoload_namespaces.php'; |
|
38 | 38 | foreach ($map as $namespace => $path) { |
39 | 39 | $loader->set($namespace, $path); |
40 | 40 | } |
41 | 41 | |
42 | - $map = require __DIR__ . '/autoload_psr4.php'; |
|
42 | + $map = require __DIR__.'/autoload_psr4.php'; |
|
43 | 43 | foreach ($map as $namespace => $path) { |
44 | 44 | $loader->setPsr4($namespace, $path); |
45 | 45 | } |
46 | 46 | |
47 | - $classMap = require __DIR__ . '/autoload_classmap.php'; |
|
47 | + $classMap = require __DIR__.'/autoload_classmap.php'; |
|
48 | 48 | if ($classMap) { |
49 | 49 | $loader->addClassMap($classMap); |
50 | 50 | } |
@@ -404,18 +404,18 @@ discard block |
||
404 | 404 | private function findFileWithExtension($class, $ext) |
405 | 405 | { |
406 | 406 | // PSR-4 lookup |
407 | - $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; |
|
407 | + $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR).$ext; |
|
408 | 408 | |
409 | 409 | $first = $class[0]; |
410 | 410 | if (isset($this->prefixLengthsPsr4[$first])) { |
411 | 411 | $subPath = $class; |
412 | 412 | while (false !== $lastPos = strrpos($subPath, '\\')) { |
413 | 413 | $subPath = substr($subPath, 0, $lastPos); |
414 | - $search = $subPath . '\\'; |
|
414 | + $search = $subPath.'\\'; |
|
415 | 415 | if (isset($this->prefixDirsPsr4[$search])) { |
416 | - $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); |
|
416 | + $pathEnd = DIRECTORY_SEPARATOR.substr($logicalPathPsr4, $lastPos + 1); |
|
417 | 417 | foreach ($this->prefixDirsPsr4[$search] as $dir) { |
418 | - if (file_exists($file = $dir . $pathEnd)) { |
|
418 | + if (file_exists($file = $dir.$pathEnd)) { |
|
419 | 419 | return $file; |
420 | 420 | } |
421 | 421 | } |
@@ -425,7 +425,7 @@ discard block |
||
425 | 425 | |
426 | 426 | // PSR-4 fallback dirs |
427 | 427 | foreach ($this->fallbackDirsPsr4 as $dir) { |
428 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { |
|
428 | + if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr4)) { |
|
429 | 429 | return $file; |
430 | 430 | } |
431 | 431 | } |
@@ -437,14 +437,14 @@ discard block |
||
437 | 437 | . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); |
438 | 438 | } else { |
439 | 439 | // PEAR-like class name |
440 | - $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; |
|
440 | + $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR).$ext; |
|
441 | 441 | } |
442 | 442 | |
443 | 443 | if (isset($this->prefixesPsr0[$first])) { |
444 | 444 | foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { |
445 | 445 | if (0 === strpos($class, $prefix)) { |
446 | 446 | foreach ($dirs as $dir) { |
447 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { |
|
447 | + if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr0)) { |
|
448 | 448 | return $file; |
449 | 449 | } |
450 | 450 | } |
@@ -454,7 +454,7 @@ discard block |
||
454 | 454 | |
455 | 455 | // PSR-0 fallback dirs |
456 | 456 | foreach ($this->fallbackDirsPsr0 as $dir) { |
457 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { |
|
457 | + if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr0)) { |
|
458 | 458 | return $file; |
459 | 459 | } |
460 | 460 | } |
@@ -6,103 +6,103 @@ |
||
6 | 6 | |
7 | 7 | class ComposerStaticInit0aaa67be5f7bedbc88eff25aa142ea59 |
8 | 8 | { |
9 | - public static $prefixLengthsPsr4 = array ( |
|
9 | + public static $prefixLengthsPsr4 = array( |
|
10 | 10 | 'C' => |
11 | - array ( |
|
11 | + array( |
|
12 | 12 | 'Capwelton\\LibApp\\' => 17, |
13 | 13 | ), |
14 | 14 | ); |
15 | 15 | |
16 | - public static $prefixDirsPsr4 = array ( |
|
16 | + public static $prefixDirsPsr4 = array( |
|
17 | 17 | 'Capwelton\\LibApp\\' => |
18 | - array ( |
|
19 | - 0 => __DIR__ . '/../..' . '/programs', |
|
18 | + array( |
|
19 | + 0 => __DIR__.'/../..'.'/programs', |
|
20 | 20 | ), |
21 | 21 | ); |
22 | 22 | |
23 | - public static $classMap = array ( |
|
24 | - 'Capwelton\\LibApp\\AppAccessManager' => __DIR__ . '/../..' . '/programs/AppAccessManager.php', |
|
25 | - 'Capwelton\\LibApp\\AppComponent' => __DIR__ . '/../..' . '/programs/AppComponent.php', |
|
26 | - 'Capwelton\\LibApp\\AppObject' => __DIR__ . '/../..' . '/programs/AppObject.php', |
|
27 | - 'Capwelton\\LibApp\\AppObjectInterface' => __DIR__ . '/../..' . '/programs/AppObjectInterface.php', |
|
28 | - 'Capwelton\\LibApp\\AppUiObject' => __DIR__ . '/../..' . '/programs/AppUiObject.php', |
|
29 | - 'Capwelton\\LibApp\\Ctrl\\AppComponentCtrlRecord' => __DIR__ . '/../..' . '/programs/Ctrl/AppComponentCtrlRecord.php', |
|
30 | - 'Capwelton\\LibApp\\Ctrl\\AppController' => __DIR__ . '/../..' . '/programs/Ctrl/AppController.php', |
|
31 | - 'Capwelton\\LibApp\\Ctrl\\AppCtrlAddonConfiguration' => __DIR__ . '/../..' . '/programs/Ctrl/AppCtrlAddonConfiguration.php', |
|
32 | - 'Capwelton\\LibApp\\Ctrl\\AppCtrlConfiguration' => __DIR__ . '/../..' . '/programs/Ctrl/AppCtrlConfiguration.php', |
|
33 | - 'Capwelton\\LibApp\\Ctrl\\AppCtrlCustomContainer' => __DIR__ . '/../..' . '/programs/Ctrl/AppCtrlCustomContainer.php', |
|
34 | - 'Capwelton\\LibApp\\Ctrl\\AppCtrlCustomField' => __DIR__ . '/../..' . '/programs/Ctrl/AppCtrlCustomField.php', |
|
35 | - 'Capwelton\\LibApp\\Ctrl\\AppCtrlCustomSection' => __DIR__ . '/../..' . '/programs/Ctrl/AppCtrlCustomSection.php', |
|
36 | - 'Capwelton\\LibApp\\Ctrl\\AppCtrlNotification' => __DIR__ . '/../..' . '/programs/Ctrl/AppCtrlNotification.php', |
|
37 | - 'Capwelton\\LibApp\\Ctrl\\AppCtrlRecord' => __DIR__ . '/../..' . '/programs/Ctrl/AppCtrlRecord.php', |
|
38 | - 'Capwelton\\LibApp\\Ctrl\\AppCtrlSSE' => __DIR__ . '/../..' . '/programs/Ctrl/AppCtrlSSE.php', |
|
39 | - 'Capwelton\\LibApp\\Exceptions\\AppAccessException' => __DIR__ . '/../..' . '/programs/Exceptions/AppAccessException.php', |
|
40 | - 'Capwelton\\LibApp\\Exceptions\\AppDeletedRecordException' => __DIR__ . '/../..' . '/programs/Exceptions/AppDeletedRecordException.php', |
|
41 | - 'Capwelton\\LibApp\\Exceptions\\AppEmptyResultException' => __DIR__ . '/../..' . '/programs/Exceptions/AppEmptyResultException.php', |
|
42 | - 'Capwelton\\LibApp\\Exceptions\\AppException' => __DIR__ . '/../..' . '/programs/Exceptions/AppException.php', |
|
43 | - 'Capwelton\\LibApp\\Exceptions\\AppNotFoundException' => __DIR__ . '/../..' . '/programs/Exceptions/AppNotFoundException.php', |
|
44 | - 'Capwelton\\LibApp\\Exceptions\\AppSaveException' => __DIR__ . '/../..' . '/programs/Exceptions/AppSaveException.php', |
|
45 | - 'Capwelton\\LibApp\\Exceptions\\AppUnknownActionException' => __DIR__ . '/../..' . '/programs/Exceptions/AppUnknownActionException.php', |
|
46 | - 'Capwelton\\LibApp\\Func_App' => __DIR__ . '/../..' . '/programs/Func_App.php', |
|
47 | - 'Capwelton\\LibApp\\Interfaces\\AppComponentDefinition' => __DIR__ . '/../..' . '/programs/Interfaces/AppComponentDefinition.php', |
|
48 | - 'Capwelton\\LibApp\\Interfaces\\AppComponentUi' => __DIR__ . '/../..' . '/programs/Interfaces/AppComponentUi.php', |
|
49 | - 'Capwelton\\LibApp\\Interfaces\\AppCtrlRecordInterface' => __DIR__ . '/../..' . '/programs/Interfaces/AppCtrlRecordInterface.php', |
|
50 | - 'Capwelton\\LibApp\\Portlet\\AppPortlet' => __DIR__ . '/../..' . '/programs/Portlet/AppPortlet.php', |
|
51 | - 'Capwelton\\LibApp\\Portlet\\AppPortletDefinition' => __DIR__ . '/../..' . '/programs/Portlet/AppPortletDefinition.php', |
|
52 | - 'Capwelton\\LibApp\\Portlet\\AppPortletUi' => __DIR__ . '/../..' . '/programs/Portlet/AppPortletUi.php', |
|
53 | - 'Capwelton\\LibApp\\Portlet\\Func_PortletBackend_App' => __DIR__ . '/../..' . '/programs/Portlet/Func_PortletBackend_App.php', |
|
54 | - 'Capwelton\\LibApp\\Portlet\\Notifications\\AppPortletDefinitionNotifications' => __DIR__ . '/../..' . '/programs/Portlet/Notifications/AppPortletDefinitionNotifications.php', |
|
55 | - 'Capwelton\\LibApp\\Portlet\\Notifications\\AppPortletUiNotifications' => __DIR__ . '/../..' . '/programs/Portlet/Notifications/AppPortletUiNotifications.php', |
|
56 | - 'Capwelton\\LibApp\\Set\\AppCustomContainer' => __DIR__ . '/../..' . '/programs/Set/AppCustomContainer.php', |
|
57 | - 'Capwelton\\LibApp\\Set\\AppCustomContainerSet' => __DIR__ . '/../..' . '/programs/Set/AppCustomContainerSet.php', |
|
58 | - 'Capwelton\\LibApp\\Set\\AppCustomField' => __DIR__ . '/../..' . '/programs/Set/AppCustomField.php', |
|
59 | - 'Capwelton\\LibApp\\Set\\AppCustomFieldSet' => __DIR__ . '/../..' . '/programs/Set/AppCustomFieldSet.php', |
|
60 | - 'Capwelton\\LibApp\\Set\\AppCustomSection' => __DIR__ . '/../..' . '/programs/Set/AppCustomSection.php', |
|
61 | - 'Capwelton\\LibApp\\Set\\AppCustomSectionSet' => __DIR__ . '/../..' . '/programs/Set/AppCustomSectionSet.php', |
|
62 | - 'Capwelton\\LibApp\\Set\\AppLink' => __DIR__ . '/../..' . '/programs/Set/AppLink.php', |
|
63 | - 'Capwelton\\LibApp\\Set\\AppLinkSet' => __DIR__ . '/../..' . '/programs/Set/AppLinkSet.php', |
|
64 | - 'Capwelton\\LibApp\\Set\\AppLog' => __DIR__ . '/../..' . '/programs/Set/AppLog.php', |
|
65 | - 'Capwelton\\LibApp\\Set\\AppLogSet' => __DIR__ . '/../..' . '/programs/Set/AppLogSet.php', |
|
66 | - 'Capwelton\\LibApp\\Set\\AppNotification' => __DIR__ . '/../..' . '/programs/Set/AppNotification.php', |
|
67 | - 'Capwelton\\LibApp\\Set\\AppNotificationSet' => __DIR__ . '/../..' . '/programs/Set/AppNotificationSet.php', |
|
68 | - 'Capwelton\\LibApp\\Set\\AppRecord' => __DIR__ . '/../..' . '/programs/Set/AppRecord.php', |
|
69 | - 'Capwelton\\LibApp\\Set\\AppRecordSet' => __DIR__ . '/../..' . '/programs/Set/AppRecordSet.php', |
|
70 | - 'Capwelton\\LibApp\\Set\\AppRole' => __DIR__ . '/../..' . '/programs/Set/AppRole.php', |
|
71 | - 'Capwelton\\LibApp\\Set\\AppRoleAccess' => __DIR__ . '/../..' . '/programs/Set/AppRoleAccess.php', |
|
72 | - 'Capwelton\\LibApp\\Set\\AppRoleAccessSet' => __DIR__ . '/../..' . '/programs/Set/AppRoleAccessSet.php', |
|
73 | - 'Capwelton\\LibApp\\Set\\AppRoleSet' => __DIR__ . '/../..' . '/programs/Set/AppRoleSet.php', |
|
74 | - 'Capwelton\\LibApp\\Set\\AppSSE' => __DIR__ . '/../..' . '/programs/Set/AppSSE.php', |
|
75 | - 'Capwelton\\LibApp\\Set\\AppSSESet' => __DIR__ . '/../..' . '/programs/Set/AppSSESet.php', |
|
76 | - 'Capwelton\\LibApp\\Set\\AppTraceableRecord' => __DIR__ . '/../..' . '/programs/Set/AppTraceableRecord.php', |
|
77 | - 'Capwelton\\LibApp\\Set\\AppTraceableRecordSet' => __DIR__ . '/../..' . '/programs/Set/AppTraceableRecordSet.php', |
|
78 | - 'Capwelton\\LibApp\\Set\\RecordAfterSaveEvent' => __DIR__ . '/../..' . '/programs/Set/RecordAfterSaveEvent.php', |
|
79 | - 'Capwelton\\LibApp\\Set\\RecordBeforeSaveEvent' => __DIR__ . '/../..' . '/programs/Set/RecordBeforeSaveEvent.php', |
|
80 | - 'Capwelton\\LibApp\\Ui\\AppCardFrame' => __DIR__ . '/../..' . '/programs/Ui/AppCardFrame.php', |
|
81 | - 'Capwelton\\LibApp\\Ui\\AppCriteriaEditor' => __DIR__ . '/../..' . '/programs/Ui/AppCriteriaEditor.php', |
|
82 | - 'Capwelton\\LibApp\\Ui\\AppCustomFieldEditor' => __DIR__ . '/../..' . '/programs/Ui/AppCustomFieldEditor.php', |
|
83 | - 'Capwelton\\LibApp\\Ui\\AppCustomFieldTableView' => __DIR__ . '/../..' . '/programs/Ui/AppCustomFieldTableView.php', |
|
84 | - 'Capwelton\\LibApp\\Ui\\AppEditor' => __DIR__ . '/../..' . '/programs/Ui/AppEditor.php', |
|
85 | - 'Capwelton\\LibApp\\Ui\\AppExportSelectEditor' => __DIR__ . '/../..' . '/programs/Ui/AppExportSelectEditor.php', |
|
86 | - 'Capwelton\\LibApp\\Ui\\AppRecordEditor' => __DIR__ . '/../..' . '/programs/Ui/AppRecordEditor.php', |
|
87 | - 'Capwelton\\LibApp\\Ui\\AppRecordFrame' => __DIR__ . '/../..' . '/programs/Ui/AppRecordFrame.php', |
|
88 | - 'Capwelton\\LibApp\\Ui\\AppRecordView' => __DIR__ . '/../..' . '/programs/Ui/AppRecordView.php', |
|
89 | - 'Capwelton\\LibApp\\Ui\\AppTableModelView' => __DIR__ . '/../..' . '/programs/Ui/AppTableModelView.php', |
|
90 | - 'Capwelton\\LibApp\\Ui\\AppTableModelViewColumnSettingsEditor' => __DIR__ . '/../..' . '/programs/Ui/AppTableModelViewColumnSettingsEditor.php', |
|
91 | - 'Capwelton\\LibApp\\Ui\\AppToolbar' => __DIR__ . '/../..' . '/programs/Ui/AppToolbar.php', |
|
92 | - 'Capwelton\\LibApp\\Ui\\AppUi' => __DIR__ . '/../..' . '/programs/Ui/AppUi.php', |
|
93 | - 'Capwelton\\LibApp\\Ui\\Items\\AppChip' => __DIR__ . '/../..' . '/programs/Ui/Items/AppChip.php', |
|
94 | - 'Capwelton\\LibApp\\Ui\\Items\\AppShape' => __DIR__ . '/../..' . '/programs/Ui/Items/AppShape.php', |
|
95 | - 'Capwelton\\LibApp\\Ui\\Items\\AppShapeCircle' => __DIR__ . '/../..' . '/programs/Ui/Items/AppShapeCircle.php', |
|
96 | - 'Capwelton\\LibApp\\Ui\\Items\\AppShapeSquare' => __DIR__ . '/../..' . '/programs/Ui/Items/AppShapeSquare.php', |
|
97 | - 'Capwelton\\LibApp\\Ui\\Items\\AppShapeTriangle' => __DIR__ . '/../..' . '/programs/Ui/Items/AppShapeTriangle.php', |
|
98 | - 'Capwelton\\LibApp\\Ui\\Page\\AppErrorPage' => __DIR__ . '/../..' . '/programs/Ui/Page/AppErrorPage.php', |
|
99 | - 'Capwelton\\LibApp\\Ui\\Page\\AppPage' => __DIR__ . '/../..' . '/programs/Ui/Page/AppPage.php', |
|
100 | - 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', |
|
23 | + public static $classMap = array( |
|
24 | + 'Capwelton\\LibApp\\AppAccessManager' => __DIR__.'/../..'.'/programs/AppAccessManager.php', |
|
25 | + 'Capwelton\\LibApp\\AppComponent' => __DIR__.'/../..'.'/programs/AppComponent.php', |
|
26 | + 'Capwelton\\LibApp\\AppObject' => __DIR__.'/../..'.'/programs/AppObject.php', |
|
27 | + 'Capwelton\\LibApp\\AppObjectInterface' => __DIR__.'/../..'.'/programs/AppObjectInterface.php', |
|
28 | + 'Capwelton\\LibApp\\AppUiObject' => __DIR__.'/../..'.'/programs/AppUiObject.php', |
|
29 | + 'Capwelton\\LibApp\\Ctrl\\AppComponentCtrlRecord' => __DIR__.'/../..'.'/programs/Ctrl/AppComponentCtrlRecord.php', |
|
30 | + 'Capwelton\\LibApp\\Ctrl\\AppController' => __DIR__.'/../..'.'/programs/Ctrl/AppController.php', |
|
31 | + 'Capwelton\\LibApp\\Ctrl\\AppCtrlAddonConfiguration' => __DIR__.'/../..'.'/programs/Ctrl/AppCtrlAddonConfiguration.php', |
|
32 | + 'Capwelton\\LibApp\\Ctrl\\AppCtrlConfiguration' => __DIR__.'/../..'.'/programs/Ctrl/AppCtrlConfiguration.php', |
|
33 | + 'Capwelton\\LibApp\\Ctrl\\AppCtrlCustomContainer' => __DIR__.'/../..'.'/programs/Ctrl/AppCtrlCustomContainer.php', |
|
34 | + 'Capwelton\\LibApp\\Ctrl\\AppCtrlCustomField' => __DIR__.'/../..'.'/programs/Ctrl/AppCtrlCustomField.php', |
|
35 | + 'Capwelton\\LibApp\\Ctrl\\AppCtrlCustomSection' => __DIR__.'/../..'.'/programs/Ctrl/AppCtrlCustomSection.php', |
|
36 | + 'Capwelton\\LibApp\\Ctrl\\AppCtrlNotification' => __DIR__.'/../..'.'/programs/Ctrl/AppCtrlNotification.php', |
|
37 | + 'Capwelton\\LibApp\\Ctrl\\AppCtrlRecord' => __DIR__.'/../..'.'/programs/Ctrl/AppCtrlRecord.php', |
|
38 | + 'Capwelton\\LibApp\\Ctrl\\AppCtrlSSE' => __DIR__.'/../..'.'/programs/Ctrl/AppCtrlSSE.php', |
|
39 | + 'Capwelton\\LibApp\\Exceptions\\AppAccessException' => __DIR__.'/../..'.'/programs/Exceptions/AppAccessException.php', |
|
40 | + 'Capwelton\\LibApp\\Exceptions\\AppDeletedRecordException' => __DIR__.'/../..'.'/programs/Exceptions/AppDeletedRecordException.php', |
|
41 | + 'Capwelton\\LibApp\\Exceptions\\AppEmptyResultException' => __DIR__.'/../..'.'/programs/Exceptions/AppEmptyResultException.php', |
|
42 | + 'Capwelton\\LibApp\\Exceptions\\AppException' => __DIR__.'/../..'.'/programs/Exceptions/AppException.php', |
|
43 | + 'Capwelton\\LibApp\\Exceptions\\AppNotFoundException' => __DIR__.'/../..'.'/programs/Exceptions/AppNotFoundException.php', |
|
44 | + 'Capwelton\\LibApp\\Exceptions\\AppSaveException' => __DIR__.'/../..'.'/programs/Exceptions/AppSaveException.php', |
|
45 | + 'Capwelton\\LibApp\\Exceptions\\AppUnknownActionException' => __DIR__.'/../..'.'/programs/Exceptions/AppUnknownActionException.php', |
|
46 | + 'Capwelton\\LibApp\\Func_App' => __DIR__.'/../..'.'/programs/Func_App.php', |
|
47 | + 'Capwelton\\LibApp\\Interfaces\\AppComponentDefinition' => __DIR__.'/../..'.'/programs/Interfaces/AppComponentDefinition.php', |
|
48 | + 'Capwelton\\LibApp\\Interfaces\\AppComponentUi' => __DIR__.'/../..'.'/programs/Interfaces/AppComponentUi.php', |
|
49 | + 'Capwelton\\LibApp\\Interfaces\\AppCtrlRecordInterface' => __DIR__.'/../..'.'/programs/Interfaces/AppCtrlRecordInterface.php', |
|
50 | + 'Capwelton\\LibApp\\Portlet\\AppPortlet' => __DIR__.'/../..'.'/programs/Portlet/AppPortlet.php', |
|
51 | + 'Capwelton\\LibApp\\Portlet\\AppPortletDefinition' => __DIR__.'/../..'.'/programs/Portlet/AppPortletDefinition.php', |
|
52 | + 'Capwelton\\LibApp\\Portlet\\AppPortletUi' => __DIR__.'/../..'.'/programs/Portlet/AppPortletUi.php', |
|
53 | + 'Capwelton\\LibApp\\Portlet\\Func_PortletBackend_App' => __DIR__.'/../..'.'/programs/Portlet/Func_PortletBackend_App.php', |
|
54 | + 'Capwelton\\LibApp\\Portlet\\Notifications\\AppPortletDefinitionNotifications' => __DIR__.'/../..'.'/programs/Portlet/Notifications/AppPortletDefinitionNotifications.php', |
|
55 | + 'Capwelton\\LibApp\\Portlet\\Notifications\\AppPortletUiNotifications' => __DIR__.'/../..'.'/programs/Portlet/Notifications/AppPortletUiNotifications.php', |
|
56 | + 'Capwelton\\LibApp\\Set\\AppCustomContainer' => __DIR__.'/../..'.'/programs/Set/AppCustomContainer.php', |
|
57 | + 'Capwelton\\LibApp\\Set\\AppCustomContainerSet' => __DIR__.'/../..'.'/programs/Set/AppCustomContainerSet.php', |
|
58 | + 'Capwelton\\LibApp\\Set\\AppCustomField' => __DIR__.'/../..'.'/programs/Set/AppCustomField.php', |
|
59 | + 'Capwelton\\LibApp\\Set\\AppCustomFieldSet' => __DIR__.'/../..'.'/programs/Set/AppCustomFieldSet.php', |
|
60 | + 'Capwelton\\LibApp\\Set\\AppCustomSection' => __DIR__.'/../..'.'/programs/Set/AppCustomSection.php', |
|
61 | + 'Capwelton\\LibApp\\Set\\AppCustomSectionSet' => __DIR__.'/../..'.'/programs/Set/AppCustomSectionSet.php', |
|
62 | + 'Capwelton\\LibApp\\Set\\AppLink' => __DIR__.'/../..'.'/programs/Set/AppLink.php', |
|
63 | + 'Capwelton\\LibApp\\Set\\AppLinkSet' => __DIR__.'/../..'.'/programs/Set/AppLinkSet.php', |
|
64 | + 'Capwelton\\LibApp\\Set\\AppLog' => __DIR__.'/../..'.'/programs/Set/AppLog.php', |
|
65 | + 'Capwelton\\LibApp\\Set\\AppLogSet' => __DIR__.'/../..'.'/programs/Set/AppLogSet.php', |
|
66 | + 'Capwelton\\LibApp\\Set\\AppNotification' => __DIR__.'/../..'.'/programs/Set/AppNotification.php', |
|
67 | + 'Capwelton\\LibApp\\Set\\AppNotificationSet' => __DIR__.'/../..'.'/programs/Set/AppNotificationSet.php', |
|
68 | + 'Capwelton\\LibApp\\Set\\AppRecord' => __DIR__.'/../..'.'/programs/Set/AppRecord.php', |
|
69 | + 'Capwelton\\LibApp\\Set\\AppRecordSet' => __DIR__.'/../..'.'/programs/Set/AppRecordSet.php', |
|
70 | + 'Capwelton\\LibApp\\Set\\AppRole' => __DIR__.'/../..'.'/programs/Set/AppRole.php', |
|
71 | + 'Capwelton\\LibApp\\Set\\AppRoleAccess' => __DIR__.'/../..'.'/programs/Set/AppRoleAccess.php', |
|
72 | + 'Capwelton\\LibApp\\Set\\AppRoleAccessSet' => __DIR__.'/../..'.'/programs/Set/AppRoleAccessSet.php', |
|
73 | + 'Capwelton\\LibApp\\Set\\AppRoleSet' => __DIR__.'/../..'.'/programs/Set/AppRoleSet.php', |
|
74 | + 'Capwelton\\LibApp\\Set\\AppSSE' => __DIR__.'/../..'.'/programs/Set/AppSSE.php', |
|
75 | + 'Capwelton\\LibApp\\Set\\AppSSESet' => __DIR__.'/../..'.'/programs/Set/AppSSESet.php', |
|
76 | + 'Capwelton\\LibApp\\Set\\AppTraceableRecord' => __DIR__.'/../..'.'/programs/Set/AppTraceableRecord.php', |
|
77 | + 'Capwelton\\LibApp\\Set\\AppTraceableRecordSet' => __DIR__.'/../..'.'/programs/Set/AppTraceableRecordSet.php', |
|
78 | + 'Capwelton\\LibApp\\Set\\RecordAfterSaveEvent' => __DIR__.'/../..'.'/programs/Set/RecordAfterSaveEvent.php', |
|
79 | + 'Capwelton\\LibApp\\Set\\RecordBeforeSaveEvent' => __DIR__.'/../..'.'/programs/Set/RecordBeforeSaveEvent.php', |
|
80 | + 'Capwelton\\LibApp\\Ui\\AppCardFrame' => __DIR__.'/../..'.'/programs/Ui/AppCardFrame.php', |
|
81 | + 'Capwelton\\LibApp\\Ui\\AppCriteriaEditor' => __DIR__.'/../..'.'/programs/Ui/AppCriteriaEditor.php', |
|
82 | + 'Capwelton\\LibApp\\Ui\\AppCustomFieldEditor' => __DIR__.'/../..'.'/programs/Ui/AppCustomFieldEditor.php', |
|
83 | + 'Capwelton\\LibApp\\Ui\\AppCustomFieldTableView' => __DIR__.'/../..'.'/programs/Ui/AppCustomFieldTableView.php', |
|
84 | + 'Capwelton\\LibApp\\Ui\\AppEditor' => __DIR__.'/../..'.'/programs/Ui/AppEditor.php', |
|
85 | + 'Capwelton\\LibApp\\Ui\\AppExportSelectEditor' => __DIR__.'/../..'.'/programs/Ui/AppExportSelectEditor.php', |
|
86 | + 'Capwelton\\LibApp\\Ui\\AppRecordEditor' => __DIR__.'/../..'.'/programs/Ui/AppRecordEditor.php', |
|
87 | + 'Capwelton\\LibApp\\Ui\\AppRecordFrame' => __DIR__.'/../..'.'/programs/Ui/AppRecordFrame.php', |
|
88 | + 'Capwelton\\LibApp\\Ui\\AppRecordView' => __DIR__.'/../..'.'/programs/Ui/AppRecordView.php', |
|
89 | + 'Capwelton\\LibApp\\Ui\\AppTableModelView' => __DIR__.'/../..'.'/programs/Ui/AppTableModelView.php', |
|
90 | + 'Capwelton\\LibApp\\Ui\\AppTableModelViewColumnSettingsEditor' => __DIR__.'/../..'.'/programs/Ui/AppTableModelViewColumnSettingsEditor.php', |
|
91 | + 'Capwelton\\LibApp\\Ui\\AppToolbar' => __DIR__.'/../..'.'/programs/Ui/AppToolbar.php', |
|
92 | + 'Capwelton\\LibApp\\Ui\\AppUi' => __DIR__.'/../..'.'/programs/Ui/AppUi.php', |
|
93 | + 'Capwelton\\LibApp\\Ui\\Items\\AppChip' => __DIR__.'/../..'.'/programs/Ui/Items/AppChip.php', |
|
94 | + 'Capwelton\\LibApp\\Ui\\Items\\AppShape' => __DIR__.'/../..'.'/programs/Ui/Items/AppShape.php', |
|
95 | + 'Capwelton\\LibApp\\Ui\\Items\\AppShapeCircle' => __DIR__.'/../..'.'/programs/Ui/Items/AppShapeCircle.php', |
|
96 | + 'Capwelton\\LibApp\\Ui\\Items\\AppShapeSquare' => __DIR__.'/../..'.'/programs/Ui/Items/AppShapeSquare.php', |
|
97 | + 'Capwelton\\LibApp\\Ui\\Items\\AppShapeTriangle' => __DIR__.'/../..'.'/programs/Ui/Items/AppShapeTriangle.php', |
|
98 | + 'Capwelton\\LibApp\\Ui\\Page\\AppErrorPage' => __DIR__.'/../..'.'/programs/Ui/Page/AppErrorPage.php', |
|
99 | + 'Capwelton\\LibApp\\Ui\\Page\\AppPage' => __DIR__.'/../..'.'/programs/Ui/Page/AppPage.php', |
|
100 | + 'Composer\\InstalledVersions' => __DIR__.'/..'.'/composer/InstalledVersions.php', |
|
101 | 101 | ); |
102 | 102 | |
103 | 103 | public static function getInitializer(ClassLoader $loader) |
104 | 104 | { |
105 | - return \Closure::bind(function () use ($loader) { |
|
105 | + return \Closure::bind(function() use ($loader) { |
|
106 | 106 | $loader->prefixLengthsPsr4 = ComposerStaticInit0aaa67be5f7bedbc88eff25aa142ea59::$prefixLengthsPsr4; |
107 | 107 | $loader->prefixDirsPsr4 = ComposerStaticInit0aaa67be5f7bedbc88eff25aa142ea59::$prefixDirsPsr4; |
108 | 108 | $loader->classMap = ComposerStaticInit0aaa67be5f7bedbc88eff25aa142ea59::$classMap; |
@@ -6,81 +6,81 @@ |
||
6 | 6 | $baseDir = dirname($vendorDir); |
7 | 7 | |
8 | 8 | return array( |
9 | - 'Capwelton\\LibApp\\AppAccessManager' => $baseDir . '/programs/AppAccessManager.php', |
|
10 | - 'Capwelton\\LibApp\\AppComponent' => $baseDir . '/programs/AppComponent.php', |
|
11 | - 'Capwelton\\LibApp\\AppObject' => $baseDir . '/programs/AppObject.php', |
|
12 | - 'Capwelton\\LibApp\\AppObjectInterface' => $baseDir . '/programs/AppObjectInterface.php', |
|
13 | - 'Capwelton\\LibApp\\AppUiObject' => $baseDir . '/programs/AppUiObject.php', |
|
14 | - 'Capwelton\\LibApp\\Ctrl\\AppComponentCtrlRecord' => $baseDir . '/programs/Ctrl/AppComponentCtrlRecord.php', |
|
15 | - 'Capwelton\\LibApp\\Ctrl\\AppController' => $baseDir . '/programs/Ctrl/AppController.php', |
|
16 | - 'Capwelton\\LibApp\\Ctrl\\AppCtrlAddonConfiguration' => $baseDir . '/programs/Ctrl/AppCtrlAddonConfiguration.php', |
|
17 | - 'Capwelton\\LibApp\\Ctrl\\AppCtrlConfiguration' => $baseDir . '/programs/Ctrl/AppCtrlConfiguration.php', |
|
18 | - 'Capwelton\\LibApp\\Ctrl\\AppCtrlCustomContainer' => $baseDir . '/programs/Ctrl/AppCtrlCustomContainer.php', |
|
19 | - 'Capwelton\\LibApp\\Ctrl\\AppCtrlCustomField' => $baseDir . '/programs/Ctrl/AppCtrlCustomField.php', |
|
20 | - 'Capwelton\\LibApp\\Ctrl\\AppCtrlCustomSection' => $baseDir . '/programs/Ctrl/AppCtrlCustomSection.php', |
|
21 | - 'Capwelton\\LibApp\\Ctrl\\AppCtrlNotification' => $baseDir . '/programs/Ctrl/AppCtrlNotification.php', |
|
22 | - 'Capwelton\\LibApp\\Ctrl\\AppCtrlRecord' => $baseDir . '/programs/Ctrl/AppCtrlRecord.php', |
|
23 | - 'Capwelton\\LibApp\\Ctrl\\AppCtrlSSE' => $baseDir . '/programs/Ctrl/AppCtrlSSE.php', |
|
24 | - 'Capwelton\\LibApp\\Exceptions\\AppAccessException' => $baseDir . '/programs/Exceptions/AppAccessException.php', |
|
25 | - 'Capwelton\\LibApp\\Exceptions\\AppDeletedRecordException' => $baseDir . '/programs/Exceptions/AppDeletedRecordException.php', |
|
26 | - 'Capwelton\\LibApp\\Exceptions\\AppEmptyResultException' => $baseDir . '/programs/Exceptions/AppEmptyResultException.php', |
|
27 | - 'Capwelton\\LibApp\\Exceptions\\AppException' => $baseDir . '/programs/Exceptions/AppException.php', |
|
28 | - 'Capwelton\\LibApp\\Exceptions\\AppNotFoundException' => $baseDir . '/programs/Exceptions/AppNotFoundException.php', |
|
29 | - 'Capwelton\\LibApp\\Exceptions\\AppSaveException' => $baseDir . '/programs/Exceptions/AppSaveException.php', |
|
30 | - 'Capwelton\\LibApp\\Exceptions\\AppUnknownActionException' => $baseDir . '/programs/Exceptions/AppUnknownActionException.php', |
|
31 | - 'Capwelton\\LibApp\\Func_App' => $baseDir . '/programs/Func_App.php', |
|
32 | - 'Capwelton\\LibApp\\Interfaces\\AppComponentDefinition' => $baseDir . '/programs/Interfaces/AppComponentDefinition.php', |
|
33 | - 'Capwelton\\LibApp\\Interfaces\\AppComponentUi' => $baseDir . '/programs/Interfaces/AppComponentUi.php', |
|
34 | - 'Capwelton\\LibApp\\Interfaces\\AppCtrlRecordInterface' => $baseDir . '/programs/Interfaces/AppCtrlRecordInterface.php', |
|
35 | - 'Capwelton\\LibApp\\Portlet\\AppPortlet' => $baseDir . '/programs/Portlet/AppPortlet.php', |
|
36 | - 'Capwelton\\LibApp\\Portlet\\AppPortletDefinition' => $baseDir . '/programs/Portlet/AppPortletDefinition.php', |
|
37 | - 'Capwelton\\LibApp\\Portlet\\AppPortletUi' => $baseDir . '/programs/Portlet/AppPortletUi.php', |
|
38 | - 'Capwelton\\LibApp\\Portlet\\Func_PortletBackend_App' => $baseDir . '/programs/Portlet/Func_PortletBackend_App.php', |
|
39 | - 'Capwelton\\LibApp\\Portlet\\Notifications\\AppPortletDefinitionNotifications' => $baseDir . '/programs/Portlet/Notifications/AppPortletDefinitionNotifications.php', |
|
40 | - 'Capwelton\\LibApp\\Portlet\\Notifications\\AppPortletUiNotifications' => $baseDir . '/programs/Portlet/Notifications/AppPortletUiNotifications.php', |
|
41 | - 'Capwelton\\LibApp\\Set\\AppCustomContainer' => $baseDir . '/programs/Set/AppCustomContainer.php', |
|
42 | - 'Capwelton\\LibApp\\Set\\AppCustomContainerSet' => $baseDir . '/programs/Set/AppCustomContainerSet.php', |
|
43 | - 'Capwelton\\LibApp\\Set\\AppCustomField' => $baseDir . '/programs/Set/AppCustomField.php', |
|
44 | - 'Capwelton\\LibApp\\Set\\AppCustomFieldSet' => $baseDir . '/programs/Set/AppCustomFieldSet.php', |
|
45 | - 'Capwelton\\LibApp\\Set\\AppCustomSection' => $baseDir . '/programs/Set/AppCustomSection.php', |
|
46 | - 'Capwelton\\LibApp\\Set\\AppCustomSectionSet' => $baseDir . '/programs/Set/AppCustomSectionSet.php', |
|
47 | - 'Capwelton\\LibApp\\Set\\AppLink' => $baseDir . '/programs/Set/AppLink.php', |
|
48 | - 'Capwelton\\LibApp\\Set\\AppLinkSet' => $baseDir . '/programs/Set/AppLinkSet.php', |
|
49 | - 'Capwelton\\LibApp\\Set\\AppLog' => $baseDir . '/programs/Set/AppLog.php', |
|
50 | - 'Capwelton\\LibApp\\Set\\AppLogSet' => $baseDir . '/programs/Set/AppLogSet.php', |
|
51 | - 'Capwelton\\LibApp\\Set\\AppNotification' => $baseDir . '/programs/Set/AppNotification.php', |
|
52 | - 'Capwelton\\LibApp\\Set\\AppNotificationSet' => $baseDir . '/programs/Set/AppNotificationSet.php', |
|
53 | - 'Capwelton\\LibApp\\Set\\AppRecord' => $baseDir . '/programs/Set/AppRecord.php', |
|
54 | - 'Capwelton\\LibApp\\Set\\AppRecordSet' => $baseDir . '/programs/Set/AppRecordSet.php', |
|
55 | - 'Capwelton\\LibApp\\Set\\AppRole' => $baseDir . '/programs/Set/AppRole.php', |
|
56 | - 'Capwelton\\LibApp\\Set\\AppRoleAccess' => $baseDir . '/programs/Set/AppRoleAccess.php', |
|
57 | - 'Capwelton\\LibApp\\Set\\AppRoleAccessSet' => $baseDir . '/programs/Set/AppRoleAccessSet.php', |
|
58 | - 'Capwelton\\LibApp\\Set\\AppRoleSet' => $baseDir . '/programs/Set/AppRoleSet.php', |
|
59 | - 'Capwelton\\LibApp\\Set\\AppSSE' => $baseDir . '/programs/Set/AppSSE.php', |
|
60 | - 'Capwelton\\LibApp\\Set\\AppSSESet' => $baseDir . '/programs/Set/AppSSESet.php', |
|
61 | - 'Capwelton\\LibApp\\Set\\AppTraceableRecord' => $baseDir . '/programs/Set/AppTraceableRecord.php', |
|
62 | - 'Capwelton\\LibApp\\Set\\AppTraceableRecordSet' => $baseDir . '/programs/Set/AppTraceableRecordSet.php', |
|
63 | - 'Capwelton\\LibApp\\Set\\RecordAfterSaveEvent' => $baseDir . '/programs/Set/RecordAfterSaveEvent.php', |
|
64 | - 'Capwelton\\LibApp\\Set\\RecordBeforeSaveEvent' => $baseDir . '/programs/Set/RecordBeforeSaveEvent.php', |
|
65 | - 'Capwelton\\LibApp\\Ui\\AppCardFrame' => $baseDir . '/programs/Ui/AppCardFrame.php', |
|
66 | - 'Capwelton\\LibApp\\Ui\\AppCriteriaEditor' => $baseDir . '/programs/Ui/AppCriteriaEditor.php', |
|
67 | - 'Capwelton\\LibApp\\Ui\\AppCustomFieldEditor' => $baseDir . '/programs/Ui/AppCustomFieldEditor.php', |
|
68 | - 'Capwelton\\LibApp\\Ui\\AppCustomFieldTableView' => $baseDir . '/programs/Ui/AppCustomFieldTableView.php', |
|
69 | - 'Capwelton\\LibApp\\Ui\\AppEditor' => $baseDir . '/programs/Ui/AppEditor.php', |
|
70 | - 'Capwelton\\LibApp\\Ui\\AppExportSelectEditor' => $baseDir . '/programs/Ui/AppExportSelectEditor.php', |
|
71 | - 'Capwelton\\LibApp\\Ui\\AppRecordEditor' => $baseDir . '/programs/Ui/AppRecordEditor.php', |
|
72 | - 'Capwelton\\LibApp\\Ui\\AppRecordFrame' => $baseDir . '/programs/Ui/AppRecordFrame.php', |
|
73 | - 'Capwelton\\LibApp\\Ui\\AppRecordView' => $baseDir . '/programs/Ui/AppRecordView.php', |
|
74 | - 'Capwelton\\LibApp\\Ui\\AppTableModelView' => $baseDir . '/programs/Ui/AppTableModelView.php', |
|
75 | - 'Capwelton\\LibApp\\Ui\\AppTableModelViewColumnSettingsEditor' => $baseDir . '/programs/Ui/AppTableModelViewColumnSettingsEditor.php', |
|
76 | - 'Capwelton\\LibApp\\Ui\\AppToolbar' => $baseDir . '/programs/Ui/AppToolbar.php', |
|
77 | - 'Capwelton\\LibApp\\Ui\\AppUi' => $baseDir . '/programs/Ui/AppUi.php', |
|
78 | - 'Capwelton\\LibApp\\Ui\\Items\\AppChip' => $baseDir . '/programs/Ui/Items/AppChip.php', |
|
79 | - 'Capwelton\\LibApp\\Ui\\Items\\AppShape' => $baseDir . '/programs/Ui/Items/AppShape.php', |
|
80 | - 'Capwelton\\LibApp\\Ui\\Items\\AppShapeCircle' => $baseDir . '/programs/Ui/Items/AppShapeCircle.php', |
|
81 | - 'Capwelton\\LibApp\\Ui\\Items\\AppShapeSquare' => $baseDir . '/programs/Ui/Items/AppShapeSquare.php', |
|
82 | - 'Capwelton\\LibApp\\Ui\\Items\\AppShapeTriangle' => $baseDir . '/programs/Ui/Items/AppShapeTriangle.php', |
|
83 | - 'Capwelton\\LibApp\\Ui\\Page\\AppErrorPage' => $baseDir . '/programs/Ui/Page/AppErrorPage.php', |
|
84 | - 'Capwelton\\LibApp\\Ui\\Page\\AppPage' => $baseDir . '/programs/Ui/Page/AppPage.php', |
|
85 | - 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', |
|
9 | + 'Capwelton\\LibApp\\AppAccessManager' => $baseDir.'/programs/AppAccessManager.php', |
|
10 | + 'Capwelton\\LibApp\\AppComponent' => $baseDir.'/programs/AppComponent.php', |
|
11 | + 'Capwelton\\LibApp\\AppObject' => $baseDir.'/programs/AppObject.php', |
|
12 | + 'Capwelton\\LibApp\\AppObjectInterface' => $baseDir.'/programs/AppObjectInterface.php', |
|
13 | + 'Capwelton\\LibApp\\AppUiObject' => $baseDir.'/programs/AppUiObject.php', |
|
14 | + 'Capwelton\\LibApp\\Ctrl\\AppComponentCtrlRecord' => $baseDir.'/programs/Ctrl/AppComponentCtrlRecord.php', |
|
15 | + 'Capwelton\\LibApp\\Ctrl\\AppController' => $baseDir.'/programs/Ctrl/AppController.php', |
|
16 | + 'Capwelton\\LibApp\\Ctrl\\AppCtrlAddonConfiguration' => $baseDir.'/programs/Ctrl/AppCtrlAddonConfiguration.php', |
|
17 | + 'Capwelton\\LibApp\\Ctrl\\AppCtrlConfiguration' => $baseDir.'/programs/Ctrl/AppCtrlConfiguration.php', |
|
18 | + 'Capwelton\\LibApp\\Ctrl\\AppCtrlCustomContainer' => $baseDir.'/programs/Ctrl/AppCtrlCustomContainer.php', |
|
19 | + 'Capwelton\\LibApp\\Ctrl\\AppCtrlCustomField' => $baseDir.'/programs/Ctrl/AppCtrlCustomField.php', |
|
20 | + 'Capwelton\\LibApp\\Ctrl\\AppCtrlCustomSection' => $baseDir.'/programs/Ctrl/AppCtrlCustomSection.php', |
|
21 | + 'Capwelton\\LibApp\\Ctrl\\AppCtrlNotification' => $baseDir.'/programs/Ctrl/AppCtrlNotification.php', |
|
22 | + 'Capwelton\\LibApp\\Ctrl\\AppCtrlRecord' => $baseDir.'/programs/Ctrl/AppCtrlRecord.php', |
|
23 | + 'Capwelton\\LibApp\\Ctrl\\AppCtrlSSE' => $baseDir.'/programs/Ctrl/AppCtrlSSE.php', |
|
24 | + 'Capwelton\\LibApp\\Exceptions\\AppAccessException' => $baseDir.'/programs/Exceptions/AppAccessException.php', |
|
25 | + 'Capwelton\\LibApp\\Exceptions\\AppDeletedRecordException' => $baseDir.'/programs/Exceptions/AppDeletedRecordException.php', |
|
26 | + 'Capwelton\\LibApp\\Exceptions\\AppEmptyResultException' => $baseDir.'/programs/Exceptions/AppEmptyResultException.php', |
|
27 | + 'Capwelton\\LibApp\\Exceptions\\AppException' => $baseDir.'/programs/Exceptions/AppException.php', |
|
28 | + 'Capwelton\\LibApp\\Exceptions\\AppNotFoundException' => $baseDir.'/programs/Exceptions/AppNotFoundException.php', |
|
29 | + 'Capwelton\\LibApp\\Exceptions\\AppSaveException' => $baseDir.'/programs/Exceptions/AppSaveException.php', |
|
30 | + 'Capwelton\\LibApp\\Exceptions\\AppUnknownActionException' => $baseDir.'/programs/Exceptions/AppUnknownActionException.php', |
|
31 | + 'Capwelton\\LibApp\\Func_App' => $baseDir.'/programs/Func_App.php', |
|
32 | + 'Capwelton\\LibApp\\Interfaces\\AppComponentDefinition' => $baseDir.'/programs/Interfaces/AppComponentDefinition.php', |
|
33 | + 'Capwelton\\LibApp\\Interfaces\\AppComponentUi' => $baseDir.'/programs/Interfaces/AppComponentUi.php', |
|
34 | + 'Capwelton\\LibApp\\Interfaces\\AppCtrlRecordInterface' => $baseDir.'/programs/Interfaces/AppCtrlRecordInterface.php', |
|
35 | + 'Capwelton\\LibApp\\Portlet\\AppPortlet' => $baseDir.'/programs/Portlet/AppPortlet.php', |
|
36 | + 'Capwelton\\LibApp\\Portlet\\AppPortletDefinition' => $baseDir.'/programs/Portlet/AppPortletDefinition.php', |
|
37 | + 'Capwelton\\LibApp\\Portlet\\AppPortletUi' => $baseDir.'/programs/Portlet/AppPortletUi.php', |
|
38 | + 'Capwelton\\LibApp\\Portlet\\Func_PortletBackend_App' => $baseDir.'/programs/Portlet/Func_PortletBackend_App.php', |
|
39 | + 'Capwelton\\LibApp\\Portlet\\Notifications\\AppPortletDefinitionNotifications' => $baseDir.'/programs/Portlet/Notifications/AppPortletDefinitionNotifications.php', |
|
40 | + 'Capwelton\\LibApp\\Portlet\\Notifications\\AppPortletUiNotifications' => $baseDir.'/programs/Portlet/Notifications/AppPortletUiNotifications.php', |
|
41 | + 'Capwelton\\LibApp\\Set\\AppCustomContainer' => $baseDir.'/programs/Set/AppCustomContainer.php', |
|
42 | + 'Capwelton\\LibApp\\Set\\AppCustomContainerSet' => $baseDir.'/programs/Set/AppCustomContainerSet.php', |
|
43 | + 'Capwelton\\LibApp\\Set\\AppCustomField' => $baseDir.'/programs/Set/AppCustomField.php', |
|
44 | + 'Capwelton\\LibApp\\Set\\AppCustomFieldSet' => $baseDir.'/programs/Set/AppCustomFieldSet.php', |
|
45 | + 'Capwelton\\LibApp\\Set\\AppCustomSection' => $baseDir.'/programs/Set/AppCustomSection.php', |
|
46 | + 'Capwelton\\LibApp\\Set\\AppCustomSectionSet' => $baseDir.'/programs/Set/AppCustomSectionSet.php', |
|
47 | + 'Capwelton\\LibApp\\Set\\AppLink' => $baseDir.'/programs/Set/AppLink.php', |
|
48 | + 'Capwelton\\LibApp\\Set\\AppLinkSet' => $baseDir.'/programs/Set/AppLinkSet.php', |
|
49 | + 'Capwelton\\LibApp\\Set\\AppLog' => $baseDir.'/programs/Set/AppLog.php', |
|
50 | + 'Capwelton\\LibApp\\Set\\AppLogSet' => $baseDir.'/programs/Set/AppLogSet.php', |
|
51 | + 'Capwelton\\LibApp\\Set\\AppNotification' => $baseDir.'/programs/Set/AppNotification.php', |
|
52 | + 'Capwelton\\LibApp\\Set\\AppNotificationSet' => $baseDir.'/programs/Set/AppNotificationSet.php', |
|
53 | + 'Capwelton\\LibApp\\Set\\AppRecord' => $baseDir.'/programs/Set/AppRecord.php', |
|
54 | + 'Capwelton\\LibApp\\Set\\AppRecordSet' => $baseDir.'/programs/Set/AppRecordSet.php', |
|
55 | + 'Capwelton\\LibApp\\Set\\AppRole' => $baseDir.'/programs/Set/AppRole.php', |
|
56 | + 'Capwelton\\LibApp\\Set\\AppRoleAccess' => $baseDir.'/programs/Set/AppRoleAccess.php', |
|
57 | + 'Capwelton\\LibApp\\Set\\AppRoleAccessSet' => $baseDir.'/programs/Set/AppRoleAccessSet.php', |
|
58 | + 'Capwelton\\LibApp\\Set\\AppRoleSet' => $baseDir.'/programs/Set/AppRoleSet.php', |
|
59 | + 'Capwelton\\LibApp\\Set\\AppSSE' => $baseDir.'/programs/Set/AppSSE.php', |
|
60 | + 'Capwelton\\LibApp\\Set\\AppSSESet' => $baseDir.'/programs/Set/AppSSESet.php', |
|
61 | + 'Capwelton\\LibApp\\Set\\AppTraceableRecord' => $baseDir.'/programs/Set/AppTraceableRecord.php', |
|
62 | + 'Capwelton\\LibApp\\Set\\AppTraceableRecordSet' => $baseDir.'/programs/Set/AppTraceableRecordSet.php', |
|
63 | + 'Capwelton\\LibApp\\Set\\RecordAfterSaveEvent' => $baseDir.'/programs/Set/RecordAfterSaveEvent.php', |
|
64 | + 'Capwelton\\LibApp\\Set\\RecordBeforeSaveEvent' => $baseDir.'/programs/Set/RecordBeforeSaveEvent.php', |
|
65 | + 'Capwelton\\LibApp\\Ui\\AppCardFrame' => $baseDir.'/programs/Ui/AppCardFrame.php', |
|
66 | + 'Capwelton\\LibApp\\Ui\\AppCriteriaEditor' => $baseDir.'/programs/Ui/AppCriteriaEditor.php', |
|
67 | + 'Capwelton\\LibApp\\Ui\\AppCustomFieldEditor' => $baseDir.'/programs/Ui/AppCustomFieldEditor.php', |
|
68 | + 'Capwelton\\LibApp\\Ui\\AppCustomFieldTableView' => $baseDir.'/programs/Ui/AppCustomFieldTableView.php', |
|
69 | + 'Capwelton\\LibApp\\Ui\\AppEditor' => $baseDir.'/programs/Ui/AppEditor.php', |
|
70 | + 'Capwelton\\LibApp\\Ui\\AppExportSelectEditor' => $baseDir.'/programs/Ui/AppExportSelectEditor.php', |
|
71 | + 'Capwelton\\LibApp\\Ui\\AppRecordEditor' => $baseDir.'/programs/Ui/AppRecordEditor.php', |
|
72 | + 'Capwelton\\LibApp\\Ui\\AppRecordFrame' => $baseDir.'/programs/Ui/AppRecordFrame.php', |
|
73 | + 'Capwelton\\LibApp\\Ui\\AppRecordView' => $baseDir.'/programs/Ui/AppRecordView.php', |
|
74 | + 'Capwelton\\LibApp\\Ui\\AppTableModelView' => $baseDir.'/programs/Ui/AppTableModelView.php', |
|
75 | + 'Capwelton\\LibApp\\Ui\\AppTableModelViewColumnSettingsEditor' => $baseDir.'/programs/Ui/AppTableModelViewColumnSettingsEditor.php', |
|
76 | + 'Capwelton\\LibApp\\Ui\\AppToolbar' => $baseDir.'/programs/Ui/AppToolbar.php', |
|
77 | + 'Capwelton\\LibApp\\Ui\\AppUi' => $baseDir.'/programs/Ui/AppUi.php', |
|
78 | + 'Capwelton\\LibApp\\Ui\\Items\\AppChip' => $baseDir.'/programs/Ui/Items/AppChip.php', |
|
79 | + 'Capwelton\\LibApp\\Ui\\Items\\AppShape' => $baseDir.'/programs/Ui/Items/AppShape.php', |
|
80 | + 'Capwelton\\LibApp\\Ui\\Items\\AppShapeCircle' => $baseDir.'/programs/Ui/Items/AppShapeCircle.php', |
|
81 | + 'Capwelton\\LibApp\\Ui\\Items\\AppShapeSquare' => $baseDir.'/programs/Ui/Items/AppShapeSquare.php', |
|
82 | + 'Capwelton\\LibApp\\Ui\\Items\\AppShapeTriangle' => $baseDir.'/programs/Ui/Items/AppShapeTriangle.php', |
|
83 | + 'Capwelton\\LibApp\\Ui\\Page\\AppErrorPage' => $baseDir.'/programs/Ui/Page/AppErrorPage.php', |
|
84 | + 'Capwelton\\LibApp\\Ui\\Page\\AppPage' => $baseDir.'/programs/Ui/Page/AppPage.php', |
|
85 | + 'Composer\\InstalledVersions' => $vendorDir.'/composer/InstalledVersions.php', |
|
86 | 86 | ); |