Cachet/app/models/Metric.php

32 lines
785 B
PHP
Raw Normal View History

2014-11-25 11:19:20 +00:00
<?php
use Watson\Validating\ValidatingTrait;
2014-11-25 21:35:52 +00:00
class Metric extends Eloquent implements \Dingo\Api\Transformer\TransformableInterface {
use ValidatingTrait;
2014-11-25 21:35:52 +00:00
protected $rules = [
'name' => 'required',
'suffix' => 'required',
'display_chart' => 'boolean',
];
2014-11-25 21:35:52 +00:00
protected $fillable = ['name', 'suffix', 'description', 'display_chart'];
2014-11-25 21:35:52 +00:00
/**
* Determines whether a chart should be shown.
* @return bool
*/
public function getShouldDisplayAttribute() {
return $this->display_chart === 1;
}
/**
* Get the transformer instance.
*
* @return MetricTransformer
*/
public function getTransformer() {
return new CachetHQ\Cachet\Transformers\MetricTransformer();
}
}