我为 Prestashop 1.4 创建了文件 mymodule.php
<?php
if (!defined('_CAN_LOAD_FILES_'))
exit;
class MyModule extends Module
{
function __construct()
{
$this->name = "mymodule";
$this->version = "1.0";
$this->author = "Tomtop";
$this->tab = "front_office_features";
$this->_postErrors = array();
parent::__construct();
$this->displayName = $this->l("My Module Name");
$this->description = $this->l("This is my module description.");
}
protected function setConfig($key,$value)
{
return Configuration::updateValue($this->name.$key,$value,true);
}
protected function getConfig($value)
{
return Configuration::get($this->name.$value);
}
protected function deleteConfig($value)
{
return Configuration::deleteByName($this->name.$value);
}
function install()
{
if (!parent::install()
OR !$this->registerHook('home')
OR !$this->registerHook('footer')
)
return false;
return true;
}
public function uninstall()
{
parent::uninstall();
return true;
}
public function hookHome($params)
{
}
public function hookfooter($params)
{
}
private function _postProcess()
{
$this->_html .= '<div class="conf confirm">'.$this->l("Updated")."</div>";
}
public function getContent()
{
$this->_html .= "<h2>".$this->displayName."</h2>";
if (Tools::isSubmit("submit"))
{
$this->_postProcess();
}
$this->_displayForm();
return $this->_html;
}
private function _displayForm()
{
$this->_html .= '<form action="'.$_SERVER['REQUEST_URI'].'" method="post">
<fieldset>
<legend><img src="../modules/scroller/logo.gif" alt="" class="middle" />'.$this->l('Settings').'</legend>
<br />
<center><input type="submit" name="submit" value="'.$this->l('Upgrade').'" class="button" /></center>
</fieldset>
</form>';
}
}
在上面的代码中应该添加 mymodule.tpl 模板,其中包含主要的 html 代码,即
return $this->display(__FILE__, 'mymodule.tpl');
此外,在 mymodule.php 的哪个位置添加链接在 head 标签中的 js 和 css 文件,如下所示:
public function hookHeader()
{
Tools::addJS($this->_path.'js/myjscript1.js');
Tools::addJS($this->_path.'js/myjscript2.js');
Tools::addCSS($this->_path.'css/mymodule.css', 'all');
}
global $smarty;
如果在上面的代码中需要,应该在哪里添加?