PHPackages                             mediawiki/semantic-tasks - 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. [Mail &amp; Notifications](/categories/mail)
4. /
5. mediawiki/semantic-tasks

ActiveMediawiki-extension[Mail &amp; Notifications](/categories/mail)

mediawiki/semantic-tasks
========================

2.0.1(5y ago)71.0k↓100%6[2 PRs](https://github.com/SemanticMediaWiki/SemanticTasks/pulls)GPL-2.0-or-laterPHPCI failing

Since Nov 29Pushed 2mo ago11 watchersCompare

[ Source](https://github.com/SemanticMediaWiki/SemanticTasks)[ Packagist](https://packagist.org/packages/mediawiki/semantic-tasks)[ Docs](https://www.mediawiki.org/wiki/Extension:Semantic_Tasks)[ RSS](/packages/mediawiki-semantic-tasks/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (4)Versions (5)Used By (0)

Semantic Tasks
==============

[](#semantic-tasks)

[![Build Status](https://camo.githubusercontent.com/185ff8acf3c85e8cfd55265545885df4d1312c603e833b14f5735f2608161dad/68747470733a2f2f7472617669732d63692e6f72672f53656d616e7469634d6564696157696b692f53656d616e7469635461736b732e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/SemanticMediaWiki/SemanticTasks)[![Code Coverage](https://camo.githubusercontent.com/5eb12c9e7fd54e416fae9197e02d3d3e6d2316248ea68efcddce79bbeb7b6594/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f53656d616e7469634d6564696157696b692f53656d616e7469635461736b732f6261646765732f636f7665726167652e706e673f733d63353536336664393161626562343962333761366566393939313938353330623637393664643363)](https://scrutinizer-ci.com/g/SemanticMediaWiki/SemanticTasks/)[![Scrutinizer Quality Score](https://camo.githubusercontent.com/8ff4b1f40c26aa3bd3b2f9fd141dd0a1d2e4edee127375e0ec22b0f1cfafb69e/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f53656d616e7469634d6564696157696b692f53656d616e7469635461736b732f6261646765732f7175616c6974792d73636f72652e706e673f733d39636338636534393366363366356332633232646237316232303631623462386332316634336261)](https://scrutinizer-ci.com/g/SemanticMediaWiki/SemanticTasks/)[![Latest Stable Version](https://camo.githubusercontent.com/3f32c2c63cfaac59e86286476acaab9b57ff1fd99b352775d34d04c53116077c/68747470733a2f2f706f7365722e707567782e6f72672f6d6564696177696b692f73656d616e7469632d7461736b732f76657273696f6e2e706e67)](https://packagist.org/packages/mediawiki/semantic-tasks)[![Packagist download count](https://camo.githubusercontent.com/7b1d97f1207b796a3f0606deaf0b76dbd4f5b7cc5a10b2137c2cc1418dbb377c/68747470733a2f2f706f7365722e707567782e6f72672f6d6564696177696b692f73656d616e7469632d7461736b732f642f746f74616c2e706e67)](https://packagist.org/packages/mediawiki/semantic-tasks)

Semantic Tasks (a.k.a. ST) is a [Semantic Mediawiki](https://github.com/SemanticMediaWiki/SemanticMediaWiki) extension that provides task notification and reminder emails with the help of semantic annotations.

In contrast to the built in notification systems in MediaWiki (watching pages), this extension can be used to trigger notifications without user interaction with the MediaWiki system, e. g. by filling in a form (using the PageForms extension) where a user name is entered in a form and in the resulting template the respective properties are set to trigger a email notification (see below).

Requirements
------------

[](#requirements)

- PHP 7.3 or later
- MediaWiki 1.35 or later
- Semantic MediaWiki 3.2 or later

Installation
------------

[](#installation)

The recommended way to install Semantic Tasks is using [Composer](http://getcomposer.org) with [MediaWiki's built-in support for Composer](https://www.mediawiki.org/wiki/Composer).

Note that the required extension Semantic MediaWiki must be installed first according to the installation instructions provided.

### Step 1

[](#step-1)

Change to the base directory of your MediaWiki installation. If you do not have a "composer.local.json" file yet, create one and add the following content to it:

```
{
	"require": {
		"mediawiki/semantic-tasks": "dev-master"
	}
}

```

If you already have a "composer.local.json" file add the following line to the end of the "require" section in your file:

```
"mediawiki/semantic-tasks": "dev-master"

```

Remember to add a comma to the end of the preceding line in this section.

### Step 2

[](#step-2)

Run the following command in your shell:

```
php composer.phar update --no-dev

```

Note if you have Git installed on your system add the `--prefer-source` flag to the above command.

### Step 3

[](#step-3)

Add the following line to the end of your "LocalSettings.php" file:

```
wfLoadExtension( 'SemanticTasks' );

```

### Step 4

[](#step-4)

You must run a cron job e.g. once a day to trigger the reminders to be sent by e-mail. To do so add the following line to your crontab to execute the respective script every day at 12:

```
0 12 * * * php /path/to/SemanticTasks/maintenance/checkForReminders.php

```

### Step 5

[](#step-5)

It is possible to adapt the names of the properties for your wiki via configuration in the "LocalSettings.php" file. This is an optional step if you would like to use different property names. This is the list of default settings:

- `$stgPropertyAssignedTo = 'Assigned to';`
- `$stgPropertyCarbonCopy = 'Carbon copy';`
- `$stgPropertyTargetDate = 'Target date';`
- `$stgPropertyReminderAt = 'Reminder at';`
- `$stgPropertyStatus = 'Status';`
- `$stgPropertyAssignedToGroup = 'Assigned to group';`
- `$stgPropertyHasAssignee = 'Has assignee';`

Configuration
-------------

[](#configuration)

- `SemanticTasksNotifyIfUnassigned` - (default: `false`) If set to `true` will notify users being unassigned from tasks
- `$stgNotificationFromSystemAddress` - (default: `false`) If set to `true` will use `$wgSiteName` and `$wgPasswordSender` for notification emails From field

Usage
-----

[](#usage)

### Notification emails

[](#notification-emails)

They are sent as soon a page is saved. The system looks for the `[[Assigned to::*]]`, `[[Carbon copy::*]]` and/or `[[Assigned to group::*]]` properties.

### Groups

[](#groups)

Create a group page with properties `[[Has assignee::*]]` and then assign the group to the task with `[[Assigned to group::*]]` property.

### Status

[](#status)

Set Status to `[[Status::Closed]]` to inform assignees that the task has been closed and to disable notifications and reminders.

### Reminder emails

[](#reminder-emails)

Once the script execution is triggered via cron the software looks for the `[[Reminder at::*]]` and the `[[Target date::*]]` property. It then sends reminders to all the assignees.

Contribution and support
------------------------

[](#contribution-and-support)

If you want to contribute work to the project please subscribe to the developers mailing list and have a look at the contribution guideline.

- [File an issue](https://github.com/SemanticMediaWiki/SemanticCite/issues)
- [Submit a pull request](https://github.com/SemanticMediaWiki/SemanticCite/pulls)
- Ask a question on [the mailing list](https://www.semantic-mediawiki.org/wiki/Mailing_list)

Version history
---------------

[](#version-history)

See [release notes](docs/RELEASE-NOTES.md).

Credits
-------

[](#credits)

Semantic Tasks was initially created by Steren Giannini for Creative Commons. Later it was sponsored by KDZ - Centre for Public Administration Research, with most upgrade work done by [Peter Grassberger](https://github.com/PeterTheOne). Currently it is sponsored by [KM-A Knowledge Management Associates](https://km-a.net/knowledge-wiki/), with most upgrade work done by [thomas-topway-it](https://github.com/thomas-topway-it).

License
-------

[](#license)

[GNU General Public License, version 2 or later](https://www.gnu.org/copyleft/gpl.html), see [COPYING](COPYING) file.

###  Health Score

43

—

FairBetter than 91% of packages

Maintenance56

Moderate activity, may be stable

Popularity24

Limited adoption so far

Community28

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~362 days

Total

2

Last Release

1990d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/451bd4039d530fed8f9c3da91bfa519233a397d2182cdfdcad700f6cfea19b7f?d=identicon)[Jeroen De Dauw](/maintainers/Jeroen%20De%20Dauw)

![](https://avatars.githubusercontent.com/u/22235?v=4)[Stefan Wasilewski](/maintainers/SMW)[@smw](https://github.com/smw)

![](https://www.gravatar.com/avatar/372f9bc1233d5518b9522cb681210a8de2765a3a9bbde20138f6ad5332a411ca?d=identicon)[mwjames](/maintainers/mwjames)

![](https://avatars.githubusercontent.com/u/1104078?v=4)[Karsten Hoffmeyer](/maintainers/kghbln)[@kghbln](https://github.com/kghbln)

---

Top Contributors

[![translatewiki](https://avatars.githubusercontent.com/u/24829418?v=4)](https://github.com/translatewiki "translatewiki (125 commits)")[![PeterTheOne](https://avatars.githubusercontent.com/u/666289?v=4)](https://github.com/PeterTheOne "PeterTheOne (66 commits)")[![thomas-topway-it](https://avatars.githubusercontent.com/u/46287689?v=4)](https://github.com/thomas-topway-it "thomas-topway-it (47 commits)")[![JeroenDeDauw](https://avatars.githubusercontent.com/u/146040?v=4)](https://github.com/JeroenDeDauw "JeroenDeDauw (22 commits)")[![krabina](https://avatars.githubusercontent.com/u/4318745?v=4)](https://github.com/krabina "krabina (12 commits)")[![kghbln](https://avatars.githubusercontent.com/u/1104078?v=4)](https://github.com/kghbln "kghbln (8 commits)")[![paladox](https://avatars.githubusercontent.com/u/5727000?v=4)](https://github.com/paladox "paladox (6 commits)")[![mwjames](https://avatars.githubusercontent.com/u/1245473?v=4)](https://github.com/mwjames "mwjames (4 commits)")[![umherirrender](https://avatars.githubusercontent.com/u/1174884?v=4)](https://github.com/umherirrender "umherirrender (3 commits)")[![kizule](https://avatars.githubusercontent.com/u/28963303?v=4)](https://github.com/kizule "kizule (3 commits)")[![reedy](https://avatars.githubusercontent.com/u/67615?v=4)](https://github.com/reedy "reedy (2 commits)")[![siebrand](https://avatars.githubusercontent.com/u/210297?v=4)](https://github.com/siebrand "siebrand (2 commits)")[![vedmaka](https://avatars.githubusercontent.com/u/592009?v=4)](https://github.com/vedmaka "vedmaka (2 commits)")[![legoktm](https://avatars.githubusercontent.com/u/81392?v=4)](https://github.com/legoktm "legoktm (2 commits)")[![yaronkoren](https://avatars.githubusercontent.com/u/1278687?v=4)](https://github.com/yaronkoren "yaronkoren (1 commits)")[![hashar](https://avatars.githubusercontent.com/u/281689?v=4)](https://github.com/hashar "hashar (1 commits)")[![Ladsgroup](https://avatars.githubusercontent.com/u/5351225?v=4)](https://github.com/Ladsgroup "Ladsgroup (1 commits)")[![mtyeh411](https://avatars.githubusercontent.com/u/699362?v=4)](https://github.com/mtyeh411 "mtyeh411 (1 commits)")[![NikitaRana07](https://avatars.githubusercontent.com/u/35731076?v=4)](https://github.com/NikitaRana07 "NikitaRana07 (1 commits)")[![shirayuki](https://avatars.githubusercontent.com/u/18039?v=4)](https://github.com/shirayuki "shirayuki (1 commits)")

---

Tags

e-mailmwnotificationssemanticsemantic-mediawikismwstmediawikiwikiSMWSemantic MediaWiki

### Embed Badge

![Health badge](/badges/mediawiki-semantic-tasks/health.svg)

```
[![Health](https://phpackages.com/badges/mediawiki-semantic-tasks/health.svg)](https://phpackages.com/packages/mediawiki-semantic-tasks)
```

###  Alternatives

[mediawiki/semantic-media-wiki

An extension to MediaWiki that lets you store and query structured data within wiki pages

586361.8k33](/packages/mediawiki-semantic-media-wiki)[mediawiki/semantic-result-formats

Provides additional result formats for queries using Semantic MediaWiki

51180.7k1](/packages/mediawiki-semantic-result-formats)[mediawiki/semantic-extra-special-properties

Provides extra special properties for Semantic MediaWiki

3074.6k1](/packages/mediawiki-semantic-extra-special-properties)[mediawiki/semantic-breadcrumb-links

An extension to Semantic MediaWiki allowing to build breadcrumb links from an attributive property filter

1921.8k](/packages/mediawiki-semantic-breadcrumb-links)[mediawiki/semantic-scribunto

A Semantic Mediawiki extension to natively support the Scribunto extension

2967.5k](/packages/mediawiki-semantic-scribunto)[mediawiki/semantic-cite

A Semantic MediaWiki extension to manage citation resources.

2310.2k1](/packages/mediawiki-semantic-cite)

PHPackages © 2026

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