| = __('Id') ?> |
= h($productPhoto->id) ?> |
| = __('Product Category') ?> |
= $productPhoto->hasValue('product_category') ? $this->Html->link($productPhoto->product_category->name, ['controller' => 'ProductCategories', 'action' => 'view', $productPhoto->product_category->internal_id]) : '' ?> |
| = __('Product') ?> |
= $productPhoto->hasValue('product') ? $this->Html->link($productPhoto->product->name, ['controller' => 'Products', 'action' => 'view', $productPhoto->product->id]) : '' ?> |
| = __('SKU') ?> |
= $productPhoto->hasValue('product_sku') ? $this->Html->link($productPhoto->product_sku->sku, ['controller' => 'ProductSkus', 'action' => 'view', $productPhoto->product_sku->id]) : '' ?> |
| = __('Photo Filename') ?> |
= h($productPhoto->photo_filename) ?> |
| = __('Photo Position') ?> |
= $this->Number->format($productPhoto->photo_position) ?> |
| = __('Created') ?> |
= h($productPhoto->created) ?> |
| = __('Modified') ?> |
= h($productPhoto->modified) ?> |
| = __('Deleted') ?> |
= h($productPhoto->deleted) ?> |
| = __('Primary Category Photo') ?> |
= $productPhoto->primary_category_photo ? __('Yes') : __('No'); ?> |
| = __('Primary Photo') ?> |
= $productPhoto->primary_photo ? __('Yes') : __('No'); ?> |
| = __('Primary SKU Photo') ?> |
= $productPhoto->primary_sku_photo ? __('Yes') : __('No'); ?> |
| = __('Enabled') ?> |
= $productPhoto->enabled ? __('Yes') : __('No'); ?> |