Prestashop模块中的其他字段 - 更改不替换,解析错误&班级失踪

时间:2016-04-19 15:56:02

标签: module prestashop prestashop-1.5

我通常使用WP,但我需要在Prestashop上操作模块blockcontactinfos - 只需添加两个将在前端显示的字段,但不知何故它不起作用。

我已经复制了其中一个字段,在任何地方都进行了更改,但在尝试清除缓存时(在“性能”菜单中):

2 errors 
blockcontactinfos (parse error in /modules/blockcontactinfos/blockcontactinfos.php)
blockcontactinfos (class missing in /modules/blockcontactinfos/blockcontactinfos.php)

有人可以帮我解决这个问题吗?非常感谢提前。 Prestashop是1.6。字段在设置中正确显示,保存值,但上面有错误,我只是无法强制网页加载更改的模板文件。

blockcontactinfos.php(添加了_url),第31-141行,标有// KV的更改:

<?php         
if (!defined('_CAN_LOAD_FILES_'))
    exit;

class Blockcontactinfos extends Module
{
    protected static $contact_fields = array(
        'BLOCKCONTACTINFOS_COMPANY',
        'BLOCKCONTACTINFOS_ADDRESS',
        'BLOCKCONTACTINFOS_ADDRESS_URL',
        'BLOCKCONTACTINFOS_PHONE',
        'BLOCKCONTACTINFOS_PHONE_URL',
        'BLOCKCONTACTINFOS_EMAIL',
    );

    public function __construct()
    {
        $this->name = 'blockcontactinfos';
        $this->author = 'PrestaShop';
        $this->tab = 'front_office_features';
        $this->version = '1.2.0';

        $this->bootstrap = true;
        parent::__construct();  

        $this->displayName = $this->l('Contact information block');
        $this->description = $this->l('This module will allow you to display your e-store\'s contact information in a customizable block.');
        $this->ps_versions_compliancy = array('min' => '1.6', 'max' => _PS_VERSION_);
    }

    public function install()
    {
        Configuration::updateValue('BLOCKCONTACTINFOS_COMPANY', Configuration::get('PS_SHOP_NAME'));
        Configuration::updateValue('BLOCKCONTACTINFOS_ADDRESS', trim(preg_replace('/ +/', ' ', Configuration::get('PS_SHOP_ADDR1').' '.Configuration::get('PS_SHOP_ADDR2')."\n".Configuration::get('PS_SHOP_CODE').' '.Configuration::get('PS_SHOP_CITY')."\n".Country::getNameById(Configuration::get('PS_LANG_DEFAULT'), Configuration::get('PS_SHOP_COUNTRY_ID')))));
        Configuration::updateValue('BLOCKCONTACTINFOS_ADDRESS_URL', Configuration::get('PS_SHOP_ADDRESS_URL'));      
        Configuration::updateValue('BLOCKCONTACTINFOS_PHONE', Configuration::get('PS_SHOP_PHONE'));
        Configuration::updateValue('BLOCKCONTACTINFOS_PHONE_URL', Configuration::get('PS_SHOP_PHONE_URL'));
        Configuration::updateValue('BLOCKCONTACTINFOS_EMAIL', Configuration::get('PS_SHOP_EMAIL'));
        $this->_clearCache('blockcontactinfos.tpl');
        return (parent::install() && $this->registerHook('header') && $this->registerHook('footer'));
    }

    public function uninstall()
    {
        foreach (Blockcontactinfos::$contact_fields as $field)
            Configuration::deleteByName($field);
        return (parent::uninstall());
    }

    public function getContent()
    {
        $html = '';
        if (Tools::isSubmit('submitModule'))
        {   
            foreach (Blockcontactinfos::$contact_fields as $field)
                Configuration::updateValue($field, Tools::getValue($field));
            $this->_clearCache('blockcontactinfos.tpl');
            $html = $this->displayConfirmation($this->l('Configuration updated'));
        }

        return $html.$this->renderForm();
    }

    public function hookHeader()
    {
        $this->context->controller->addCSS(($this->_path).'blockcontactinfos.css', 'all');
    }

    public function hookFooter($params)
    {   
        if (!$this->isCached('blockcontactinfos.tpl', $this->getCacheId()))
            foreach (Blockcontactinfos::$contact_fields as $field)
                $this->smarty->assign(strtolower($field), Configuration::get($field));
        return $this->display(__FILE__, 'blockcontactinfos.tpl', $this->getCacheId());
    }

    public function renderForm()
    {
        $fields_form = array(
            'form' => array(
                'legend' => array(
                    'title' => $this->l('Settings'),
                    'icon' => 'icon-cogs'
                ),
                'input' => array(
                    array(
                        'type' => 'text',
                        'label' => $this->l('Company name'),
                        'name' => 'BLOCKCONTACTINFOS_COMPANY',
                    ),
                    array(
                        'type' => 'textarea',
                        'label' => $this->l('Address'),
                        'name' => 'BLOCKCONTACTINFOS_ADDRESS',
                    ),
                    array(
                        'type' => 'text',
                        'label' => $this->l('URL na Google mapy'),
                        'name' => 'BLOCKCONTACTINFOS_ADDRESS_URL',
                    ),
                    array(
                        'type' => 'text',
                        'label' => $this->l('Phone number'),
                        'name' => 'BLOCKCONTACTINFOS_PHONE',
                    ),
                    array(
                        'type' => 'text',
                        'label' => $this->l('Telefonní číslo bez mezer'),
                        'name' => 'BLOCKCONTACTINFOS_PHONE_URL',
                    ),
                    array(
                        'type' => 'text',
                        'label' => $this->l('Email'),
                        'name' => 'BLOCKCONTACTINFOS_EMAIL',
                    ),
                ),
                'submit' => array(
                    'title' => $this->l('Save')
                )
            ),
        );

        $helper = new HelperForm();
        $helper->show_toolbar = false;
        $helper->table =  $this->table;
        $lang = new Language((int)Configuration::get('PS_LANG_DEFAULT'));
        $helper->default_form_language = $lang->id;
        $helper->allow_employee_form_lang = Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG') ? Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG') : 0;
        $this->fields_form = array();

        $helper->identifier = $this->identifier;
        $helper->submit_action = 'submitModule';
        $helper->currentIndex = $this->context->link->getAdminLink('AdminModules', false).'&configure='.$this->name.'&tab_module='.$this->tab.'&module_name='.$this->name;
        $helper->token = Tools::getAdminTokenLite('AdminModules');
        $helper->tpl_vars = array(
            'fields_value' => array(),
            'languages' => $this->context->controller->getLanguages(),
            'id_language' => $this->context->language->id
        );
        foreach (Blockcontactinfos::$contact_fields as $field)
            $helper->tpl_vars['fields_value'][$field] = Tools::getValue($field, Configuration::get($field));
        return $helper->generateForm(array($fields_form));
    }
}

blockcontactinfos.tpl(添加了_url),第32-33行:

{if $blockcontactinfos_address != ''}<li><pre> <a href="{$blockcontactinfos_phone_url|escape:'html':'UTF-8'}">{$blockcontactinfos_address|escape:'html':'UTF-8'|nl2br}</a></pre></li>{/if}
{if $blockcontactinfos_phone != ''}<li>{l s='Tel' mod='blockcontactinfos'} <a href="tel:{$blockcontactinfos_phone_url|escape:'html':'UTF-8'}">{$blockcontactinfos_phone|escape:'html':'UTF-8'}</a></li>{/if}

0 个答案:

没有答案