Skip to content

Create Scheduled/Recurring Tasks In Codeigniter Application using Atrigger API,

License

Notifications You must be signed in to change notification settings

ashfaq-ahmed/Atrigger-API-Codeigniter-Library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Atrigger-API-Codeigniter-Library

Create Scheduled and/or recurring Tasks In Codeigniter Application using Atrigger PHP library,

Getting Started

1) Create an account at Atrigger.com to obtain API key and Secret.
  1. Define your API key and Secret in the Application/Config/trigger.php.

Example Usage

To create a scheduled task, in your controller,
$this->load->library('Trigger');
$tags = array();
$tags['type']='test';
$this->trigger->doCreate("1month", "http://www.example.com/myTask?something", $tags);

To delete a Task

$this->load->library('Trigger');
$tags = array();
$tags['type']='test';
$this->trigger->doDelete($tags);

You can have a look at all available functions here

About

Create Scheduled/Recurring Tasks In Codeigniter Application using Atrigger API,

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages