PHPackages                             boboldehampsink/taskmanager - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. boboldehampsink/taskmanager

AbandonedArchivedCraft-plugin

boboldehampsink/taskmanager
===========================

Task Manager Plugin for Craft CMS

0.4.3(9y ago)5319.4k1[1 issues](https://github.com/boboldehampsink/taskmanager/issues)MITPHP

Since Sep 21Pushed 8y ago5 watchersCompare

[ Source](https://github.com/boboldehampsink/taskmanager)[ Packagist](https://packagist.org/packages/boboldehampsink/taskmanager)[ RSS](/packages/boboldehampsink-taskmanager/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (8)Dependencies (1)Versions (10)Used By (0)

DEPRECATED - Task Manager plugin for Craft CMS [![Build Status](https://camo.githubusercontent.com/a4ba2a6bed82e93ce84541d43165b1a5fba436ed5cabe0b1013d6c8450cc08ba/68747470733a2f2f7472617669732d63692e6f72672f626f626f6c646568616d7073696e6b2f7461736b6d616e616765722e7376673f6272616e63683d646576656c6f70)](https://travis-ci.org/boboldehampsink/taskmanager) [![Scrutinizer Code Quality](https://camo.githubusercontent.com/eb5a0d3afb7460277d88c0cc59634f493b3d610a0fdcca259f98bc587d6dc813/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f626f626f6c646568616d7073696e6b2f7461736b6d616e616765722f6261646765732f7175616c6974792d73636f72652e706e673f623d646576656c6f70)](https://scrutinizer-ci.com/g/boboldehampsink/taskmanager/?branch=develop) [![Code Coverage](https://camo.githubusercontent.com/79056fbbd3555c810d7451daa89acece9ea4e631eb743764664c4a8373bd021e/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f626f626f6c646568616d7073696e6b2f7461736b6d616e616765722f6261646765732f636f7665726167652e706e673f623d646576656c6f70)](https://scrutinizer-ci.com/g/boboldehampsink/taskmanager/?branch=develop) [![Latest Stable Version](https://camo.githubusercontent.com/7f2cc3d5b5df5045ded3c5a02e5fb2ba98eca91c9d284a9e57fb2cd7164e171d/68747470733a2f2f706f7365722e707567782e6f72672f626f626f6c646568616d7073696e6b2f7461736b6d616e616765722f762f737461626c65)](https://packagist.org/packages/boboldehampsink/taskmanager) [![Total Downloads](https://camo.githubusercontent.com/fcd0039457f8ff250d2206202968a8597c5ec716322bd830fc6763415539ef5b/68747470733a2f2f706f7365722e707567782e6f72672f626f626f6c646568616d7073696e6b2f7461736b6d616e616765722f646f776e6c6f616473)](https://packagist.org/packages/boboldehampsink/taskmanager) [![Latest Unstable Version](https://camo.githubusercontent.com/d2ffbe4d9706ffaa873b72a0d079e19dca005bd7d881caaef31c637500c46511/68747470733a2f2f706f7365722e707567782e6f72672f626f626f6c646568616d7073696e6b2f7461736b6d616e616765722f762f756e737461626c65)](https://packagist.org/packages/boboldehampsink/taskmanager) [![License](https://camo.githubusercontent.com/44fbb4bc6d1d54f91d389fa4d7e0f9c7ebd339717ff6643e42b56b3b47107172/68747470733a2f2f706f7365722e707567782e6f72672f626f626f6c646568616d7073696e6b2f7461736b6d616e616765722f6c6963656e7365)](https://packagist.org/packages/boboldehampsink/taskmanager)
==================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================

[](#deprecated---task-manager-plugin-for-craft-cms-------)

Adds a "Task Manager" section to your CP to easily cancel or delete Craft Tasks.

**Important**

- The plugin's folder should be named "taskmanager"

Deprecated
==========

[](#deprecated)

With the release of Craft 3 on 4-4-2018, this plugin has been deprecated. You can still use this with Craft 2 but you are encouraged to use (and develop) a Craft 3 version. At this moment, I have no plans to do so.

Features
========

[](#features)

- View detail task info
- Cancel running tasks
- Rerun running or failed tasks
- If you set up a cronjob to run /actions/taskManager/rerunAllFailedTasks, you can automatically rerun failed tasks
- Comes with two console commands, one to run pending tasks and one to watch for pending tasks and run them.
- Has an endpoint for Hirefire, see

To run pending tasks just run

```
./craft/app/etc/console/yiic taskmanager run

```

To watch for pending tasks and them run them, run

```
./craft/app/etc/console/yiic taskmanager watch

```

Development
===========

[](#development)

Run this from your Craft installation to test your changes to this plugin before submitting a Pull Request

```
phpunit --bootstrap craft/app/tests/bootstrap.php --configuration craft/plugins/taskmanager/phpunit.xml.dist --coverage-clover coverage.clover craft/plugins/taskmanager/tests
```

Changelog
=========

[](#changelog)

### 0.4.3

[](#043)

- Added the ability to get pending tasks in Hirefire.io format
- Recycle db connection

### 0.4.2

[](#042)

- Fixed bug with reading default config values

### 0.4.1

[](#041)

- Added the ability to control the watch interval via the `taskInterval` config setting

### 0.4.0

[](#040)

- Added the ability to run and watch for tasks via the command line.

### 0.3.1

[](#031)

- Updated the plugin for Craft 2.5
- The hook "modifyTaskManagerAttributes" is now "defineAdditionalTaskManagerTableAttributes"
- Added description and documentation url

### 0.3.0

[](#030)

- Added sources by type
- Replaced action buttons by element actions
- Added endpoint for rerunning all failed tasks
- Added the ability to restart hanging tasks after a given timeout
- Added "modifyTaskManagerSources" hook
- Added "addTaskManagerActions" hook
- Added "modifyTaskManagerTableAttributes" hook
- Added "getTaskManagerTableAttributeHtml" hook
- Added "modifyTaskManagerSortableAttributes"

### 0.2.0

[](#020)

- Added the ability to restart a task
- Deleting a task is now more graceful

### 0.1.0

[](#010)

- Initial release

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity31

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~40 days

Recently: every ~23 days

Total

8

Last Release

3605d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3dd0df0464b4919048281ee42a9210f4323e8f3a78d046067e550992e4a5fb7e?d=identicon)[boboldehampsink](/maintainers/boboldehampsink)

---

Top Contributors

[![scrutinizer-auto-fixer](https://avatars.githubusercontent.com/u/6253494?v=4)](https://github.com/scrutinizer-auto-fixer "scrutinizer-auto-fixer (4 commits)")

### Embed Badge

![Health badge](/badges/boboldehampsink-taskmanager/health.svg)

```
[![Health](https://phpackages.com/badges/boboldehampsink-taskmanager/health.svg)](https://phpackages.com/packages/boboldehampsink-taskmanager)
```

###  Alternatives

[elgg/elgg

Elgg is an award-winning social networking engine, delivering the building blocks that enable businesses, schools, universities and associations to create their own fully-featured social networks and applications.

1.7k15.7k5](/packages/elgg-elgg)[pressbooks/pressbooks

Pressbooks is an open source book publishing tool built on a WordPress multisite platform. Pressbooks outputs books in multiple formats, including PDF, EPUB, web, and a variety of XML flavours, using a theming/templating system, driven by CSS.

44643.1k1](/packages/pressbooks-pressbooks)[johnbillion/user-switching

Instant switching between user accounts in WordPress and WooCommerce.

19768.3k2](/packages/johnbillion-user-switching)[rainlab/blog-plugin

Blog plugin for October CMS

17257.7k](/packages/rainlab-blog-plugin)[rainlab/user-plugin

User plugin for October CMS

11954.3k13](/packages/rainlab-user-plugin)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
