1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
<?php
$block_name = _("Contact Search");
/**
* This is an implementation of the Horde_Block API that allows searching of
* address books from the portal.
*
* $Horde: turba/lib/Block/minisearch.php,v 1.17.2.7 2008/05/20 12:21:13 selsky Exp $
*
* @package Horde_Block
*/
class Horde_Block_turba_minisearch extends Horde_Block {
var $_app = 'turba';
/**
* The title to go in this block.
*
* @return string The title text.
*/
function _title()
{
return Horde::link(Horde::url($GLOBALS['registry']->getInitialPage(),
true))
. _("Contact Search") . '</a>';
}
/**
* The content to go in this block.
*
* @return string The block content.
*/
function _content()
{
require_once dirname(__FILE__) . '/../base.php';
if ($GLOBALS['browser']->hasFeature('iframes')) {
Horde::addScriptFile('prototype.js', 'turba', true);
return Util::bufferOutput(
'include',
TURBA_TEMPLATES . '/block/minisearch.inc');
} else {
return '<em>' . _("A browser that supports iframes is required")
. '</em>';
}
}
}
|