public function getTitle()
 {
     $title = parent::getTitle();
     if ($title === null) {
         return mt('setup', 'Read- and writable configuration directory');
     }
     return $title;
 }
 public function getTitle()
 {
     $title = parent::getTitle();
     if ($title === null) {
         return mt('setup', 'PHP Version');
     }
     return $title;
 }
Example #3
0
 public function getTitle()
 {
     $title = parent::getTitle();
     if ($title === null) {
         return sprintf(mt('setup', '%s Platform'), ucfirst($this->getCondition()));
     }
     return $title;
 }
 public function getTitle()
 {
     $title = parent::getTitle();
     if ($title === $this->getAlias()) {
         if ($title === null) {
             $title = $this->getCondition();
         }
         return sprintf(mt('setup', 'PHP Module: %s'), $title);
     }
     return $title;
 }