Пример #1
0
 /**
  * Initializes the service.
  *
  * @return bool
  */
 public function init()
 {
     return parent::init() && $this->getRsaEncryptionDecoder()->isAvailable();
 }
Пример #2
0
 /**
  * Initializes the service.
  *
  * @return bool
  */
 public function init()
 {
     $available = parent::init();
     if ($available) {
         // Get the backend
         $this->backend = \TYPO3\CMS\Rsaauth\Backend\BackendFactory::getBackend();
         if ($this->backend === NULL) {
             $available = FALSE;
         }
     }
     return $available;
 }
Пример #3
0
 /**
  * Initialization of the service 
  *
  * 
  * @return int|True if available
  */
 public function init()
 {
     //\TYPO3\CMS\Core\Utility\DebugUtility::debugInPopUpWindow(parent::init(), 'true if the service available');
     //\TYPO3\CMS\Core\Utility\DebugUtility::debugInPopUpWindow($_SERVER, 'dbUserSetup');
     return parent::init();
 }