-
-" . Inflector::humanize($_field) . "\n";
- }
-?>
- Actions |
-
-\n";
-
- foreach ($otherFields as $_field) {
- echo "\t\t\t" . ${$otherSingularVar}[$_field] . " | \n";
- }
-
- echo "\t\t\t\n";
- echo "\t\t\t\t";
- echo $this->Html->link(
- __d('cake', 'View'),
- array('plugin' => $_details['plugin'], 'controller' => $_details['controller'], 'action' => 'view', ${$otherSingularVar}[$_details['primaryKey']])
- );
- echo "\n";
- echo "\t\t\t\t";
- echo $this->Html->link(
- __d('cake', 'Edit'),
- array('plugin' => $_details['plugin'], 'controller' => $_details['controller'], 'action' => 'edit', ${$otherSingularVar}[$_details['primaryKey']])
- );
- echo "\n";
- echo "\t\t\t\t";
- echo $this->Form->postLink(
- __d('cake', 'Delete'),
- array('plugin' => $_details['plugin'], 'controller' => $_details['controller'], 'action' => 'delete', ${$otherSingularVar}[$_details['primaryKey']]),
- null,
- __d('cake', 'Are you sure you want to delete # %s?', ${$otherSingularVar}[$_details['primaryKey']])
- );
- echo "\n";
- echo "\t\t\t | \n";
- echo "\t\t\n";
- endforeach;
-?>
-