DEV_LEVEL; } public function getLongVersion() { return $this->PRODUCT . ' ' . $this->RELEASE . '.' . $this->DEV_LEVEL . ' '. $this->DEV_STATUS . ' [ ' . $this->CODENAME . ' ] ' . $this->RELDATE; } public function getUserAgent($component = null, $mask = false, $add_version = true) { if ($component === null) $component = 'Framework'; if ($add_version) $component .= '/' . $this->RELEASE; if ($mask) return 'Mozilla/5.0 ' . $this->PRODUCT . '/' . $this->RELEASE . '.' . $this->DEV_LEVEL . ($component ? ' ' . $component : ''); else return $this->PRODUCT . '/' . $this->RELEASE . '.' . $this->DEV_LEVEL . ($component ? ' ' . $component : ''); } }