@@ -37,7 +37,7 @@ |
||
| 37 | 37 | */ |
| 38 | 38 | public function map(Router $router) |
| 39 | 39 | { |
| 40 | - $router->group(['namespace' => $this->namespace], function ($router) { |
|
| 40 | + $router->group(['namespace' => $this->namespace], function($router) { |
|
| 41 | 41 | require app_path('Http/routes.php'); |
| 42 | 42 | }); |
| 43 | 43 | } |
@@ -67,7 +67,7 @@ |
||
| 67 | 67 | } |
| 68 | 68 | else { |
| 69 | 69 | $user = User::find($request->user()->user_id); |
| 70 | - $device = $user->devices()->find($id); |
|
| 70 | + $device = $user->devices()->find($id); |
|
| 71 | 71 | } |
| 72 | 72 | // morph the data as required |
| 73 | 73 | if ($request->query('displayFormat') == 'link') { |
@@ -41,11 +41,11 @@ |
||
| 41 | 41 | |
| 42 | 42 | public function scopeLimit($query) |
| 43 | 43 | { |
| 44 | - return $query->select('notifications.*','key'); |
|
| 44 | + return $query->select('notifications.*', 'key'); |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | public function users() { |
| 48 | - return $this->belongsToMany('App\User')->withPivot('notifications_id','user_id'); |
|
| 48 | + return $this->belongsToMany('App\User')->withPivot('notifications_id', 'user_id'); |
|
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | } |
@@ -43,10 +43,10 @@ |
||
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | if ($action == 'read') { |
| 46 | - $result = $notification->markRead($enable); |
|
| 46 | + $result = $notification->markRead($enable); |
|
| 47 | 47 | } |
| 48 | 48 | elseif ($action == 'sticky') { |
| 49 | - $result = $notification->markSticky(false); |
|
| 49 | + $result = $notification->markSticky(false); |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | if ($result === false) { |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | |
| 39 | 39 | $notification = Notification::find($id); |
| 40 | 40 | $enable = strpos($action, 'un') === false; |
| 41 | - if(!$enable) { |
|
| 41 | + if (!$enable) { |
|
| 42 | 42 | $action = substr($action, 2); |
| 43 | 43 | } |
| 44 | 44 | |
@@ -16,7 +16,7 @@ |
||
| 16 | 16 | $versions['db_schema'] = DB::select('SELECT `version` FROM `dbSchema` LIMIT 1')[0]->version; |
| 17 | 17 | $versions['php'] = phpversion(); |
| 18 | 18 | $versions['db_driver'] = strtoupper(DB::connection()->getDriverName()); |
| 19 | - if ($versions['db_driver'] == 'SQLITE') { |
|
| 19 | + if ($versions['db_driver'] == 'SQLITE') { |
|
| 20 | 20 | $versions['db_version'] = DB::select('SELECT sqlite_version() AS version')[0]->version; |
| 21 | 21 | } |
| 22 | 22 | else { |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | $stats['ports'] = \App\Port::all()->count(); |
| 36 | 36 | $stats['syslog'] = \App\Syslog::all()->count(); |
| 37 | 37 | $stats['eventlog'] = \App\Eventlog::all()->count(); |
| 38 | - $stats['apps'] = DB::table('applications')->count();; |
|
| 38 | + $stats['apps'] = DB::table('applications')->count(); ; |
|
| 39 | 39 | $stats['services'] = DB::table('services')->count(); |
| 40 | 40 | $stats['storage'] = DB::table('storage')->count(); |
| 41 | 41 | $stats['diskio'] = DB::table('ucd_diskio')->count(); |
@@ -78,7 +78,7 @@ |
||
| 78 | 78 | */ |
| 79 | 79 | public function logo() { |
| 80 | 80 | $os = DeviceOS::load($this); |
| 81 | - if( isset($os->icon) ){ |
|
| 81 | + if (isset($os->icon)) { |
|
| 82 | 82 | return asset('images/os/'.$os->icon.'.png'); |
| 83 | 83 | } |
| 84 | 84 | return asset('images/os/generic.png'); |
@@ -7,32 +7,32 @@ |
||
| 7 | 7 | protected $text = 'Linux'; |
| 8 | 8 | protected $icon = 'linux'; |
| 9 | 9 | protected $attrib = array( |
| 10 | - 'ifXmcbc' => true, |
|
| 11 | - 'ifname' => true, |
|
| 12 | - ); |
|
| 10 | + 'ifXmcbc' => true, |
|
| 11 | + 'ifname' => true, |
|
| 12 | + ); |
|
| 13 | 13 | protected $overlib = array( |
| 14 | - array( |
|
| 15 | - 'graph' => 'device_processor', |
|
| 16 | - 'text' => 'Processor Usage' |
|
| 17 | - ), |
|
| 18 | - array( |
|
| 19 | - 'graph' => 'device_ucd_memory', |
|
| 20 | - 'text' => 'Memory Usage' |
|
| 21 | - ), |
|
| 22 | - array( |
|
| 23 | - 'graph' => 'device_storage', |
|
| 24 | - 'text' => 'Storage Usage' |
|
| 25 | - ), |
|
| 26 | - ); |
|
| 14 | + array( |
|
| 15 | + 'graph' => 'device_processor', |
|
| 16 | + 'text' => 'Processor Usage' |
|
| 17 | + ), |
|
| 18 | + array( |
|
| 19 | + 'graph' => 'device_ucd_memory', |
|
| 20 | + 'text' => 'Memory Usage' |
|
| 21 | + ), |
|
| 22 | + array( |
|
| 23 | + 'graph' => 'device_storage', |
|
| 24 | + 'text' => 'Storage Usage' |
|
| 25 | + ), |
|
| 26 | + ); |
|
| 27 | 27 | protected $derivates = array( |
| 28 | - 'Debian' => array( |
|
| 29 | - 'icon' => 'debian', |
|
| 30 | - ), |
|
| 31 | - 'CentOS' => array( |
|
| 32 | - 'icon' => 'centos', |
|
| 33 | - ), |
|
| 34 | - 'Ubuntu' => array( |
|
| 35 | - 'icon' => 'ubuntu', |
|
| 36 | - ), |
|
| 37 | - ); |
|
| 28 | + 'Debian' => array( |
|
| 29 | + 'icon' => 'debian', |
|
| 30 | + ), |
|
| 31 | + 'CentOS' => array( |
|
| 32 | + 'icon' => 'centos', |
|
| 33 | + ), |
|
| 34 | + 'Ubuntu' => array( |
|
| 35 | + 'icon' => 'ubuntu', |
|
| 36 | + ), |
|
| 37 | + ); |
|
| 38 | 38 | } |
@@ -10,7 +10,7 @@ |
||
| 10 | 10 | 'ifXmcbc' => true, |
| 11 | 11 | 'ifname' => true, |
| 12 | 12 | ); |
| 13 | - protected $overlib = array( |
|
| 13 | + protected $overlib = array( |
|
| 14 | 14 | array( |
| 15 | 15 | 'graph' => 'device_processor', |
| 16 | 16 | 'text' => 'Processor Usage' |
@@ -15,9 +15,9 @@ |
||
| 15 | 15 | * @return mixed |
| 16 | 16 | */ |
| 17 | 17 | final public function __get($e) { |
| 18 | - if( isset($this->$e) ) { |
|
| 19 | - list($tmp) = explode(" ",$this->device->features); |
|
| 20 | - if( isset($this->derivates[$tmp][$e]) ) { |
|
| 18 | + if (isset($this->$e)) { |
|
| 19 | + list($tmp) = explode(" ", $this->device->features); |
|
| 20 | + if (isset($this->derivates[$tmp][$e])) { |
|
| 21 | 21 | return $this->derivates[$tmp][$e]; |
| 22 | 22 | } |
| 23 | 23 | return $this->$e; |
@@ -10,7 +10,7 @@ |
||
| 10 | 10 | */ |
| 11 | 11 | static public function load(Device $device) { |
| 12 | 12 | $class = 'App\\OS\\'.ucfirst(strtolower($device->os)); |
| 13 | - if( class_exists($class) ) { |
|
| 13 | + if (class_exists($class)) { |
|
| 14 | 14 | return new $class($device); |
| 15 | 15 | } |
| 16 | 16 | return false; //FIXME: Raise Exception |