card icons + clone message-modal + re-recur guard (v1.2)
This commit is contained in:
12
Plugin.php
12
Plugin.php
@@ -17,6 +17,9 @@ class Plugin extends Base
|
||||
'template' => 'plugins/RecoReco/Asset/js/recoreco-modal.js',
|
||||
));
|
||||
|
||||
// Board card icon: black on a recurring template, white (inverse) on a generated copy.
|
||||
$this->template->hook->attach('template:board:task:icons', 'recoReco:board/task_icon');
|
||||
|
||||
// The scheduling engine runs from the CLI (cron). Registered CLI-only so web requests do
|
||||
// not build the console app.
|
||||
if (php_sapi_name() === 'cli') {
|
||||
@@ -24,6 +27,13 @@ class Plugin extends Base
|
||||
}
|
||||
}
|
||||
|
||||
public function getHelpers()
|
||||
{
|
||||
return array(
|
||||
'Plugin\RecoReco\Helper' => array('RecoRecoHelper'),
|
||||
);
|
||||
}
|
||||
|
||||
public function getPluginName()
|
||||
{
|
||||
return 'RecoReco';
|
||||
@@ -41,7 +51,7 @@ class Plugin extends Base
|
||||
|
||||
public function getPluginVersion()
|
||||
{
|
||||
return '1.1.2';
|
||||
return '1.2.0';
|
||||
}
|
||||
|
||||
public function getPluginHomepage()
|
||||
|
||||
Reference in New Issue
Block a user