0

Bootstrap 3 と Magento を使用して登録ページを作成しています。次の行が何を実行/出力するのか疑問に思っています。

<?php echo $this->getChildHtml('form_fields_before')?>

以下のレイアウト (フォーム フィールドの開始前) で正しく使用していますか?それとも、フォームの別の場所に配置する必要がありますか?

<form action="<?php echo $this->getPostActionUrl() ?>" method="post" id="form-validate">
<input type="hidden" name="success_url" value="<?php echo $this->getSuccessUrl() ?>" />
<input type="hidden" name="error_url" value="<?php echo $this->getErrorUrl() ?>" />

<div class="row">
  <div class="col-xs-12">
    <h2><?php echo $this->__('New Customer Registration') ?></h2>
    <p><?php echo $this->__('To register for an account on our website please fill in &amp; submit the form below.') ?></p>

    <?php echo $this->getChildHtml('form_fields_before')?>

    <h3 class="legend"><?php echo $this->__('Personal Information') ?></h3>
    <?php echo $this->getLayout()->createBlock('customer/widget_name')->setObject($this->getFormData())->setForceUseCustomerAttributes(true)->toHtml() ?>
    <h3 class="legend"><?php echo $this->__('Login Information') ?></h3>
    <div class="form-group">
      <label for="email_address" class="required"><?php echo $this->__('Email Address *') ?></label>
      <input type="text" name="email" value="<?php echo $this->htmlEscape($this->getFormData()->getEmail()) ?>" id="email_address" class="form-control required-entry validate-email" title="<?php echo $this->htmlEscape($this->getEmailValue()) ?>" placeholder="Email" />
    </div>
    <div class="form-group">
        <label for="password" class="required"><?php echo $this->__('Password *') ?></label>
            <input type="password" name="password" id="password" title="<?php echo $this->__('Password') ?>" class="form-control required-entry validate-password" placeholder="Password" />
    </div>
    <div class="form-group">
        <label for="confirmation" class="required"><?php echo $this->__('Confirm Password *') ?></label>
            <input type="password" name="confirmation" title="<?php echo $this->__('Confirm Password') ?>" id="confirmation" class="form-control required-entry validate-cpassword" placeholder="Confirm" />
    </div>
4

1 に答える 1

1

実際、これは必要ありません。削除できます。Magento テンプレートは、「このテンプレートは、ajax.updater によって読み込まれたブロックを含む、一般的なラッパーの目的のためのものです」と述べています。これは、1.4.0.0-alpha3 以降では既に廃止されています。この下をご覧ください

app/design/frontend/base/default/template/page/html/wrapper.phtml

于 2013-10-03T10:58:12.117 に答える