@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | |
| 50 | 50 | $id = GETPOST('id', 'int') ?: GETPOST('idBBC_vols', 'int'); |
| 51 | 51 | $action = GETPOST('action', 'alpha'); |
| 52 | -$permissiondellink=$user->rights->flightlog->vol->financial; |
|
| 52 | +$permissiondellink = $user->rights->flightlog->vol->financial; |
|
| 53 | 53 | |
| 54 | 54 | $object = new Bbcvols($db); |
| 55 | 55 | |
@@ -57,8 +57,8 @@ discard block |
||
| 57 | 57 | $extralabels = $extrafields->fetch_name_optionals_label($object->table_element); |
| 58 | 58 | |
| 59 | 59 | // Load object |
| 60 | -include DOL_DOCUMENT_ROOT . '/core/actions_fetchobject.inc.php'; // Must be include, not include_once // Must be include, not include_once. Include fetch and fetch_thirdparty but not fetch_optionals |
|
| 61 | -include DOL_DOCUMENT_ROOT.'/core/actions_dellink.inc.php'; |
|
| 60 | +include DOL_DOCUMENT_ROOT . '/core/actions_fetchobject.inc.php'; // Must be include, not include_once // Must be include, not include_once. Include fetch and fetch_thirdparty but not fetch_optionals |
|
| 61 | +include DOL_DOCUMENT_ROOT . '/core/actions_dellink.inc.php'; |
|
| 62 | 62 | |
| 63 | 63 | // Initialize technical object to manage hooks of modules. Note that conf->hooks_modules contains array array |
| 64 | 64 | $hookmanager->initHooks(array('bbcvols')); |
@@ -85,13 +85,13 @@ discard block |
||
| 85 | 85 | FLIGHTLOG_ACTION_HANDLE_ADD_DAMAGE => [AddFlightDamageController::class, 'view'], |
| 86 | 86 | ]; |
| 87 | 87 | |
| 88 | - if(isset($routes[$action])){ |
|
| 88 | + if (isset($routes[$action])) { |
|
| 89 | 89 | $controllerName = $routes[$action][0]; |
| 90 | 90 | $actionName = $routes[$action][1]; |
| 91 | 91 | |
| 92 | 92 | $response = call_user_func([new $controllerName($db), $actionName]); |
| 93 | 93 | |
| 94 | - if($response instanceof \FlightLog\Http\Web\Response\Redirect){ |
|
| 94 | + if ($response instanceof \FlightLog\Http\Web\Response\Redirect) { |
|
| 95 | 95 | if (headers_sent()) { |
| 96 | 96 | echo(sprintf("<script>location.href='%s'</script>", $response->getUrl())); |
| 97 | 97 | exit; |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | include $response->getTemplate(); |
| 105 | - }else{ |
|
| 105 | + } else { |
|
| 106 | 106 | echo 'Route non trouvée.'; |
| 107 | 107 | } |
| 108 | 108 | ?> |
@@ -114,13 +114,13 @@ discard block |
||
| 114 | 114 | // Buttons |
| 115 | 115 | print '<div class="tabsAction">' . "\n"; |
| 116 | 116 | |
| 117 | -if($user->rights->flightlog->vol->financial){ |
|
| 118 | - print '<div class="inline-block divButAction"><a class="butAction" href="' . DOL_URL_ROOT . '/flightlog/card_tab_damage.php?id=' . $object->id.'&action='.FLIGHTLOG_ACTION_ADD_DAMAGE.'">' . $langs->trans("Ajouter") . '</a></div>' . "\n"; |
|
| 117 | +if ($user->rights->flightlog->vol->financial) { |
|
| 118 | + print '<div class="inline-block divButAction"><a class="butAction" href="' . DOL_URL_ROOT . '/flightlog/card_tab_damage.php?id=' . $object->id . '&action=' . FLIGHTLOG_ACTION_ADD_DAMAGE . '">' . $langs->trans("Ajouter") . '</a></div>' . "\n"; |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | print '</div>' . "\n"; |
| 122 | 122 | |
| 123 | -if($user->rights->flightlog->vol->financial){ |
|
| 123 | +if ($user->rights->flightlog->vol->financial) { |
|
| 124 | 124 | print '<div class="fichecenter"><div class="fichehalfleft">'; |
| 125 | 125 | $form->showLinkedObjectBlock($object); |
| 126 | 126 | print '</div></div>'; |
@@ -102,7 +102,7 @@ |
||
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | include $response->getTemplate(); |
| 105 | - }else{ |
|
| 105 | + } else{ |
|
| 106 | 106 | echo 'Route non trouvée.'; |
| 107 | 107 | } |
| 108 | 108 | ?> |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | $routesGuards = require './Infrastructure/Common/Routes/guards.conf.php'; |
| 54 | 54 | |
| 55 | 55 | $response = null; |
| 56 | -try{ |
|
| 56 | +try { |
|
| 57 | 57 | $routeName = GETPOST('r'); |
| 58 | 58 | |
| 59 | 59 | $routeManager = new \FlightLog\Infrastructure\Common\Routes\RouteManager($db); |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | |
| 63 | 63 | $response = $routeManager->__invoke($routeName, $user); |
| 64 | 64 | |
| 65 | - if($response instanceof \FlightLog\Http\Web\Response\Redirect){ |
|
| 65 | + if ($response instanceof \FlightLog\Http\Web\Response\Redirect) { |
|
| 66 | 66 | if (headers_sent()) { |
| 67 | 67 | echo(sprintf("<script>location.href='%s'</script>", $response->getUrl())); |
| 68 | 68 | exit; |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | exit; |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | -}catch (\Exception $e){ |
|
| 75 | +} catch (\Exception $e) { |
|
| 76 | 76 | dol_syslog($e->getMessage(), LOG_ERR); |
| 77 | 77 | $response = new \FlightLog\Http\Web\Response\Response($e->getMessage()); |
| 78 | 78 | } |
@@ -72,7 +72,7 @@ |
||
| 72 | 72 | exit; |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | -}catch (\Exception $e){ |
|
| 75 | +} catch (\Exception $e){ |
|
| 76 | 76 | dol_syslog($e->getMessage(), LOG_ERR); |
| 77 | 77 | $response = new \FlightLog\Http\Web\Response\Response($e->getMessage()); |
| 78 | 78 | } |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | global $db; |
| 9 | 9 | |
| 10 | 10 | return [ |
| 11 | - new Guard('get_one_damage', function(User $user){ |
|
| 11 | + new Guard('get_one_damage', function(User $user) { |
|
| 12 | 12 | return $user->rights->flightlog->vol->financial; |
| 13 | 13 | }), |
| 14 | 14 | ]; |
@@ -38,8 +38,8 @@ discard block |
||
| 38 | 38 | * |
| 39 | 39 | * @throws \Exception |
| 40 | 40 | */ |
| 41 | - public function add(Route $route){ |
|
| 42 | - if(isset($this->routes[$route->getName()])){ |
|
| 41 | + public function add(Route $route) { |
|
| 42 | + if (isset($this->routes[$route->getName()])) { |
|
| 43 | 43 | throw new \Exception('Route exists'); |
| 44 | 44 | } |
| 45 | 45 | |
@@ -51,8 +51,8 @@ discard block |
||
| 51 | 51 | * |
| 52 | 52 | * @throws \Exception |
| 53 | 53 | */ |
| 54 | - public function load(array $routes){ |
|
| 55 | - foreach($routes as $currentRoute){ |
|
| 54 | + public function load(array $routes) { |
|
| 55 | + foreach ($routes as $currentRoute) { |
|
| 56 | 56 | $this->add($currentRoute); |
| 57 | 57 | } |
| 58 | 58 | } |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | */ |
| 63 | 63 | public function loadGuards($routesGuards) |
| 64 | 64 | { |
| 65 | - foreach($routesGuards as $guard){ |
|
| 65 | + foreach ($routesGuards as $guard) { |
|
| 66 | 66 | $this->guards[$guard->getRouteName()] = $guard; |
| 67 | 67 | } |
| 68 | 68 | } |
@@ -73,8 +73,8 @@ discard block |
||
| 73 | 73 | * @param $routeName |
| 74 | 74 | * @return bool |
| 75 | 75 | */ |
| 76 | - public function isAuthorized(User $user, $routeName){ |
|
| 77 | - if(!isset($this->guards[$routeName])){ |
|
| 76 | + public function isAuthorized(User $user, $routeName) { |
|
| 77 | + if (!isset($this->guards[$routeName])) { |
|
| 78 | 78 | return true; |
| 79 | 79 | } |
| 80 | 80 | |
@@ -92,11 +92,11 @@ discard block |
||
| 92 | 92 | */ |
| 93 | 93 | public function __invoke($name, User $user) |
| 94 | 94 | { |
| 95 | - if(!isset($this->routes[$name])){ |
|
| 95 | + if (!isset($this->routes[$name])) { |
|
| 96 | 96 | throw new \Exception('Route not found'); |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | - if(!$this->isAuthorized($user, $name)){ |
|
| 99 | + if (!$this->isAuthorized($user, $name)) { |
|
| 100 | 100 | throw new \Exception('Action not allowed'); |
| 101 | 101 | } |
| 102 | 102 | |
@@ -45,13 +45,13 @@ |
||
| 45 | 45 | $var = !$var; |
| 46 | 46 | $trclass = ($var ? 'pair' : 'impair'); |
| 47 | 47 | |
| 48 | - if(!$user->rights->flightlog->vol->financial && $user->rowid != $damage->getAuthorId()){ |
|
| 48 | + if (!$user->rights->flightlog->vol->financial && $user->rowid != $damage->getAuthorId()) { |
|
| 49 | 49 | continue; |
| 50 | 50 | } |
| 51 | 51 | ?> |
| 52 | 52 | <tr <?php echo $GLOBALS['bc'][$var]; ?> > |
| 53 | 53 | <td><?php echo $langs->trans("Dégâts"); ?></td> |
| 54 | - <td><a href="<?php echo sprintf(DOL_URL_ROOT.'/flightlog/index.php?id=%s&r=%s', $damage->getId(), 'get_one_damage');?>"><?php echo $damage->getId()?></a></td> |
|
| 54 | + <td><a href="<?php echo sprintf(DOL_URL_ROOT . '/flightlog/index.php?id=%s&r=%s', $damage->getId(), 'get_one_damage'); ?>"><?php echo $damage->getId()?></a></td> |
|
| 55 | 55 | <td align="center"><?php echo $damage->getAuthorName(); ?></td> |
| 56 | 56 | <td align="center"></td> |
| 57 | 57 | <td align="right"><?echo price($damage->getAmount()) ?>€</td> |
@@ -64,13 +64,13 @@ |
||
| 64 | 64 | |
| 65 | 65 | $stats = new BillableFlightByYearMonth(); |
| 66 | 66 | |
| 67 | - for($i = 0; $i < $num ; $i++) { |
|
| 67 | + for ($i = 0; $i < $num; $i++) { |
|
| 68 | 68 | $properties = $this->db->fetch_array($resql); |
| 69 | 69 | $stat = Statistic::fromArray($properties); |
| 70 | 70 | $stats->add($stat); |
| 71 | 71 | } |
| 72 | 72 | |
| 73 | - $stats->add(new Statistic(0,1,(new \DateTime())->format('Y'))); |
|
| 73 | + $stats->add(new Statistic(0, 1, (new \DateTime())->format('Y'))); |
|
| 74 | 74 | |
| 75 | 75 | return $stats; |
| 76 | 76 | } |
@@ -16,9 +16,9 @@ discard block |
||
| 16 | 16 | |
| 17 | 17 | public function add(Statistic $stat) |
| 18 | 18 | { |
| 19 | - if(!isset($this->data[$stat->year()])){ |
|
| 19 | + if (!isset($this->data[$stat->year()])) { |
|
| 20 | 20 | $this->data[$stat->year()] = []; |
| 21 | - for($i = 1 ; $i <= 12 ; $i++){ |
|
| 21 | + for ($i = 1; $i <= 12; $i++) { |
|
| 22 | 22 | $this->data[$stat->year()][$i] = new Statistic(0, $stat->month(), $stat->year()); |
| 23 | 23 | } |
| 24 | 24 | } |
@@ -26,11 +26,11 @@ discard block |
||
| 26 | 26 | $this->data[$stat->year()][$stat->month()] = $stat; |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | - public function data(){ |
|
| 29 | + public function data() { |
|
| 30 | 30 | return $this->data; |
| 31 | 31 | } |
| 32 | 32 | |
| 33 | - public function years(){ |
|
| 33 | + public function years() { |
|
| 34 | 34 | return array_keys($this->data); |
| 35 | 35 | } |
| 36 | 36 | |
@@ -44,11 +44,11 @@ |
||
| 44 | 44 | return $this->number; |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | - public function year(){ |
|
| 47 | + public function year() { |
|
| 48 | 48 | return $this->year; |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | - public function month(){ |
|
| 51 | + public function month() { |
|
| 52 | 52 | return $this->month; |
| 53 | 53 | } |
| 54 | 54 | |
@@ -136,7 +136,7 @@ |
||
| 136 | 136 | $graphByTypeAndYear->type = []; |
| 137 | 137 | foreach (fetchBbcFlightTypes() as $flightType) { |
| 138 | 138 | |
| 139 | - if (!in_array($flightType->numero, [1, 2, 3,4, 6])) { |
|
| 139 | + if (!in_array($flightType->numero, [1, 2, 3, 4, 6])) { |
|
| 140 | 140 | continue; |
| 141 | 141 | } |
| 142 | 142 | |