6 minutes reading time (1192 words)

Scheduled Tasks

November-TaskScheduler

Since version 4.1 (and so also in 5.x series) Joomla introduced a very interesting new feature called "Scheduled Tasks".

Even though it has been present for more than two years, everytime I exchange with other Joomlers I realize that the majority has overlooked the power of this feature.

So the goal of this article is to shed some light on the possibilities at the hand of different examples / usecases:

  • some are native Plugins, ready to be used within Joomla
  • some are third-party Plugins, typically open source and available for free on Github
  • and of course the whole idea is that you can also create your own, in order to meet your specific needs

Other sources about the Task Scheduler

Quite luckily different people have already produced interesting content about the Task Scheduler.

So let me start by thanking and referencing them:

Scheduled Tasks - native Plugins

Go to your backend > System > Scheduled Tasks.

Click on the New button and see what is already natively available in J5:

  • Delete ActionLogs - Task
    Delete Action logs after days
  • Expiration of privacy consents
    Manage the expiration of privacy consents
  • Rotate Logs
    Periodically rotates log files.
  • Task - Session Data Purge
    Task Plugin that purges expired data and metadata depending on the session handler set in Global Configuration.
  • Joomla! Update Notification
    This task periodically checks for the availability of new Joomla! versions. When one is found it will send you an email, reminding you to update. You can customise the email
  • Image Size Check
    Check images, resize if larger than allowed. Attention: The original file will be overwritten!
  • GET Request
    Make GET requests to a server. Supports a custom timeout and authorization headers.
  • Toggle Offline
    Toggles the site's status on each run.
  • Set Site Online
    Sets site status to online on each run.
  • Set Site Offline
    Sets site status to offline on each run.
  • Global Check-in
    Check in checked out items.

My favourite ones are:

  • Global Check-in
    Gosh, how many times end-users called me in the last ten years because they were editing from the front-end but some Articles were "checked out" by "accident", preventing them from opening them. Every time I would have to go to the back-end to "check-in" all Items.
    Now I can automate this action every night at 3PM for example
  • Image Size Check
    In many cases you want to have a maximum width or height for images in a given Folder. But even if you make your end-users aware of the importance or resizing (in order to have a better performance for the visitors but also to have smaller backups etc) still people "forget" to resize their images.
    Now I can for given Folders automatically resize the images (for example I set a maximum width of 600 pixels for all images in the Newsletter folder)
  • Get request
    For some of my websites, I need to trigger some synchronization thanks to a script which is accessible on a given URL.
    The Get request does exactly that...

Scheduled Tasks - third-party Plugins

A Task Scheduler to check-in all your Content in J4

As mentioned above, in Joomla 5 there is a Native Plugin to check-in all your Content. But what is your website is still running J4?

See https://github.com/zero-24/plg_task_checkin

A Task Scheduler to auto-delete files

What about auto-deleting files older than a certain timeframe in a given folder only (and not its subfolders)

See https://github.com/TLWebdesignNL/Auto-Delete-Files-Task-Scheduler-Plugin

A Task Scheduler to change different Parameters of Articles automatically

What about being able to move Articles to other Categories in function of a certain date (or do similar things)

Task Scheduler – Kick Manage Article

A Task Scheduler to move articles from some Category to another Category when older than X days, based on the following dates:

  • created
  • modified
  • published
  • unpublished

See https://github.com/Kicktemp/plg_task_kickmanagearticle  

Task Scheduler – CCC Timewarp (coming soon)

With this plugin, you can

  • move your Articles to a different Category depending on a certain Date
  • change the publication Status
  • adjust the Access Level
  • ...

This is particularly practical if you use Joomla Articles to display Events, but also, for example, to make your news only available to a closed circle for x days and only make them public after some time.

NB: on top of the usual Types of Dates, you can also use a Custom Field of Type Date in your conditions, which is handy.

See https://coolcat-campus.com/en/ 

A Task Scheduler to Reset Hits

For a given project where I needed to display "the most popular Films of the month", I wanted to reset the number of Hits on the 1st day of every month.

See https://github.com/woluweb/plg_task_resethits 

A Task Scheduler to synchronize my Custom Fields with some external Web Service

Yet for another project I needed to synchronize the value of 20 Custom Fields for 300 Articles with the latest data coming from some external Web Service.

Let's take a practical example: social.brussels is a kind of Directory of all Social Services and Associations in Brussels. You can access the details of each organization

On the Joomla website there are hundreds of articles having Custom Fields for the Address, Phone number etc.
So the idea was to automate a daily synchronization between the external source and our website so that the end users would not spend hours every month checking whether some information were outdated since last time...

See https://github.com/dgrammatiko/plg_task_json2cf

A Task Scheduler coming along some Extensions

As mentioned in the Sources, some extensions provide their own Task Schedulers. Examples:

Scheduled Tasks - create your own (and share)!

As you can see from the above-mentioned examples, the sky is the limit: for every need you can invent your own Scheduled Task.

This would be a nice topic for (yet) another article in the Joomla Community Magazine in the coming months: develop different nice usecases for Scheduled Tasks like:

  • connect your website with Zapier or other similar services
  • modify some Custom Field value based on some conditions
  • reset the password of (some) users every n months
  • do some database work (optimizing, ...)
  • check and notify for updates
  • check for system modifications (PHP version, execution time, ...)
  • interact with your newsletter extension
  • interact with your e-commerce extension (abandoned carts, ...)
  • send Push Notifications (OneSignal, ...)
  • send SMS (Twillio, ...)
  • ...

So please share in the comments below your ideas/suggestions of Scheduled Tasks!
And if you already wrote one, please share the link so that everybody can enjoy...

1
The promise you made
What is GPL, and why is it so important?
 

Comments 2

Already Registered? Login Here
Marc Dechèvre on Monday, 04 March 2024 15:38
Another example of Scheduled Task

At JoomlaCamp 24 in Essen I met Claudia who shared her own Schuleled Task: https://github.com/coweb01/Master-task_wbcdorfapp

It reads an external API (a kind of Job Board) and feeds Joomla Articles of a given Category.

Official description: API interface for Apicodo Dorfapp. Task plugin to import the data time-controlled via the APICODO API. A category must be selected in the plugin to which the data records can be transferred. With each new request, all data records in the category are deleted and rewritten.

0
At JoomlaCamp 24 in Essen I met Claudia who shared her own Schuleled Task:[url=https://github.com/coweb01/Master-task_wbcdorfapp] https://github.com/coweb01/Master-task_wbcdorfapp[/url] It reads an external API (a kind of Job Board) and feeds Joomla Articles of a given Category. Official description: [i]API interface for Apicodo Dorfapp. Task plugin to import the data time-controlled via the APICODO API. A category must be selected in the plugin to which the data records can be transferred. With each new request, all data records in the category are deleted and rewritten.[/i]
Marc Dechèvre on Saturday, 13 April 2024 11:48
Updated version of this article

An updated version of this article with more than 10 third-party Scheduled Tasks has been published on the occasion of JoomlaDay USA yesterday.
See https://slides.woluweb.be/tasks/tasks.html

0
An updated version of this article with more than 10 third-party Scheduled Tasks has been published on the occasion of JoomlaDay USA yesterday. See [url=https://slides.woluweb.be/tasks/tasks.html]https://slides.woluweb.be/tasks/tasks.html[/url]

By accepting you will be accessing a service provided by a third-party external to https://magazine.joomla.org/