mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	* Test WIP * WIP * port getComponents to Eloquent * port more * simpler creation * change to explicit arrays * add missed file * restore commented code * fix inserting null value for component prefs * Fix some bugs in setCompenentPrefs Can't create tests without fixing bugs first :D * another test * another test * Modernize setComponentPrefs * Test for event log entries * Fix delete event * fix invalid values for component toggles * status log too * Use Setters to work around bad data, $casts doesn't do what we want.
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Component.php
 | |
|  *
 | |
|  * -Description-
 | |
|  *
 | |
|  * This program is free software: you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU General Public License as published by
 | |
|  * the Free Software Foundation, either version 3 of the License, or
 | |
|  * (at your option) any later version.
 | |
|  *
 | |
|  * This program is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
 | |
|  * GNU General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU General Public License
 | |
|  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | |
|  *
 | |
|  * @package    LibreNMS
 | |
|  * @link       http://librenms.org
 | |
|  * @copyright  2018 Tony Murray
 | |
|  * @author     Tony Murray <murraytony@gmail.com>
 | |
|  */
 | |
| 
 | |
| namespace App\Models;
 | |
| 
 | |
| class Component extends DeviceRelatedModel
 | |
| {
 | |
|     public $timestamps = false;
 | |
|     protected $table = 'component';
 | |
|     protected $fillable = ['device_id', 'type', 'label', 'status', 'disabled', 'ignore', 'error'];
 | |
| 
 | |
|     // ---- Accessors/Mutators ----
 | |
| 
 | |
|     public function setStatusAttribute($status)
 | |
|     {
 | |
|         $this->attributes['status'] = (int)$status;
 | |
|     }
 | |
| 
 | |
|     public function setDisabledAttribute($disabled)
 | |
|     {
 | |
|         $this->attributes['disabled'] = (int)$disabled;
 | |
|     }
 | |
| 
 | |
|     public function setIgnoreAttribute($ignore)
 | |
|     {
 | |
|         $this->attributes['ignore'] = (int)$ignore;
 | |
|     }
 | |
| 
 | |
|     // ---- Define Relationships ----
 | |
| 
 | |
|     public function logs()
 | |
|     {
 | |
|         return $this->hasMany(\App\Models\ComponentStatusLog::class, 'component_id', 'id');
 | |
|     }
 | |
| 
 | |
|     public function prefs()
 | |
|     {
 | |
|         return $this->hasMany(\App\Models\ComponentPref::class, 'component', 'id');
 | |
|     }
 | |
| }
 |