mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
63 lines
1.2 KiB
PHP
63 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Event;
|
|
|
|
use Core\Listener;
|
|
use Model\Project;
|
|
|
|
/**
|
|
* Project modification date listener
|
|
*
|
|
* Update the last modified field for a project
|
|
*
|
|
* @package event
|
|
* @author Frederic Guillot
|
|
*/
|
|
class ProjectModificationDate implements Listener
|
|
{
|
|
/**
|
|
* Project model
|
|
*
|
|
* @accesss private
|
|
* @var \Model\Project
|
|
*/
|
|
private $project;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @access public
|
|
* @param \Model\Project $project Project model instance
|
|
*/
|
|
public function __construct(Project $project)
|
|
{
|
|
$this->project = $project;
|
|
}
|
|
|
|
/**
|
|
* Return class information
|
|
*
|
|
* @access public
|
|
* @return string
|
|
*/
|
|
public function __toString()
|
|
{
|
|
return get_called_class();
|
|
}
|
|
|
|
/**
|
|
* Execute the action
|
|
*
|
|
* @access public
|
|
* @param array $data Event data dictionary
|
|
* @return bool True if the action was executed or false when not executed
|
|
*/
|
|
public function execute(array $data)
|
|
{
|
|
if (isset($data['project_id'])) {
|
|
return $this->project->updateModificationDate($data['project_id']);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|