![]() |
task scheduler - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Development (https://forum.codeigniter.com/forumdisplay.php?fid=6) +--- Forum: CodeIgniter 3.x (https://forum.codeigniter.com/forumdisplay.php?fid=17) +--- Thread: task scheduler (/showthread.php?tid=75787) |
task scheduler - mubashirkhan263 - 03-17-2020 Hello everyone, So I am trying to create a task by using PHP library lavary/crunz and I have set it up with Codeigniter but I am facing a little issue and I can't find it on the internet or may I am searching by the right keyword but anyways here is the issue I have created my task file into project/application/libraries/tasks filename FirstTasks.php PHP Code: <?php in the above code I initialize NoticeJob which is located into project/application/libraries/ filename NoticeJob.php and it is a plan class like writing a new library PHP Code: <?php now I want to call this class function into my task file which is just a php script and as you see I have already tried to call it. can any help me into this ? please let me know if you need more information Thank you |