From 31b60d54891579d2c19356501bf70bd87a1aa0c5 Mon Sep 17 00:00:00 2001 From: dogmatic69 Date: Sat, 13 Oct 2012 13:15:49 +0100 Subject: [PATCH] adding letter filter to the baked index page --- .../Templates/infinitas/views/index.ctp | 27 ++++++++++--------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/Core/Libs/Console/Templates/infinitas/views/index.ctp b/Core/Libs/Console/Templates/infinitas/views/index.ctp index 8742f8d65..cae78ea3e 100755 --- a/Core/Libs/Console/Templates/infinitas/views/index.ctp +++ b/Core/Libs/Console/Templates/infinitas/views/index.ctp @@ -81,19 +81,20 @@ */ COMMENT; - echo "echo \$this->Form->create(null, array('action' => 'mass'));\n\n". - "\$massActions = \$this->Infinitas->massActionButtons(\n". - "\tarray(\n". - "\t\t'add',\n". - "\t\t'edit',\n". - "\t\t'toggle',\n". - "\t\t'copy',\n". - "\t\t'delete',\n\n". - "\t\t// other methods available\n". - "\t\t// 'unlock',\n". - "\t)\n". - ");\n\n". - "echo \$this->Infinitas->adminIndexHead(\$filterOptions, \$massActions);\n". + echo "echo \$this->Form->create(null, array('action' => 'mass'));\n\n" . + "\$massActions = \$this->Infinitas->massActionButtons(\n" . + "\tarray(\n" . + "\t\t'add',\n" . + "\t\t'edit',\n" . + "\t\t'toggle',\n" . + "\t\t'copy',\n" . + "\t\t'delete',\n\n" . + "\t\t// other methods available\n" . + "\t\t// 'unlock',\n" . + "\t)\n" . + ");\n\n" . + "echo \$this->Infinitas->adminIndexHead(\$filterOptions, \$massActions);\n" . + "echo \$this->Filter->alphabetFilter();\n" . "?>\n"; ?>