php - 尝试在 magento 中创建自定义 block

标签 php xml magento magento-1.9.1

我是 stackoverflow 的新手,但我会很坦诚地提出我的疑问和问题。

我正在尝试在 magento 中创建自定义 block 。我是 magento 的新手,学习它是为了成为 magento 的高级开发人员。

我试过以下方法:

  1. 我在 magento/app/code/local/Magentotutorial 中创建了一个目录 Magentotutorial。

  2. 我在Magentotutorial里面做了一个基本的结构,就是五个目录。所以 位置是 magento/app/code/local/Magentotutorial/World

目录是:

magento/app/code/local/Magentotutorial/World/controllers,
magento/app/code/local/Magentotutorial/World/sql,
magento/app/code/local/Magentotutorial/World/Model,
magento/app/code/local/Magentotutorial/World/Helper,
magento/app/code/local/Magentotutorial/World/Block,
magento/app/code/local/Magentotutorial/World/etc.
  1. 我的 config.xml 进入 magento/app/code/local/Magentotutorial/World/etc/config.xml

config.xml 文件包含以下代码:

<?xml version="1.0" encoding="UTF-8"?>
<config>
    <modules>
        <Magentotutorial_World>
            <version>0.1.0</version>
        </Magentotutorial_World>
    </modules>
    <global>
        <blocks>
            <Magentotutorial_World>
                <class>Magentotutorial_World_Block</class>
            </Magentotutorial_World>
        </blocks>
    </global>
    <frontend>
        <layout>
            <updates>
                <Magentotutorial_World>
                    <file>test.xml</file>
                </Magentotutorial_World>
            </updates>
        </layout>
    </frontend>
</config>

为了在 magento 中激活我的模块,我创建了 xml 文件。

Magentotutorial_World.xml:

<?xml version="1.0" encoding="UTF-8"?>
<config>
    <modules>
        <Magentotutorial_World>
            <active>true</active>
            <codePool>local</codePool>
        </Magentotutorial_World>
    </modules>
</config>
  1. 在我的 Block 目录中,它位于 magento/app/code/local/Magentotutorial/World/Block 我创建了一个名为 example.php 的文件

example.php 具有以下代码:

<?php
class Magentotutorial_World_Block_Example extends Mage_Core_Block_Template
{

}

5.现在我的 magento 目录中有布局和模板,位于 magento/app/design/frontend/rwd/default/layout 在我的布局文件中,我制作了具有以下代码的 test.xml 文件:

<?xml version="1.0" encoding="UTF-8"?>
<layout>
    <default>
            <block type="magentotutorial_world/example" name="newreferenceBlock" template="test/example.phtml" />
    </default>
</layout>
  1. 我在测试文件夹中创建了一个 example.phtml 文件,该文件位于 magento/app/design/frontend/rwd/default/template/test/example.phtml

example.phtml 具有以下代码:

<html>
<body>
    <h1 style="background-color:yellow">Hello New Reference!</h1>
</body>
</html>
  1. 现在在 page.xml 中我放了这段代码

    <default translate="label" module="page">
        <label>All Pages</label>
    
    
    
        <block type="page/html" name="root" output="toHtml" template="page/3columns.phtml">
    
            <block type="magentotutorial_world/example" output="toHtml" name="newReferenceBlock" template="test/example.phtml" />
    
            <block type="page/html_head" name="head" as="head">
                <action method="addJs"><script>prototype/prototype.js</script></action>
                <action method="addJs"><script>lib/ccard.js</script></action>
                <action method="addJs"><script>prototype/validation.js</script></action>
                <action method="addJs"><script>scriptaculous/builder.js</script></action>
                <action method="addJs"><script>scriptaculous/effects.js</script></action>
                <action method="addJs"><script>scriptaculous/dragdrop.js</script></action>
                <action method="addJs"><script>scriptaculous/controls.js</script></action>
                <action method="addJs"><script>scriptaculous/slider.js</script></action>
                <action method="addJs"><script>varien/js.js</script></action>
                <action method="addJs"><script>varien/form.js</script></action>
                <action method="addJs"><script>mage/translate.js</script></action>
                <action method="addJs"><script>mage/cookies.js</script></action>
    

在这里我放出了我的代码

<block type="magentotutorial_world/example" output="toHtml" name="newReferenceBlock" template="test/example.phtml" />
  1. 现在我想将此模板呈现到我页面的任何布局。我在这里对 2columns-right.phtml 文件进行了尝试。

在这个文件中我使用了 getChildHtml。

<div class="col-left sidebar"><?php echo $this->getChildHtml('newreferenceBlock'); ?></div>

整个文件是

<?php
/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE_AFL.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category    design
 * @package     rwd_default
 * @copyright   Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
 * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */
?>
<?php
/**
 * Template for Mage_Page_Block_Html
 */
?>

<!DOCTYPE html>

<!--[if lt IE 7 ]> <html lang="en" id="top" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]>    <html lang="en" id="top" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]>    <html lang="en" id="top" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]>    <html lang="en" id="top" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" id="top" class="no-js"> <!--<![endif]-->

<head>
<?php echo $this->getChildHtml('head') ?>
</head>
<body<?php echo $this->getBodyClass()?' class="'.$this->getBodyClass().'"':'' ?>>
<?php echo $this->getChildHtml('after_body_start') ?>
<div class="wrapper">
    <?php echo $this->getChildHtml('global_notices') ?>
    <div class="page">
        <?php echo $this->getChildHtml('header') ?>
        <div class="main-container col2-left-layout">
            <div class="main">
                <?php echo $this->getChildHtml('breadcrumbs') ?>
                <?php // This left_first block will display above the main content on smaller viewports ?>
                <?php if ($_leftContent = $this->getChildHtml('left_first')): ?>
                <div class="col-left sidebar col-left-first"><?php echo $_leftContent;   ?></div>
                <?php endif; ?>
                <div class="col-main">
                    <?php echo $this->getChildHtml('global_messages') ?>
                    <?php echo $this->getChildHtml('content') ?>
                </div>
                <div class="col-left sidebar"><?php echo $this->getChildHtml('left') ?></div>
            </div>
<div class="col-left sidebar"><?php echo $this->getChildHtml('newreferenceBlock') ?></div>
        </div>
        <?php echo $this->getChildHtml('footer_before') ?>
        <?php echo $this->getChildHtml('footer') ?>
        <?php echo $this->getChildHtml('global_cookie_notice') ?>
        <?php echo $this->getChildHtml('before_body_end') ?>
    </div>
</div>
<?php echo $this->getAbsoluteFooter() ?>
</body>
</html>

现在我无法在我的任何页面上呈现此 block 。基本上我想在我的索引页面上添加这个模板。

我的代码出了什么问题??我还想知道我的 block 类型 ="magentotutorial_world"是对的吗??

如果我想还原我的 test.xml 中的更改并想在我的 page.xml 文件中进行更改怎么办? 怎么做到的???

请帮帮我。

感谢和问候。

最佳答案

您在 magento/app/code/local/Magentotutorial/World/etc/config.xml 中输入了错误的 block 集。将 Magentotutorial_World 更改为小写的 magentotutorial_world:

<?xml version="1.0" encoding="UTF-8"?>
<config>
    <modules>
        <Magentotutorial_World>
            <version>0.1.0</version>
        </Magentotutorial_World>
    </modules>
    <global>
        <blocks>
            <magentotutorial_world>
                <class>Magentotutorial_World_Block</class>
            </magentotutorial_world>
        </blocks>
    </global>
    <frontend>
        <layout>
            <updates>
                <Magentotutorial_World>
                    <file>test.xml</file>
                </Magentotutorial_World>
            </updates>
        </layout>
    </frontend>
</config>

关于php - 尝试在 magento 中创建自定义 block ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25743609/

相关文章:

php - Opencart - 如何在产品页面上执行自定义代码? Controller 产品上没有模组

php - PHP 逐行读取时可以排除换行符吗?

java - 为什么 php 页面在 LogCat 中不显示相同的内容?

java - 什么可能导致 "JAXBElement Does not have a no-arg default constructor"?

java - cvc-复杂-类型.2.4.a : Invalid content was found starting with element Media

magento - 活跃客户在 Magento 中不起作用

javascript - Symfony2::加载自定义表单类型时添加 Assets

c# - 将 XML 发送到 WCF 时出现 400 错误请求

performance - SSL 速度 - 特定于 Magento

magento - magento中sales_flat_order中base_stuff和stuff的区别