+
+ Html->link($c['CoNormalizer']['description'],
+ array('controller' => 'normalizers',
+ 'action' => ($permissions['edit'] ? 'edit' : ($permissions['view'] ? 'view' : '')),
+ $c['CoNormalizer']['id']));
+ ?>
+ |
+
+
+ |
+
+
+ |
+
+
+ |
+
+ Html->link(_txt('op.edit'),
+ array(
+ 'controller' => 'co_normalizers',
+ 'action' => 'edit',
+ $c['CoNormalizer']['id']
+ ),
+ array('class' => 'editbutton')) . PHP_EOL;
+
+ // Create a direct link to configuration if this plugin is instantiated
+ $plugin = filter_var($c['CoNormalizer']['plugin'],FILTER_SANITIZE_SPECIAL_CHARS);
+ $pl = Inflector::underscore($plugin);
+ $plm = Inflector::tableize($plugin);
+
+ if($vv_inst_plugins[$plugin]) {
+ print $this->Html->link(_txt('op.config'),
+ array(
+ 'plugin' => $pl,
+ 'controller' => $plm,
+ 'action' => 'edit',
+ $c[$plugin]['id'],
+ 'ivid' => $c['CoNormalizer']['id']
+ ),
+ array('class' => 'editbutton')) . PHP_EOL;
+ }
+ }
+
+ if($permissions['delete']) {
+ print '';
+ }
+ ?>
+
+ |
+
+
+
+