@@ -675,7 +675,7 @@ |
||
675 | 675 | { |
676 | 676 | $quickCreateFieldList = []; |
677 | 677 | foreach ($this->getFieldsByBlocks() as $blockFields) { |
678 | - uksort($blockFields, function ($a, $b) use ($blockFields) { |
|
678 | + uksort($blockFields, function($a, $b) use ($blockFields) { |
|
679 | 679 | if ($blockFields[$a]->get('quicksequence') === $blockFields[$b]->get('quicksequence')) { |
680 | 680 | return 0; |
681 | 681 | } |
@@ -185,7 +185,7 @@ |
||
185 | 185 | if (self::IGNORE_MODULE === $tabid) { |
186 | 186 | $permittedTabIdList = \vtlib\Deprecated::getPermittedModuleIdList(); |
187 | 187 | if (!empty($permittedTabIdList)) { |
188 | - $permittedTabIdList[] = 0; // Added to support one link for all modules |
|
188 | + $permittedTabIdList[] = 0; // Added to support one link for all modules |
|
189 | 189 | foreach ($permittedTabIdList as $moduleId) { |
190 | 190 | foreach ($type as $typ) { |
191 | 191 | if (isset($rows[$moduleId][$typ])) { |
@@ -619,7 +619,7 @@ discard block |
||
619 | 619 | $colors = \App\Fields\Picklist::getColors($fieldName); |
620 | 620 | $this->colorsFrom = 'picklist'; |
621 | 621 | $this->colorsFromRow = 'picklist_id'; |
622 | - $this->iterateAllRows(function ($row, $groupValue, $dividingValue, $rowIndex) use ($colors) { |
|
622 | + $this->iterateAllRows(function($row, $groupValue, $dividingValue, $rowIndex) use ($colors) { |
|
623 | 623 | if (isset($colors[$row['picklist_id']])) { |
624 | 624 | $this->colors[$row['picklist_id']] = $colors[$row['picklist_id']]; |
625 | 625 | } |
@@ -634,7 +634,7 @@ discard block |
||
634 | 634 | $this->colorsFrom = 'filters'; |
635 | 635 | $this->colorsFromRow = 'color'; |
636 | 636 | $colors = \App\Colors::getAllFilterColors(); |
637 | - $this->iterateAllRows(function (&$row, $groupValue, $dividingValue, $rowIndex) use ($colors) { |
|
637 | + $this->iterateAllRows(function(&$row, $groupValue, $dividingValue, $rowIndex) use ($colors) { |
|
638 | 638 | $this->colors[$dividingValue] = $colors[$this->filterIds[$dividingValue]] ?? null; |
639 | 639 | }); |
640 | 640 | } |
@@ -646,7 +646,7 @@ discard block |
||
646 | 646 | { |
647 | 647 | $this->colorsFrom = 'assigned_user_id'; |
648 | 648 | $this->colorsFromRow = 'assigned_user_id'; |
649 | - $this->iterateAllRows(function ($row, $groupValue, $dividingValue, $rowIndex) { |
|
649 | + $this->iterateAllRows(function($row, $groupValue, $dividingValue, $rowIndex) { |
|
650 | 650 | $this->colors[$row['assigned_user_id']] = \App\Fields\Owner::getColor($row['assigned_user_id']); |
651 | 651 | }); |
652 | 652 | } |
@@ -658,7 +658,7 @@ discard block |
||
658 | 658 | { |
659 | 659 | $this->colorsFrom = 'record_id'; |
660 | 660 | $this->colorsFromRow = 'id'; |
661 | - $this->iterateAllRows(function ($row, $groupValue, $dividingValue, $rowIndex) { |
|
661 | + $this->iterateAllRows(function($row, $groupValue, $dividingValue, $rowIndex) { |
|
662 | 662 | $this->colors[$row['id']] = \App\Colors::getRandomColor('from_id_' . $row['id']); |
663 | 663 | }); |
664 | 664 | } |
@@ -670,7 +670,7 @@ discard block |
||
670 | 670 | { |
671 | 671 | $this->colorsFrom = 'record_number'; |
672 | 672 | $this->colorsFromRow = 'record_number'; |
673 | - $this->iterateAllRows(function ($row, $groupValue, $dividingValue, $rowIndex) { |
|
673 | + $this->iterateAllRows(function($row, $groupValue, $dividingValue, $rowIndex) { |
|
674 | 674 | $this->colors[$groupValue] = \App\Colors::getRandomColor('generated_' . $groupValue); |
675 | 675 | }); |
676 | 676 | } |
@@ -895,7 +895,7 @@ discard block |
||
895 | 895 | $firstReturnValueForSort = 1; |
896 | 896 | $secondReturnValueForSort = -1; |
897 | 897 | } |
898 | - uksort($dataForSort, function ($a, $b) use ($dataForSort, $firstReturnValueForSort, $secondReturnValueForSort) { |
|
898 | + uksort($dataForSort, function($a, $b) use ($dataForSort, $firstReturnValueForSort, $secondReturnValueForSort) { |
|
899 | 899 | if ($dataForSort[$a]['avg'] === $dataForSort[$b]['avg']) { |
900 | 900 | return 0; |
901 | 901 | } |
@@ -998,7 +998,7 @@ discard block |
||
998 | 998 | $this->calculateAverage(); |
999 | 999 | $this->normalizeData(); |
1000 | 1000 | $this->setColorsFrom($this->findOutColorsFromRows()); |
1001 | - $this->iterateAllRows(function ($row, $groupValue, $dividingValue, $rowIndex) { |
|
1001 | + $this->iterateAllRows(function($row, $groupValue, $dividingValue, $rowIndex) { |
|
1002 | 1002 | $this->setColorFromRow($row, $groupValue, $dividingValue); |
1003 | 1003 | }); |
1004 | 1004 | return $this->data; |
@@ -178,7 +178,7 @@ |
||
178 | 178 | ->execute(); |
179 | 179 | } |
180 | 180 | \App\Log::trace('Exit OSSMail_Record_Model::imapConnect() method ...'); |
181 | - register_shutdown_function(function () use ($mbox, $user) { |
|
181 | + register_shutdown_function(function() use ($mbox, $user) { |
|
182 | 182 | \App\Log::beginProfile('OSSMail_Record_Model|imap_close|' . $user, 'Mail|IMAP'); |
183 | 183 | imap_close($mbox); |
184 | 184 | \App\Log::endProfile('OSSMail_Record_Model|imap_close|' . $user, 'Mail|IMAP'); |
@@ -65,7 +65,7 @@ |
||
65 | 65 | $moduleName = $request->getModule(); |
66 | 66 | $userId = $request->getInteger('userid'); |
67 | 67 | $status = $request->getInteger('status'); |
68 | - if (!\in_array($status, [OSSMail_Record_Model::MAIL_BOX_STATUS_ACTIVE, OSSMail_Record_Model::MAIL_BOX_STATUS_DISABLED])) { |
|
68 | + if (!\in_array($status, [OSSMail_Record_Model::MAIL_BOX_STATUS_ACTIVE, OSSMail_Record_Model::MAIL_BOX_STATUS_DISABLED])) { |
|
69 | 69 | throw new \App\Exceptions\IllegalValue('ERR_NOT_ALLOWED_VALUE||' . $status, 406); |
70 | 70 | } |
71 | 71 | if ($userId) { |
@@ -92,7 +92,7 @@ |
||
92 | 92 | $dataReader->close(); |
93 | 93 | |
94 | 94 | if ($decryptInstance->getQueryGenerator((int) $pauser->getValue())->createQuery()->exists()) { |
95 | - (new \App\BatchMethod(['method' => __CLASS__ . '::recalculatePasswords', 'params' => [$method, $password, $vector, $target, microtime()]]))->save(); |
|
95 | + (new \App\BatchMethod(['method' => __CLASS__ . '::recalculatePasswords', 'params' => [$method, $password, $vector, $target, microtime()]]))->save(); |
|
96 | 96 | } else { |
97 | 97 | (new \App\ConfigFile('module', \App\Module::getModuleName($target))) |
98 | 98 | ->set('encryptionMethod', $method) |
@@ -10,14 +10,14 @@ |
||
10 | 10 | 'encryptionPass' => [ |
11 | 11 | 'default' => 'yeti', |
12 | 12 | 'description' => 'Key to encrypt passwords, changing the key results in the loss of all encrypted data.', |
13 | - 'validation' => function () { |
|
13 | + 'validation' => function() { |
|
14 | 14 | return true; |
15 | 15 | } |
16 | 16 | ], |
17 | 17 | 'encryptionMethod' => [ |
18 | 18 | 'default' => 'aes-256-cbc', |
19 | 19 | 'description' => 'Encryption method.', |
20 | - 'validation' => function () { |
|
20 | + 'validation' => function() { |
|
21 | 21 | $arg = func_get_arg(0); |
22 | 22 | return empty($arg) || ($arg && \in_array($arg, \App\Encryption::getMethods())); |
23 | 23 | } |
@@ -1,3 +1,3 @@ |
||
1 | -<?php $tab_seq_array=[1=>0,3=>0,4=>0,6=>0,7=>0,8=>0,9=>0,13=>0,14=>0,15=>0,18=>0,19=>0,24=>0,26=>0,29=>0,30=>0,32=>0,34=>0,35=>0,37=>0,40=>0,41=>0,42=>0,43=>0,45=>0,48=>1,51=>0,53=>0,54=>0,57=>0,58=>0,59=>0,60=>1,61=>0,73=>0,74=>0,75=>0,78=>0,79=>0,80=>0,81=>0,82=>0,83=>0,84=>0,85=>0,86=>0,87=>0,88=>0,89=>0,90=>0,91=>0,92=>0,93=>0,94=>0,95=>0,96=>0,97=>0,98=>0,99=>0,100=>0,101=>0,102=>0,103=>0,104=>0,105=>0,106=>0,107=>0,108=>0,109=>0,110=>0,111=>0,112=>0,113=>0,114=>0,115=>0,116=>0,117=>0,118=>0,119=>0,120=>0,121=>0,122=>0,123=>0,124=>0,125=>0,126=>0,127=>0,128=>0,129=>0,130=>0,131=>0,132=>0,133=>0,134=>0,135=>0]; |
|
2 | -return ['tabId'=>['Dashboard'=>1,'Home'=>3,'Contacts'=>4,'Accounts'=>6,'Leads'=>7,'Documents'=>8,'Calendar'=>9,'HelpDesk'=>13,'Products'=>14,'Faq'=>15,'Vendors'=>18,'PriceBooks'=>19,'Rss'=>24,'Campaigns'=>26,'Users'=>29,'Import'=>30,'ModTracker'=>32,'ServiceContracts'=>34,'Services'=>35,'Assets'=>37,'ModComments'=>40,'ProjectMilestone'=>41,'ProjectTask'=>42,'Project'=>43,'SMSNotifier'=>45,'OSSMail'=>48,'OSSTimeControl'=>51,'OSSMailScanner'=>53,'OSSMailView'=>54,'OSSOutsourcedServices'=>57,'OSSSoldServices'=>58,'OutsourcedProducts'=>59,'OSSPasswords'=>60,'OSSEmployees'=>61,'ApiAddress'=>73,'CallHistory'=>74,'Ideas'=>75,'HolidaysEntitlement'=>78,'PaymentsIn'=>79,'PaymentsOut'=>80,'LettersIn'=>81,'LettersOut'=>82,'Announcements'=>83,'Reservations'=>84,'SQuoteEnquiries'=>85,'SSalesProcesses'=>86,'SRequirementsCards'=>87,'SCalculations'=>88,'SQuotes'=>89,'SSingleOrders'=>90,'SRecurringOrders'=>91,'Partners'=>92,'Competition'=>93,'FBookkeeping'=>94,'FInvoice'=>95,'KnowledgeBase'=>96,'IStorages'=>97,'IGRN'=>98,'FInvoiceProforma'=>99,'IGDN'=>100,'IIDN'=>101,'IGIN'=>102,'IPreOrder'=>103,'ISTDN'=>104,'ISTN'=>105,'ISTRN'=>106,'FCorectingInvoice'=>107,'IGRNC'=>108,'IGDNC'=>109,'OpenStreetMap'=>110,'Notification'=>111,'EmailTemplates'=>112,'CFixedAssets'=>113,'CInternalTickets'=>114,'FInvoiceCost'=>115,'CMileageLogbook'=>116,'SVendorEnquiries'=>117,'Chat'=>118,'MultiCompany'=>119,'PermissionInspector'=>120,'DataSetRegister'=>121,'ActivityRegister'=>122,'LocationRegister'=>123,'IncidentRegister'=>124,'AuditRegister'=>125,'RecycleBin'=>126,'Approvals'=>127,'ApprovalsRegister'=>128,'MailIntegration'=>129,'Locations'=>130,'Occurrences'=>131,'ProductCategory'=>132,'BankAccounts'=>133,'Queue'=>134,'Passwords'=>135],'tabPresence'=>[1=>0,3=>0,4=>0,6=>0,7=>0,8=>0,9=>0,13=>0,14=>0,15=>0,18=>0,19=>0,24=>0,26=>0,29=>0,30=>0,32=>0,34=>0,35=>0,37=>0,40=>0,41=>0,42=>0,43=>0,45=>0,48=>1,51=>0,53=>0,54=>0,57=>0,58=>0,59=>0,60=>1,61=>0,73=>0,74=>0,75=>0,78=>0,79=>0,80=>0,81=>0,82=>0,83=>0,84=>0,85=>0,86=>0,87=>0,88=>0,89=>0,90=>0,91=>0,92=>0,93=>0,94=>0,95=>0,96=>0,97=>0,98=>0,99=>0,100=>0,101=>0,102=>0,103=>0,104=>0,105=>0,106=>0,107=>0,108=>0,109=>0,110=>0,111=>0,112=>0,113=>0,114=>0,115=>0,116=>0,117=>0,118=>0,119=>0,120=>0,121=>0,122=>0,123=>0,124=>0,125=>0,126=>0,127=>0,128=>0,129=>0,130=>0,131=>0,132=>0,133=>0,134=>0,135=>0],'tabOwnedby'=>[1=>1,3=>1,4=>0,6=>0,7=>0,8=>0,9=>0,13=>0,14=>0,15=>1,18=>0,19=>1,24=>1,26=>0,29=>1,30=>0,32=>0,34=>0,35=>0,37=>0,40=>0,41=>0,42=>0,43=>0,45=>0,48=>0,51=>0,53=>0,54=>0,57=>0,58=>0,59=>0,60=>0,61=>0,73=>0,74=>0,75=>0,78=>0,79=>0,80=>0,81=>0,82=>0,83=>0,84=>0,85=>0,86=>0,87=>0,88=>0,89=>0,90=>0,91=>0,92=>0,93=>0,94=>0,95=>0,96=>0,97=>0,98=>0,99=>0,100=>0,101=>0,102=>0,103=>0,104=>0,105=>0,106=>0,107=>0,108=>0,109=>0,110=>0,111=>0,112=>0,113=>0,114=>0,115=>0,116=>0,117=>0,118=>0,119=>0,120=>0,121=>0,122=>0,123=>0,124=>0,125=>0,126=>0,127=>0,128=>0,129=>0,130=>0,131=>0,132=>0,133=>0,134=>0,135=>0],'actionId'=>['Save'=>0,'SavePriceBook'=>0,'SaveVendor'=>0,'DetailViewAjax'=>1,'EditView'=>1,'PriceBookEditView'=>1,'QuickCreate'=>1,'VendorEditView'=>1,'Delete'=>2,'DeletePriceBook'=>2,'DeleteVendor'=>2,'index'=>3,'Popup'=>3,'DetailView'=>4,'PriceBookDetailView'=>4,'VendorDetailView'=>4,'Import'=>5,'Export'=>6,'CreateView'=>7,'Merge'=>8,'ConvertLead'=>9,'ModTracker'=>13,'CreateCustomFilter'=>14,'DuplicateRecord'=>15,'EditableComments'=>16,'MassEdit'=>17,'MassDelete'=>18,'MassAddComment'=>19,'MassComposeEmail'=>20,'MassSendSMS'=>21,'MassTransferOwnership'=>22,'MassMoveDocuments'=>23,'ReadRecord'=>24,'WorkflowTrigger'=>25,'Dashboard'=>26,'CreateDashboardFilter'=>27,'QuickExportToExcel'=>28,'DetailTransferOwnership'=>30,'ActivityPostponed'=>31,'ActivityCancel'=>32,'ActivityComplete'=>33,'ExportPdf'=>34,'PrintMail'=>35,'RecordMapping'=>36,'RecordMappingList'=>37,'OpenRecord'=>38,'CloseRecord'=>39,'FavoriteRecords'=>40,'WatchingRecords'=>41,'WatchingModule'=>42,'RemoveRelation'=>46,'ReceivingMailNotifications'=>47,'ReviewingUpdates'=>48,'CreateDashboardChartFilter'=>49,'ReloadRelationRecord'=>50,'TimeLineList'=>51,'MassArchived'=>52,'MassActive'=>53,'ArchiveRecord'=>54,'ActiveRecord'=>55,'MassTrash'=>56,'MoveToTrash'=>57,'RecordConventer'=>58,'AutoAssignRecord'=>59,'AssignToYourself'=>60,'RecordPdfInventory'=>61,'SetQtyProducts'=>62,'RecordCollector'=>63,'MeetingUrl'=>64,'InterestsConflictUsers'=>65,'Kanban'=>66],'actionName'=>[0=>'Save',1=>'EditView',2=>'Delete',3=>'index',4=>'DetailView',5=>'Import',6=>'Export',7=>'CreateView',8=>'Merge',9=>'ConvertLead',13=>'ModTracker',14=>'CreateCustomFilter',15=>'DuplicateRecord',16=>'EditableComments',17=>'MassEdit',18=>'MassDelete',19=>'MassAddComment',20=>'MassComposeEmail',21=>'MassSendSMS',22=>'MassTransferOwnership',23=>'MassMoveDocuments',24=>'ReadRecord',25=>'WorkflowTrigger',26=>'Dashboard',27=>'CreateDashboardFilter',28=>'QuickExportToExcel',30=>'DetailTransferOwnership',31=>'ActivityPostponed',32=>'ActivityCancel',33=>'ActivityComplete',34=>'ExportPdf',35=>'PrintMail',36=>'RecordMapping',37=>'RecordMappingList',38=>'OpenRecord',39=>'CloseRecord',40=>'FavoriteRecords',41=>'WatchingRecords',42=>'WatchingModule',46=>'RemoveRelation',47=>'ReceivingMailNotifications',48=>'ReviewingUpdates',49=>'CreateDashboardChartFilter',50=>'ReloadRelationRecord',51=>'TimeLineList',52=>'MassArchived',53=>'MassActive',54=>'ArchiveRecord',55=>'ActiveRecord',56=>'MassTrash',57=>'MoveToTrash',58=>'RecordConventer',59=>'AutoAssignRecord',60=>'AssignToYourself',61=>'RecordPdfInventory',62=>'SetQtyProducts',63=>'RecordCollector',64=>'MeetingUrl',65=>'InterestsConflictUsers',66=>'Kanban']]; |
|
1 | +<?php $tab_seq_array = [1=>0, 3=>0, 4=>0, 6=>0, 7=>0, 8=>0, 9=>0, 13=>0, 14=>0, 15=>0, 18=>0, 19=>0, 24=>0, 26=>0, 29=>0, 30=>0, 32=>0, 34=>0, 35=>0, 37=>0, 40=>0, 41=>0, 42=>0, 43=>0, 45=>0, 48=>1, 51=>0, 53=>0, 54=>0, 57=>0, 58=>0, 59=>0, 60=>1, 61=>0, 73=>0, 74=>0, 75=>0, 78=>0, 79=>0, 80=>0, 81=>0, 82=>0, 83=>0, 84=>0, 85=>0, 86=>0, 87=>0, 88=>0, 89=>0, 90=>0, 91=>0, 92=>0, 93=>0, 94=>0, 95=>0, 96=>0, 97=>0, 98=>0, 99=>0, 100=>0, 101=>0, 102=>0, 103=>0, 104=>0, 105=>0, 106=>0, 107=>0, 108=>0, 109=>0, 110=>0, 111=>0, 112=>0, 113=>0, 114=>0, 115=>0, 116=>0, 117=>0, 118=>0, 119=>0, 120=>0, 121=>0, 122=>0, 123=>0, 124=>0, 125=>0, 126=>0, 127=>0, 128=>0, 129=>0, 130=>0, 131=>0, 132=>0, 133=>0, 134=>0, 135=>0]; |
|
2 | +return ['tabId'=>['Dashboard'=>1, 'Home'=>3, 'Contacts'=>4, 'Accounts'=>6, 'Leads'=>7, 'Documents'=>8, 'Calendar'=>9, 'HelpDesk'=>13, 'Products'=>14, 'Faq'=>15, 'Vendors'=>18, 'PriceBooks'=>19, 'Rss'=>24, 'Campaigns'=>26, 'Users'=>29, 'Import'=>30, 'ModTracker'=>32, 'ServiceContracts'=>34, 'Services'=>35, 'Assets'=>37, 'ModComments'=>40, 'ProjectMilestone'=>41, 'ProjectTask'=>42, 'Project'=>43, 'SMSNotifier'=>45, 'OSSMail'=>48, 'OSSTimeControl'=>51, 'OSSMailScanner'=>53, 'OSSMailView'=>54, 'OSSOutsourcedServices'=>57, 'OSSSoldServices'=>58, 'OutsourcedProducts'=>59, 'OSSPasswords'=>60, 'OSSEmployees'=>61, 'ApiAddress'=>73, 'CallHistory'=>74, 'Ideas'=>75, 'HolidaysEntitlement'=>78, 'PaymentsIn'=>79, 'PaymentsOut'=>80, 'LettersIn'=>81, 'LettersOut'=>82, 'Announcements'=>83, 'Reservations'=>84, 'SQuoteEnquiries'=>85, 'SSalesProcesses'=>86, 'SRequirementsCards'=>87, 'SCalculations'=>88, 'SQuotes'=>89, 'SSingleOrders'=>90, 'SRecurringOrders'=>91, 'Partners'=>92, 'Competition'=>93, 'FBookkeeping'=>94, 'FInvoice'=>95, 'KnowledgeBase'=>96, 'IStorages'=>97, 'IGRN'=>98, 'FInvoiceProforma'=>99, 'IGDN'=>100, 'IIDN'=>101, 'IGIN'=>102, 'IPreOrder'=>103, 'ISTDN'=>104, 'ISTN'=>105, 'ISTRN'=>106, 'FCorectingInvoice'=>107, 'IGRNC'=>108, 'IGDNC'=>109, 'OpenStreetMap'=>110, 'Notification'=>111, 'EmailTemplates'=>112, 'CFixedAssets'=>113, 'CInternalTickets'=>114, 'FInvoiceCost'=>115, 'CMileageLogbook'=>116, 'SVendorEnquiries'=>117, 'Chat'=>118, 'MultiCompany'=>119, 'PermissionInspector'=>120, 'DataSetRegister'=>121, 'ActivityRegister'=>122, 'LocationRegister'=>123, 'IncidentRegister'=>124, 'AuditRegister'=>125, 'RecycleBin'=>126, 'Approvals'=>127, 'ApprovalsRegister'=>128, 'MailIntegration'=>129, 'Locations'=>130, 'Occurrences'=>131, 'ProductCategory'=>132, 'BankAccounts'=>133, 'Queue'=>134, 'Passwords'=>135], 'tabPresence'=>[1=>0, 3=>0, 4=>0, 6=>0, 7=>0, 8=>0, 9=>0, 13=>0, 14=>0, 15=>0, 18=>0, 19=>0, 24=>0, 26=>0, 29=>0, 30=>0, 32=>0, 34=>0, 35=>0, 37=>0, 40=>0, 41=>0, 42=>0, 43=>0, 45=>0, 48=>1, 51=>0, 53=>0, 54=>0, 57=>0, 58=>0, 59=>0, 60=>1, 61=>0, 73=>0, 74=>0, 75=>0, 78=>0, 79=>0, 80=>0, 81=>0, 82=>0, 83=>0, 84=>0, 85=>0, 86=>0, 87=>0, 88=>0, 89=>0, 90=>0, 91=>0, 92=>0, 93=>0, 94=>0, 95=>0, 96=>0, 97=>0, 98=>0, 99=>0, 100=>0, 101=>0, 102=>0, 103=>0, 104=>0, 105=>0, 106=>0, 107=>0, 108=>0, 109=>0, 110=>0, 111=>0, 112=>0, 113=>0, 114=>0, 115=>0, 116=>0, 117=>0, 118=>0, 119=>0, 120=>0, 121=>0, 122=>0, 123=>0, 124=>0, 125=>0, 126=>0, 127=>0, 128=>0, 129=>0, 130=>0, 131=>0, 132=>0, 133=>0, 134=>0, 135=>0], 'tabOwnedby'=>[1=>1, 3=>1, 4=>0, 6=>0, 7=>0, 8=>0, 9=>0, 13=>0, 14=>0, 15=>1, 18=>0, 19=>1, 24=>1, 26=>0, 29=>1, 30=>0, 32=>0, 34=>0, 35=>0, 37=>0, 40=>0, 41=>0, 42=>0, 43=>0, 45=>0, 48=>0, 51=>0, 53=>0, 54=>0, 57=>0, 58=>0, 59=>0, 60=>0, 61=>0, 73=>0, 74=>0, 75=>0, 78=>0, 79=>0, 80=>0, 81=>0, 82=>0, 83=>0, 84=>0, 85=>0, 86=>0, 87=>0, 88=>0, 89=>0, 90=>0, 91=>0, 92=>0, 93=>0, 94=>0, 95=>0, 96=>0, 97=>0, 98=>0, 99=>0, 100=>0, 101=>0, 102=>0, 103=>0, 104=>0, 105=>0, 106=>0, 107=>0, 108=>0, 109=>0, 110=>0, 111=>0, 112=>0, 113=>0, 114=>0, 115=>0, 116=>0, 117=>0, 118=>0, 119=>0, 120=>0, 121=>0, 122=>0, 123=>0, 124=>0, 125=>0, 126=>0, 127=>0, 128=>0, 129=>0, 130=>0, 131=>0, 132=>0, 133=>0, 134=>0, 135=>0], 'actionId'=>['Save'=>0, 'SavePriceBook'=>0, 'SaveVendor'=>0, 'DetailViewAjax'=>1, 'EditView'=>1, 'PriceBookEditView'=>1, 'QuickCreate'=>1, 'VendorEditView'=>1, 'Delete'=>2, 'DeletePriceBook'=>2, 'DeleteVendor'=>2, 'index'=>3, 'Popup'=>3, 'DetailView'=>4, 'PriceBookDetailView'=>4, 'VendorDetailView'=>4, 'Import'=>5, 'Export'=>6, 'CreateView'=>7, 'Merge'=>8, 'ConvertLead'=>9, 'ModTracker'=>13, 'CreateCustomFilter'=>14, 'DuplicateRecord'=>15, 'EditableComments'=>16, 'MassEdit'=>17, 'MassDelete'=>18, 'MassAddComment'=>19, 'MassComposeEmail'=>20, 'MassSendSMS'=>21, 'MassTransferOwnership'=>22, 'MassMoveDocuments'=>23, 'ReadRecord'=>24, 'WorkflowTrigger'=>25, 'Dashboard'=>26, 'CreateDashboardFilter'=>27, 'QuickExportToExcel'=>28, 'DetailTransferOwnership'=>30, 'ActivityPostponed'=>31, 'ActivityCancel'=>32, 'ActivityComplete'=>33, 'ExportPdf'=>34, 'PrintMail'=>35, 'RecordMapping'=>36, 'RecordMappingList'=>37, 'OpenRecord'=>38, 'CloseRecord'=>39, 'FavoriteRecords'=>40, 'WatchingRecords'=>41, 'WatchingModule'=>42, 'RemoveRelation'=>46, 'ReceivingMailNotifications'=>47, 'ReviewingUpdates'=>48, 'CreateDashboardChartFilter'=>49, 'ReloadRelationRecord'=>50, 'TimeLineList'=>51, 'MassArchived'=>52, 'MassActive'=>53, 'ArchiveRecord'=>54, 'ActiveRecord'=>55, 'MassTrash'=>56, 'MoveToTrash'=>57, 'RecordConventer'=>58, 'AutoAssignRecord'=>59, 'AssignToYourself'=>60, 'RecordPdfInventory'=>61, 'SetQtyProducts'=>62, 'RecordCollector'=>63, 'MeetingUrl'=>64, 'InterestsConflictUsers'=>65, 'Kanban'=>66], 'actionName'=>[0=>'Save', 1=>'EditView', 2=>'Delete', 3=>'index', 4=>'DetailView', 5=>'Import', 6=>'Export', 7=>'CreateView', 8=>'Merge', 9=>'ConvertLead', 13=>'ModTracker', 14=>'CreateCustomFilter', 15=>'DuplicateRecord', 16=>'EditableComments', 17=>'MassEdit', 18=>'MassDelete', 19=>'MassAddComment', 20=>'MassComposeEmail', 21=>'MassSendSMS', 22=>'MassTransferOwnership', 23=>'MassMoveDocuments', 24=>'ReadRecord', 25=>'WorkflowTrigger', 26=>'Dashboard', 27=>'CreateDashboardFilter', 28=>'QuickExportToExcel', 30=>'DetailTransferOwnership', 31=>'ActivityPostponed', 32=>'ActivityCancel', 33=>'ActivityComplete', 34=>'ExportPdf', 35=>'PrintMail', 36=>'RecordMapping', 37=>'RecordMappingList', 38=>'OpenRecord', 39=>'CloseRecord', 40=>'FavoriteRecords', 41=>'WatchingRecords', 42=>'WatchingModule', 46=>'RemoveRelation', 47=>'ReceivingMailNotifications', 48=>'ReviewingUpdates', 49=>'CreateDashboardChartFilter', 50=>'ReloadRelationRecord', 51=>'TimeLineList', 52=>'MassArchived', 53=>'MassActive', 54=>'ArchiveRecord', 55=>'ActiveRecord', 56=>'MassTrash', 57=>'MoveToTrash', 58=>'RecordConventer', 59=>'AutoAssignRecord', 60=>'AssignToYourself', 61=>'RecordPdfInventory', 62=>'SetQtyProducts', 63=>'RecordCollector', 64=>'MeetingUrl', 65=>'InterestsConflictUsers', 66=>'Kanban']]; |
|
3 | 3 |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | 'BACKUP_PATH' => [ |
92 | 92 | 'default' => '', |
93 | 93 | 'description' => 'Backup catalog path.', |
94 | - 'validation' => function () { |
|
94 | + 'validation' => function() { |
|
95 | 95 | $arg = func_get_arg(0); |
96 | 96 | return '' === $arg || \App\Fields\File::isAllowedDirectory($arg); |
97 | 97 | }, |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | 'watchdogUrl' => [ |
204 | 204 | 'default' => '', |
205 | 205 | 'description' => 'YetiForce watchdog monitor URL', |
206 | - 'validation' => function () { |
|
206 | + 'validation' => function() { |
|
207 | 207 | $arg = func_get_arg(0); |
208 | 208 | return empty($arg) || \App\Validator::url($arg); |
209 | 209 | }, |
@@ -345,40 +345,40 @@ discard block |
||
345 | 345 | 'footerName' => [ |
346 | 346 | 'default' => '', |
347 | 347 | 'description' => 'Footer\'s name', |
348 | - 'validation' => function () { |
|
348 | + 'validation' => function() { |
|
349 | 349 | return true; |
350 | 350 | }, |
351 | - 'sanitization' => function () { |
|
351 | + 'sanitization' => function() { |
|
352 | 352 | return \App\Purifier::purify(func_get_arg(0)); |
353 | 353 | }, |
354 | 354 | ], |
355 | 355 | 'urlLinkedIn' => [ |
356 | 356 | 'default' => 'https://www.linkedin.com/groups/8177576', |
357 | 357 | 'description' => 'LinkedIn URL', |
358 | - 'validation' => function () { |
|
358 | + 'validation' => function() { |
|
359 | 359 | return true; |
360 | 360 | }, |
361 | - 'sanitization' => function () { |
|
361 | + 'sanitization' => function() { |
|
362 | 362 | return \App\Purifier::purify(func_get_arg(0)); |
363 | 363 | }, |
364 | 364 | ], |
365 | 365 | 'urlTwitter' => [ |
366 | 366 | 'default' => 'https://twitter.com/YetiForceEN', |
367 | 367 | 'description' => 'Twitter URL', |
368 | - 'validation' => function () { |
|
368 | + 'validation' => function() { |
|
369 | 369 | return true; |
370 | 370 | }, |
371 | - 'sanitization' => function () { |
|
371 | + 'sanitization' => function() { |
|
372 | 372 | return \App\Purifier::purify(func_get_arg(0)); |
373 | 373 | }, |
374 | 374 | ], |
375 | 375 | 'urlFacebook' => [ |
376 | 376 | 'default' => 'https://www.facebook.com/YetiForce-CRM-158646854306054/', |
377 | 377 | 'description' => 'Facebook URL', |
378 | - 'validation' => function () { |
|
378 | + 'validation' => function() { |
|
379 | 379 | return true; |
380 | 380 | }, |
381 | - 'sanitization' => function () { |
|
381 | + 'sanitization' => function() { |
|
382 | 382 | return \App\Purifier::purify(func_get_arg(0)); |
383 | 383 | }, |
384 | 384 | ], |
@@ -445,7 +445,7 @@ discard block |
||
445 | 445 | 'modules' => [ |
446 | 446 | 'default' => [], |
447 | 447 | 'description' => 'List of modules where the conflict of interests mechanism is enabled.', |
448 | - 'validation' => function () { |
|
448 | + 'validation' => function() { |
|
449 | 449 | return true; |
450 | 450 | }, |
451 | 451 | ], |