23-Nov-2022, 06:23 AM
Hi! Can I set exact time for deleting comments in tasks section? Need to delete all comments every day at 2 a.m.
<?php
$last_task = $this->setting->get('last_task');
<?php
/* If the current hour isn't 2am */
if (date('G') != 2) {
return; // go back
}