@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | * @copyright Copyright (c) 2006 by CANTICO ({@link http://www.cantico.fr}) |
22 | 22 | */ |
23 | 23 | |
24 | -require_once dirname(__FILE__) . '/controller.class.php'; |
|
24 | +require_once dirname(__FILE__).'/controller.class.php'; |
|
25 | 25 | |
26 | 26 | |
27 | 27 | |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | { |
53 | 53 | $App = $this->App(); |
54 | 54 | $recordClassname = $this->getRecordClassName(); |
55 | - $recordSetClassname = $recordClassname . 'Set'; |
|
55 | + $recordSetClassname = $recordClassname.'Set'; |
|
56 | 56 | |
57 | 57 | $recordSet = $App->$recordSetClassname(); |
58 | 58 | return $recordSet; |
@@ -104,9 +104,9 @@ discard block |
||
104 | 104 | if ($showLabel) { |
105 | 105 | $text = $actions->getTitle(); |
106 | 106 | } |
107 | - $html = '<li><a class="icon ' . $actions->getIcon() . '" href="' . $actions->url() . '">' . $text . '</a></li>'; |
|
107 | + $html = '<li><a class="icon '.$actions->getIcon().'" href="'.$actions->url().'">'.$text.'</a></li>'; |
|
108 | 108 | } elseif ($actions instanceof Widget_Link) { |
109 | - $html = '<li>' . $actions->display($canvas) . '</li>'; |
|
109 | + $html = '<li>'.$actions->display($canvas).'</li>'; |
|
110 | 110 | } elseif (is_array($actions)) { |
111 | 111 | if (isset($actions['items'])) { |
112 | 112 | $items = $actions['items']; |
@@ -119,10 +119,10 @@ discard block |
||
119 | 119 | if (isset($actions['icon'])) { |
120 | 120 | |
121 | 121 | $html = '<li class="dropdown">' |
122 | - . '<a href="#" class="' . $actions['icon'] . ' icon dropdown-toogle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">' |
|
122 | + . '<a href="#" class="'.$actions['icon'].' icon dropdown-toogle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">' |
|
123 | 123 | . ($actions['icon'] === 'actions-context-menu'/*Func_Icons::ACTIONS_CONTEXT_MENU*/ ? '' : '<span class="caret"></span>') |
124 | 124 | . '</a>' |
125 | - . '<ul class="dropdown-menu dropdown-menu-right ' . Func_Icons::ICON_LEFT_SYMBOLIC . '">' |
|
125 | + . '<ul class="dropdown-menu dropdown-menu-right '.Func_Icons::ICON_LEFT_SYMBOLIC.'">' |
|
126 | 126 | . $html |
127 | 127 | . '</ul>'; |
128 | 128 | } |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | |
146 | 146 | $recordClassname = $this->getRecordClassName(); |
147 | 147 | |
148 | - $viewClassname = $recordClassname . 'TableView'; |
|
148 | + $viewClassname = $recordClassname.'TableView'; |
|
149 | 149 | if (method_exists($Ui, $viewClassname)) { |
150 | 150 | $types['table'] = array( |
151 | 151 | 'classname' => $viewClassname, |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | ); |
155 | 155 | } |
156 | 156 | |
157 | - $viewClassname = $recordClassname . 'CardsView'; |
|
157 | + $viewClassname = $recordClassname.'CardsView'; |
|
158 | 158 | if (method_exists($Ui, $viewClassname)) { |
159 | 159 | $types['cards'] = array( |
160 | 160 | 'classname' => $viewClassname, |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | ); |
164 | 164 | } |
165 | 165 | |
166 | - $viewClassname = $recordClassname . 'MapView'; |
|
166 | + $viewClassname = $recordClassname.'MapView'; |
|
167 | 167 | if (method_exists($Ui, $viewClassname)) { |
168 | 168 | $types['map'] = array( |
169 | 169 | 'classname' => $viewClassname, |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | ); |
173 | 173 | } |
174 | 174 | |
175 | - $viewClassname = $recordClassname . 'CalendarView'; |
|
175 | + $viewClassname = $recordClassname.'CalendarView'; |
|
176 | 176 | if (method_exists($Ui, $viewClassname)) { |
177 | 177 | $types['calendar'] = array( |
178 | 178 | 'classname' => $viewClassname, |
@@ -246,11 +246,11 @@ discard block |
||
246 | 246 | $recordSet = $this->getEditRecordSet(); |
247 | 247 | |
248 | 248 | $recordClassname = $this->getRecordClassName(); |
249 | - $editorClassname = $recordClassname . 'SectionEditor'; |
|
249 | + $editorClassname = $recordClassname.'SectionEditor'; |
|
250 | 250 | /* @var $editor app_RecordEditor */ |
251 | 251 | $editor = $Ui->$editorClassname(); |
252 | 252 | if (!isset($itemId)) { |
253 | - $itemId = $this->getClass() . '_' . __FUNCTION__; |
|
253 | + $itemId = $this->getClass().'_'.__FUNCTION__; |
|
254 | 254 | } |
255 | 255 | $editor->setId($itemId); |
256 | 256 | $editor->setHiddenValue('tg', $App->controllerTg); |
@@ -293,7 +293,7 @@ discard block |
||
293 | 293 | public function getModelViewDefaultId($itemId = null) |
294 | 294 | { |
295 | 295 | if (!isset($itemId)) { |
296 | - $itemId = $this->getClass() . '_modelView'; |
|
296 | + $itemId = $this->getClass().'_modelView'; |
|
297 | 297 | } |
298 | 298 | |
299 | 299 | return $itemId; |
@@ -327,20 +327,20 @@ discard block |
||
327 | 327 | |
328 | 328 | switch ($type) { |
329 | 329 | case 'cards': |
330 | - $tableviewClassname = $recordClassname . 'CardsView'; |
|
330 | + $tableviewClassname = $recordClassname.'CardsView'; |
|
331 | 331 | break; |
332 | 332 | |
333 | 333 | case 'map': |
334 | - $tableviewClassname = $recordClassname . 'MapView'; |
|
334 | + $tableviewClassname = $recordClassname.'MapView'; |
|
335 | 335 | break; |
336 | 336 | |
337 | 337 | case 'calendar': |
338 | - $tableviewClassname = $recordClassname . 'CalendarView'; |
|
338 | + $tableviewClassname = $recordClassname.'CalendarView'; |
|
339 | 339 | break; |
340 | 340 | |
341 | 341 | case 'table': |
342 | 342 | default: |
343 | - $tableviewClassname = $recordClassname . 'TableView'; |
|
343 | + $tableviewClassname = $recordClassname.'TableView'; |
|
344 | 344 | break; |
345 | 345 | } |
346 | 346 | |
@@ -406,10 +406,10 @@ discard block |
||
406 | 406 | $Ui = $App->Ui(); |
407 | 407 | |
408 | 408 | $recordClassname = $this->getRecordClassName(); |
409 | - $editorClassname = $recordClassname . 'Editor'; |
|
409 | + $editorClassname = $recordClassname.'Editor'; |
|
410 | 410 | $editor = $Ui->$editorClassname(); |
411 | 411 | if (!isset($itemId)) { |
412 | - $itemId = $this->getClass() . '_' . __FUNCTION__; |
|
412 | + $itemId = $this->getClass().'_'.__FUNCTION__; |
|
413 | 413 | } |
414 | 414 | $editor->setId($itemId); |
415 | 415 | $editor->setHiddenValue('tg', $App->controllerTg); |
@@ -454,7 +454,7 @@ discard block |
||
454 | 454 | $W->Link( |
455 | 455 | '', |
456 | 456 | $proxy->setFilteredViewType($tableView->getId(), $viewTypeId) |
457 | - )->addClass('icon', $viewType['icon'] . ($filteredViewType=== $viewTypeId ? ' active' : '')) |
|
457 | + )->addClass('icon', $viewType['icon'].($filteredViewType === $viewTypeId ? ' active' : '')) |
|
458 | 458 | // ->setSizePolicy('btn btn-xs btn-default ' . ($filteredViewType === $viewTypeId ? 'active' : '')) |
459 | 459 | ->setTitle($viewType['label']) |
460 | 460 | ->setAjaxAction() |
@@ -498,7 +498,7 @@ discard block |
||
498 | 498 | |
499 | 499 | $filterVisibility = $this->getFilterVisibility($itemId); |
500 | 500 | $filterVisibility = !$filterVisibility; |
501 | - $W->setUserConfiguration($itemId . '/filterVisibility', $filterVisibility); |
|
501 | + $W->setUserConfiguration($itemId.'/filterVisibility', $filterVisibility); |
|
502 | 502 | |
503 | 503 | return true; |
504 | 504 | } |
@@ -511,10 +511,10 @@ discard block |
||
511 | 511 | protected function getFilterVisibility($itemId) |
512 | 512 | { |
513 | 513 | $W = bab_Widgets(); |
514 | - $filterVisibility = $W->getUserConfiguration($itemId . '/filterVisibility'); |
|
514 | + $filterVisibility = $W->getUserConfiguration($itemId.'/filterVisibility'); |
|
515 | 515 | if (!isset($filterVisibility)) { |
516 | 516 | $filterVisibility = false; |
517 | - $W->setUserConfiguration($itemId . '/filterVisibility', $filterVisibility); |
|
517 | + $W->setUserConfiguration($itemId.'/filterVisibility', $filterVisibility); |
|
518 | 518 | } |
519 | 519 | return $filterVisibility; |
520 | 520 | } |
@@ -528,7 +528,7 @@ discard block |
||
528 | 528 | protected function getFilteredViewType($itemId) |
529 | 529 | { |
530 | 530 | $W = bab_Widgets(); |
531 | - $type = $W->getUserConfiguration($itemId . '/viewType'); |
|
531 | + $type = $W->getUserConfiguration($itemId.'/viewType'); |
|
532 | 532 | if (!isset($type)) { |
533 | 533 | $type = 'table'; |
534 | 534 | } |
@@ -544,7 +544,7 @@ discard block |
||
544 | 544 | public function setFilteredViewType($itemId, $type = null) |
545 | 545 | { |
546 | 546 | $W = bab_Widgets(); |
547 | - $W->setUserConfiguration($itemId . '/viewType', $type); |
|
547 | + $W->setUserConfiguration($itemId.'/viewType', $type); |
|
548 | 548 | |
549 | 549 | return true; |
550 | 550 | } |
@@ -686,17 +686,17 @@ discard block |
||
686 | 686 | |
687 | 687 | switch ($format) { |
688 | 688 | case 'xlsx': |
689 | - $tableview->downloadXlsx($filename . '.xlsx'); |
|
689 | + $tableview->downloadXlsx($filename.'.xlsx'); |
|
690 | 690 | break; |
691 | 691 | case 'xls': |
692 | - $tableview->downloadExcel($filename . '.xls'); |
|
692 | + $tableview->downloadExcel($filename.'.xls'); |
|
693 | 693 | break; |
694 | 694 | case 'ssv': |
695 | - $tableview->downloadCsv($filename . '.csv', ';', $inline, 'Windows-1252'); |
|
695 | + $tableview->downloadCsv($filename.'.csv', ';', $inline, 'Windows-1252'); |
|
696 | 696 | break; |
697 | 697 | case 'csv': |
698 | 698 | default: |
699 | - $tableview->downloadCsv($filename . '.csv', ',', $inline, bab_charset::getIso()); |
|
699 | + $tableview->downloadCsv($filename.'.csv', ',', $inline, bab_charset::getIso()); |
|
700 | 700 | break; |
701 | 701 | } |
702 | 702 | } |
@@ -725,7 +725,7 @@ discard block |
||
725 | 725 | $Ui = $App->Ui(); |
726 | 726 | |
727 | 727 | $recordClassname = $this->getRecordClassName(); |
728 | - $fullFrameClassname = $recordClassname . 'FullFrame'; |
|
728 | + $fullFrameClassname = $recordClassname.'FullFrame'; |
|
729 | 729 | $fullFrame = $Ui->$fullFrameClassname($record, $view); |
730 | 730 | |
731 | 731 | |
@@ -888,7 +888,7 @@ discard block |
||
888 | 888 | |
889 | 889 | $recordTitle = $record->getRecordTitle(); |
890 | 890 | |
891 | - $message = sprintf($App->translate('%s has been deleted'), $App->translate($recordSet->getDescription()) . ' "' . $recordTitle . '"'); |
|
891 | + $message = sprintf($App->translate('%s has been deleted'), $App->translate($recordSet->getDescription()).' "'.$recordTitle.'"'); |
|
892 | 892 | return $message; |
893 | 893 | } |
894 | 894 | |
@@ -986,7 +986,7 @@ discard block |
||
986 | 986 | $this->addMessage($message); |
987 | 987 | } |
988 | 988 | |
989 | - $this->addReloadSelector('.depends-' . $this->getRecordClassName()); |
|
989 | + $this->addReloadSelector('.depends-'.$this->getRecordClassName()); |
|
990 | 990 | return true; |
991 | 991 | } |
992 | 992 | |
@@ -1018,7 +1018,7 @@ discard block |
||
1018 | 1018 | $this->addMessage($deletedMessage); |
1019 | 1019 | } |
1020 | 1020 | |
1021 | - $this->addReloadSelector('.depends-' . $record->getClassName()); |
|
1021 | + $this->addReloadSelector('.depends-'.$record->getClassName()); |
|
1022 | 1022 | |
1023 | 1023 | return true; |
1024 | 1024 | } |
@@ -1058,7 +1058,7 @@ discard block |
||
1058 | 1058 | |
1059 | 1059 | $recordTitle = $record->getRecordTitle(); |
1060 | 1060 | |
1061 | - $subTitle = $App->translate($recordSet->getDescription()) . ' "' . $recordTitle . '"'; |
|
1061 | + $subTitle = $App->translate($recordSet->getDescription()).' "'.$recordTitle.'"'; |
|
1062 | 1062 | $form->addItem($W->Title($subTitle, 5)); |
1063 | 1063 | |
1064 | 1064 | $form->addItem($W->Title($App->translate('Confirm delete?'), 6)); |
@@ -1117,7 +1117,7 @@ discard block |
||
1117 | 1117 | } |
1118 | 1118 | } |
1119 | 1119 | |
1120 | - $this->addReloadSelector('.depends-' . $record->getClassName()); |
|
1120 | + $this->addReloadSelector('.depends-'.$record->getClassName()); |
|
1121 | 1121 | |
1122 | 1122 | return true; |
1123 | 1123 | } |
@@ -1146,7 +1146,7 @@ discard block |
||
1146 | 1146 | |
1147 | 1147 | $recordTitle = $record->getRecordTitle(); |
1148 | 1148 | |
1149 | - $subTitle = $App->translate($recordSet->getDescription()) . ' "' . $recordTitle . '"'; |
|
1149 | + $subTitle = $App->translate($recordSet->getDescription()).' "'.$recordTitle.'"'; |
|
1150 | 1150 | $form->addItem($W->Title($subTitle, 5)); |
1151 | 1151 | |
1152 | 1152 | $form->addItem($W->Title($App->translate('Confirm delete?'), 6)); |
@@ -1190,7 +1190,7 @@ discard block |
||
1190 | 1190 | $record = null; |
1191 | 1191 | foreach ($records as $record) { |
1192 | 1192 | } |
1193 | - if (! isset($record)) { |
|
1193 | + if (!isset($record)) { |
|
1194 | 1194 | throw new app_AccessException('Sorry, You are not allowed to perform this operation'); |
1195 | 1195 | } |
1196 | 1196 | if (!$record->isRestorable()) { |
@@ -1204,7 +1204,7 @@ discard block |
||
1204 | 1204 | $record->save(); |
1205 | 1205 | $this->addMessage($deletedMessage); |
1206 | 1206 | |
1207 | - $this->addReloadSelector('.depends-' . $record->getClassName()); |
|
1207 | + $this->addReloadSelector('.depends-'.$record->getClassName()); |
|
1208 | 1208 | |
1209 | 1209 | return true; |
1210 | 1210 | } |
@@ -1226,7 +1226,7 @@ discard block |
||
1226 | 1226 | $record = null; |
1227 | 1227 | foreach ($records as $record) { |
1228 | 1228 | } |
1229 | - if (! isset($record)) { |
|
1229 | + if (!isset($record)) { |
|
1230 | 1230 | throw new app_AccessException('Sorry, You are not allowed to perform this operation'); |
1231 | 1231 | } |
1232 | 1232 | |
@@ -1239,7 +1239,7 @@ discard block |
||
1239 | 1239 | |
1240 | 1240 | $recordTitle = $record->getRecordTitle(); |
1241 | 1241 | |
1242 | - $subTitle = $App->translate($recordSet->getDescription()) . ' "' . $recordTitle . '"'; |
|
1242 | + $subTitle = $App->translate($recordSet->getDescription()).' "'.$recordTitle.'"'; |
|
1243 | 1243 | $form->addItem($W->Title($subTitle, 5)); |
1244 | 1244 | |
1245 | 1245 | $confirmedAction = $this->proxy()->restore($id); |