示例#1
0
 /**
  *
  * @return unknown_type
  */
 function onAfterInitialise()
 {
     $success = null;
     if (!$this->isInstalled()) {
         return $success;
     }
     if (!$this->canRun()) {
         return $success;
     }
     Tienda::load('TiendaHelperSubscription', 'helpers.subscription');
     $helper = new TiendaHelperSubscription();
     $helper->checkExpired();
     $helper->checkExpiring();
     return $success;
 }