CampVersion::getDevelopmentStatus PHP Method

getDevelopmentStatus() public method

    public function getDevelopmentStatus()
    {
        return $this->m_devStatus;
    }

Usage Example

Beispiel #1
0
 /**
  *
  */
 public function dispatch($p_step)
 {
     if (array_key_exists($p_step, $this->m_steps)) {
         $this->m_step = $p_step;
     } else {
         $this->m_step = $this->m_defaultStep;
     }
     $cVersion = new CampVersion();
     $this->m_title = $cVersion->getPackage() . ' ' . $cVersion->getRelease();
     $this->m_title .= strlen($cVersion->getDevelopmentStatus()) > 0 ? '-' . $cVersion->getDevelopmentStatus() : '';
     $this->m_title .= strlen($cVersion->getCodeName()) > 0 && $cVersion->getCodeName() != 'undefined' ? ' [ ' . $cVersion->getCodeName() . ' ]' : '';
     $this->m_title .= ' Installer';
 }