Search code examples
controllercakephp-2.0cakephp-2.3cron-task

CakePHP 2.3.8: Calling Another Controller function in CronController.php


For CakePHP 2.3.8 How can I call Another Controller function in CronController.php

Any ideas?


Solution

  • Below is the code:

    App::import('Controller', 'Products'); // mention at top
    
    // Instantiation // mention within cron function
    $Products = new ProductsController;
    // Call a method from
    $Products->ControllerFunction();
    

    Hope it helps some one !