magento:在controller中添加breadcrumbs,在 controller中: $this-loadLayout(); $breadCrumb = $this-getLayout()-getBlock(breadcrumbs); //这是 $breadCrumb-addCrumb(home, array( label = Mage::helper(catalog)-__(Home), title = Mage::helper...
magento通过命令行index的方法
在magento中,reindex是经常需要使用的功能, 这个功能除了可在后台直接使用外,还能通过一个magento自带的脚本运行,这个脚本的位置在shell\indexer.PHP。 脚本的三个常用选项如下: (1)...
magento如何判断当前是否登录?
magento如何判断当前是否登录? Php代码 $_session = Mage::getSingleton(customer/session); if ($_session-isLoggedIn()) { // do something } else { // do another thing. }...
Magento开发多语言扩展有三个问题要考虑
Magento开发多语言扩展有三个问题要考虑 1. 静态文本的多语言 使用代码 Php代码 收藏代码 echo Mage::helper(helpername)-__(your text) 配合csv文件可以实现多语言。 2. 数据的多语言 稍候介绍 3. 货...
Magento多语言注意事项
Magento一般使用CSV文件方式翻译国际化词条 一般用法是代码中: ?php echo Mage::helper(module_name)-__(Items want to translate); 或者 ?php echo $this-__(Items want to translate); ? 但是,必须注意以下规则:...
用Webservice接口导入magento产品分类
用Webservice接口导入magento产品分类,Php代码 ?php set_time_limit(0); $proxy = new SoapClient( http://localhost/magento/index.php/api/soap/?wsdl ); $sessionId = $proxy -login( crazy , abcdef ); $allCategories = $proxy -call( $sessi...
如何magento在扩展Controller类
比如Magento的review相关的有一个controller类名字为:Mage_Review_ProductController 现在我的模块里定义了一个新的控制器类,像如下方式: Php代码 收藏代码 require_once Mage/Review/controllers/ProductCont...
magento怎么判断用户是否登录?
在一些magento功能上面,需要对用户进行判断,譬如在页面头部的登录和退出链接,她俩共用一个位置,当用户没有登录的时候显示的登录链接,如果用户已经登录magento网店,那么这个...
magento grid collection多表查询字段冲突的解决
magento grid collection多表查询字段冲突的解决,错误提示大概是这样的 Integrity constraint violation: 1052 Column increment_id in where clause is ambiguous 使用 代码 filter_index=main_table.increment_id, 可以解决这个...
magento负载均衡使用同一个数据库的方法
在magento的负载均衡策略中,其中一个方法是有多台服务来跑同一份代码,使用同一个数据库。 例如,有一台服务器A,网址是www.a.com,另外一台服务器B,网址是www.b.com,服务器A和B访问...