firefly-iii/app/Models/LimitRepetition.php

62 lines
1.2 KiB
PHP
Raw Normal View History

2015-02-27 09:48:33 -06:00
<?php namespace FireflyIII\Models;
use Auth;
2015-05-23 01:46:46 -05:00
use Crypt;
use DB;
2015-02-27 09:48:33 -06:00
use Illuminate\Database\Eloquent\Model;
/**
* Class LimitRepetition
*
* @package FireflyIII\Models
*/
class LimitRepetition extends Model
{
/**
* @codeCoverageIgnore
2015-02-27 09:48:33 -06:00
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function budgetLimit()
{
return $this->belongsTo('FireflyIII\Models\BudgetLimit');
}
/**
* @codeCoverageIgnore
2015-02-27 09:48:33 -06:00
* @return array
*/
public function getDates()
{
return ['created_at', 'updated_at', 'startdate', 'enddate'];
}
2015-05-23 01:46:46 -05:00
/**
* @param $value
*
* @return float|int
*/
public function getAmountAttribute($value)
{
if (is_null($this->amount_encrypted)) {
return $value;
}
$value = intval(Crypt::decrypt($this->amount_encrypted));
$value = $value / 100;
return $value;
}
/**
* @param $value
*/
public function setAmountAttribute($value)
{
// save in cents:
$value = intval($value * 100);
$this->attributes['amount_encrypted'] = Crypt::encrypt($value);
$this->attributes['amount'] = ($value / 100);
}
2015-02-27 09:48:33 -06:00
}