/**
  * Install the app
  *
  * @author Ruchi Kothari
  *
  * @param int $_pageIndex The Page Index
  *
  * @return bool "true" on Success, "false" otherwise
  */
 public function Install($_pageIndex)
 {
     parent::Install($_pageIndex);
     $this->ImportSettings();
     // ======= Pseudo Cron =======
     SWIFT_Cron::Create('SyncMailChimpSubscription', 'MailChimp', 'BatchSubscription', 'Subscribe', '0', self::TIME_INTERVAL, '0', true);
     return true;
 }
 /**
  * Function that does the heavy execution
  * Calls the parent::Install method for the doing the work
  * Imports module settings to the SWIFT database
  *
  * @author Abhinav Kumar
  *
  * @param int $_pageIndex
  *
  * @return bool
  */
 public function Install($_pageIndex)
 {
     parent::Install($_pageIndex);
     $this->ImportSettings();
     return true;
 }
 /**
  * Function used to install
  *
  * @author Atul Atri
  *
  * @param int $_pageIndex The Page Index
  *
  * @return bool "true" on Success, "false" otherwise
  */
 public function Install($_pageIndex)
 {
     parent::Install($_pageIndex);
     return true;
 }