Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
title.phtml
Go to the documentation of this file.
1 <?php
7 // @codingStandardsIgnoreFile
8 
9 ?>
10 <fieldset id="tax-rate-titles-table" class="admin__fieldset">
11  <?php $_labels = $block->getTitles() ?>
12  <?php foreach ($block->getStores() as $_store): ?>
13  <div class="admin__field">
14  <label class="admin__field-label"><span><?= /* @escapeNotVerified */ $_store->getName() ?></span></label>
15  <div class="admin__field-control">
16  <input
17  class="admin__control-text<?php if ($_store->getId() == 0): ?> required-entry<?php endif; ?>"
18  type="text"
19  name="title[<?= /* @escapeNotVerified */ $_store->getId() ?>]"
20  value="<?= /* @escapeNotVerified */ $_labels[$_store->getId()] ?>" />
21  </div>
22  </div>
23  <?php endforeach; ?>
24 
25  <div class="messages">
26  <div class="message message-notice">
27  <div>
28  <strong><?= /* @escapeNotVerified */ __('Note:') ?></strong>
29  <?= /* @escapeNotVerified */ __('Leave this field empty if you wish to use the tax identifier.') ?>
30  </div>
31  </div>
32  </div>
33 </fieldset>
$block setTitle( 'CMS Block Title') -> setIdentifier('fixture_block') ->setContent('< h1 >Fixture Block Title</h1 >< a href=" store url</a><p> Config value
Definition: block.php:9
__()
Definition: __.php:13
$block
Definition: block.php:8
endforeach
Definition: title.phtml:20