📍 /home/diasdiamonds/public_html/vendor/cakephp/bake/src/Template/Bake/Template
📝 Editando: index.twig
{# /** * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain the above copyright notice. * * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * @link http://cakephp.org CakePHP(tm) Project * @since 2.0.0 * @license http://www.opensource.org/licenses/mit-license.php MIT License */ #} <?php /** * @var \{{ namespace }}\View\AppView $this * @var \{{ entityClass }}[]|\Cake\Collection\CollectionInterface ${{ pluralVar }} */ ?> {% set fields = Bake.filterFields(fields, schema, modelObject, indexColumns, ['binary', 'text']) %} <nav class="large-3 medium-4 columns" id="actions-sidebar"> <ul class="side-nav"> <li class="heading"><?= __('Actions') ?></li> <li><?= $this->Html->link(__('New {{ singularHumanName }}'), ['action' => 'add']) ?></li> {% set done = [] %} {% for type, data in associations %} {% for alias, details in data %} {% if details.navLink and details.controller is not same as(_view.name) and details.controller not in done %} <li><?= $this->Html->link(__('List {{ alias|underscore|humanize }}'), ['controller' => '{{ details.controller }}', 'action' => 'index']) ?></li> <li><?= $this->Html->link(__('New {{ alias|singularize|underscore|humanize }}'), ['controller' => '{{ details.controller }}', 'action' => 'add']) ?></li> {% set done = done|merge([details.controller]) %} {% endif %} {% endfor %} {% endfor %} </ul> </nav> <div class="{{ pluralVar }} index large-9 medium-8 columns content"> <h3><?= __('{{ pluralHumanName }}') ?></h3> <table cellpadding="0" cellspacing="0"> <thead> <tr> {% for field in fields %} <th scope="col"><?= $this->Paginator->sort('{{ field }}') ?></th> {% endfor %} <th scope="col" class="actions"><?= __('Actions') ?></th> </tr> </thead> <tbody> <?php foreach (${{ pluralVar }} as ${{ singularVar }}): ?> <tr> {% for field in fields %} {% set isKey = false %} {% if associations.BelongsTo %} {% for alias, details in associations.BelongsTo if field == details.foreignKey %} {% set isKey = true %} <td><?= ${{ singularVar }}->has('{{ details.property }}') ? $this->Html->link(${{ singularVar }}->{{ details.property }}->{{ details.displayField }}, ['controller' => '{{ details.controller }}', 'action' => 'view', ${{ singularVar }}->{{ details.property }}->{{ details.primaryKey[0] }}]) : '' ?></td> {% endfor %} {% endif %} {% if isKey is not same as(true) %} {% set columnData = Bake.columnData(field, schema) %} {% if columnData.type not in ['integer', 'float', 'decimal', 'biginteger', 'smallinteger', 'tinyinteger'] %} <td><?= h(${{ singularVar }}->{{ field }}) ?></td> {% else %} <td><?= $this->Number->format(${{ singularVar }}->{{ field }}) ?></td> {% endif %} {% endif %} {% endfor %} {% set pk = '$' ~ singularVar ~ '->' ~ primaryKey[0] %} <td class="actions"> <?= $this->Html->link(__('View'), ['action' => 'view', {{ pk|raw }}]) ?> <?= $this->Html->link(__('Edit'), ['action' => 'edit', {{ pk|raw }}]) ?> <?= $this->Form->postLink(__('Delete'), ['action' => 'delete', {{ pk|raw }}], ['confirm' => __('Are you sure you want to delete # {0}?', {{ pk|raw }})]) ?> </td> </tr> <?php endforeach; ?> </tbody> </table> <div class="paginator"> <ul class="pagination"> <?= $this->Paginator->first('<< ' . __('first')) ?> <?= $this->Paginator->prev('< ' . __('previous')) ?> <?= $this->Paginator->numbers() ?> <?= $this->Paginator->next(__('next') . ' >') ?> <?= $this->Paginator->last(__('last') . ' >>') ?> </ul> <p><?= $this->Paginator->counter(['format' => __('Page {{ '{{' }}page{{ '}}' }} of {{ '{{' }}pages{{ '}}' }}, showing {{ '{{' }}current{{ '}}' }} record(s) out of {{ '{{' }}count{{ '}}' }} total')]) ?></p> </div> </div>
[ Cancelar ]
Nome
Permissões
Ações
[ .. Voltar ]
📄 add.twig
0644
[ EDITAR/VER ]
📄 edit.twig
0644
[ EDITAR/VER ]
📄 index.twig
0644
[ EDITAR/VER ]
📄 login.twig
0644
[ EDITAR/VER ]
📄 view.twig
0644
[ EDITAR/VER ]