Contao\Config::isComplete PHP Метод

isComplete() публичный статический Метод

Return true if the installation is complete
public static isComplete ( ) : boolean
Результат boolean True if the installation is complete
    public static function isComplete()
    {
        if (!static::$blnHasLcf) {
            return false;
        }
        if (!static::has('licenseAccepted')) {
            return false;
        }
        return true;
    }

Usage Example

Пример #1
0
 /**
  * Returns true if the installation is complete.
  *
  * @return bool True if the installation is complete
  */
 public function isComplete()
 {
     return $this->config->isComplete();
 }