CTConfiguration::getOptionFields PHP Метод

getOptionFields() защищенный Метод

Return HelperOptions fields that are using in module configuration form.
protected getOptionFields ( ) : array
Результат array
    protected function getOptionFields()
    {
        return array('CT_CFG_BLOCKCATEGORIES_FOOTER' => array('title' => $this->l('Show blockcategories footer block'), 'desc' => $this->l('If enabled, shows category tree block in the footer.'), 'cast' => 'boolval', 'type' => 'bool'), 'CT_CFG_COPYRIGHT_CONTENT' => array('title' => $this->l('Copyright footer text'), 'desc' => $this->l('Text to be displayed in the copyright footer block.') . ' ' . $this->l('Leave empty to not displayed the block.'), 'hint' => $this->l('HTML is allowed. Enter © for copyright symbol.'), 'cast' => 'strval', 'type' => 'textareaLang', 'html' => true, 'size' => 50));
    }