CKFinder_Connector_CommandHandler_CommandHandlerBase::checkConnector PHP Method

checkConnector() protected method

Check whether Connector is enabled
protected checkConnector ( )
    protected function checkConnector()
    {
        $_config =& CKFinder_Connector_Core_Factory::getInstance("Core_Config");
        if (!$_config->getIsEnabled()) {
            $this->_errorHandler->throwError(CKFINDER_CONNECTOR_ERROR_CONNECTOR_DISABLED);
        }
    }