for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Craft;
/**
* Task Manager.
*
* @author Bob Olde Hampsink <[email protected]>
* @copyright Copyright (c) 2015, Bob Olde Hampsink
* @license MIT
* @link http://github.com/boboldehampsink
*/
class TaskManagerPlugin extends BasePlugin
{
* Get plugin name.
* @return string
public function getName()
return Craft::t('Task Manager');
}
* Get plugin description.
public function getDescription()
return Craft::t('Adds a "Task Manager" section to your CP to easily cancel or delete Craft Tasks.');
* Get plugin version.
public function getVersion()
return '0.4.1';
* Get plugin developer.
public function getDeveloper()
return 'Bob Olde Hampsink';
* Get plugin developer url.
public function getDeveloperUrl()
return 'https://github.com/boboldehampsink';
* Get plugin documentation url.
public function getDocumentationUrl()
return 'https://github.com/boboldehampsink/taskmanager';
* Has Control Panel section.
* @return bool
public function hasCpSection()
return true;