/**
  * Imports app settings and calls parent class upgrade function
  * Called when a app is upgraded
  *
  * @author Ashish Kataria
  * @return bool "true" on Success, "false" otherwise
  */
 public function Upgrade()
 {
     $this->ImportSettings();
     return parent::Upgrade();
 }
 /**
  * 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;
 }
 /**
  * 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;
 }