ca16d56cb94cd77a2e0545ba75512c7541c17cd3
2 /***************************************************************
5 * (c) 2007 Ingo Renner <ingo@typo3.org>
8 * This script is part of the TYPO3 project. The TYPO3 project is
9 * free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * The GNU General Public License can be found at
15 * http://www.gnu.org/copyleft/gpl.html.
16 * A copy is found in the textfile GPL.txt and important notices to the license
17 * from the author is found in LICENSE.txt distributed with these scripts.
20 * This script is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * This copyright notice MUST APPEAR in all copies of the script!
26 ***************************************************************/
30 * class to render the backend search toolbar item menu
34 * @author Ingo Renner <ingo@typo3.org>
38 class BackendSearchMenu
implements backend_toolbarItem
{
41 * reference back to the backend object
45 private $backendReference;
48 * sets the backend reference
50 * @param TYPO3backend backend object reference
52 public function setBackend(&$backendReference) {
53 $this->backendReference
= $backendReference;
57 * Creates the selector for workspaces
59 * @return string workspace selector as HTML select
61 public function render() {
62 $this->addJavascriptToBackend();
63 $searchMenu = array();
65 $searchMenu[] = '<a href="#" class="toolbar-item"><img'.t3lib_iconWorks
::skinImg($this->backPath
, 'gfx/magnifier.png', 'width="16" height="16"').' title="Search" alt="" /></a>';
67 $searchMenu[] = '<div style="display: none;">';
68 $searchMenu[] = '<input type="text" id="search-query" name="search-query" value="" />';
69 $searchMenu[] = '</div>';
71 return implode("\n", $searchMenu);
75 * adds the neccessary javascript ot the backend
79 private function addJavascriptToBackend() {
80 $this->backendReference
->addJavascriptFile('typo3/js/backendsearch.js');
84 * returns additional attributes for the list item in the toolbar
86 * @return string list item HTML attibutes
88 public function getAdditionalAttributes() {
89 return ' id="backend-search-menu"';
95 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/classes/class.backendsearchmenu.php']) {
96 include_once($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/classes/class.backendsearchmenu.php']);