我是 MVC 和 php 的新手。现在在 magento app/code/core/Mage/Review/Model/Review.php
我添加代码。
public function mgtest(){
return 'hello world!';
}
在课堂里
class Mage_Review_Model_Review extends Mage_Core_Model_Abstract
{ }
在 magento cms 页面中,我添加代码:
{{block type="core/template" name="review" template="catalog/product/reviewall.phtml"}}
url 键是review.html
然后添加文件 reviewall.phtml(app/design/frontend/default/mytheme/template/catalog/product/reviewall.phtml)
然后在其文件中添加测试代码。
<?php echo $this->mgtest();?>
当我访问网址时。mysiteurl/review.html
. 没有 hello world 输出。为什么?谢谢你。如何纠正它?模型中的所有文件是做什么的?如果我想调用 phtml 文件的函数。我该怎么办?