mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-27 17:31:09 -06:00
48 lines
1023 B
PHP
48 lines
1023 B
PHP
|
<?php
|
||
|
/**
|
||
|
* PrependDescription.php
|
||
|
* Copyright (C) 2016 Sander Dorigo
|
||
|
*
|
||
|
* This software may be modified and distributed under the terms
|
||
|
* of the MIT license. See the LICENSE file for details.
|
||
|
*/
|
||
|
|
||
|
namespace FireflyIII\Rules\Actions;
|
||
|
|
||
|
use FireflyIII\Models\RuleAction;
|
||
|
use FireflyIII\Models\TransactionJournal;
|
||
|
|
||
|
/**
|
||
|
* Class AppendDescription
|
||
|
*
|
||
|
* @package FireflyIII\Rules\Actions
|
||
|
*/
|
||
|
class PrependDescription implements ActionInterface
|
||
|
{
|
||
|
|
||
|
private $action;
|
||
|
private $journal;
|
||
|
|
||
|
/**
|
||
|
* TriggerInterface constructor.
|
||
|
*
|
||
|
* @param RuleAction $action
|
||
|
* @param TransactionJournal $journal
|
||
|
*/
|
||
|
public function __construct(RuleAction $action, TransactionJournal $journal)
|
||
|
{
|
||
|
$this->action = $action;
|
||
|
$this->journal = $journal;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function act()
|
||
|
{
|
||
|
$this->journal->description = $this->action->action_value . $this->journal->description;
|
||
|
$this->journal->save();
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
}
|