/**
  * Upgrades the Module
  * Imports/Updates module settings to the SWIFT database
  *
  * @author Abhinav Kumar
  *
  * @param bool $_isForced
  *
  * @return bool
  */
 public function Upgrade($_isForced = false)
 {
     parent::Upgrade($_isForced);
     $this->ImportSettings();
     return true;
 }
 /**
  * Uninstalls the app
  *
  * @author Ruchi Kothari
  * @return bool "true" on Success, "false" otherwise
  */
 public function Uninstall()
 {
     parent::Uninstall();
     SWIFT_Cron::DeleteOnName(array('SyncMailChimpSubscription'));
     return true;
 }
 /**
  * Upgrade the App
  *
  * @author Atul Atri
  *
  * @param bool $_isForced
  *
  * @return bool "true" on Success, "false" otherwise
  */
 public function Upgrade($_isForced = false)
 {
     parent::Upgrade($_isForced);
     return true;
 }
 /**
  * Calls parent class upgrade function
  * Called when a app is uninstalled
  *
  * @author Ashish Kataria
  * @return bool "true" on Success, "false" otherwise
  */
 public function Uninstall()
 {
     parent::Uninstall();
     return true;
 }
 /**
  * Constructor - Calls parent class constructor which sets the module name
  */
 public function __construct()
 {
     parent::__construct('samlsso');
 }