* @endcode
*
* @param string $id Identificador del link predefinido. Puede ser 'volver',
- * 'nuevo', 'nuevos', 'anterior' y 'siguiente'.
+ * 'nuevo', 'nuevos', 'buscar', 'anterior' y 'siguiente'.
* @param MECON_HTML_Link $link Link a usar. Si no tiene contenidos, se pone
* uno por defecto. Si es null, se pone como
* link la página actual.
$link->addContents($img);
$this->updateCabecera($link, 'derecha');
break;
+ case 'buscar':
+ $img = new MECON_HTML_Image('/MECON/images/general_lupa', 'Q');
+ // Si no tiene titulo, le pone titulo por defecto.
+ if (!$link->getContents()) {
+ $link->setContents('Buscar');
+ }
+ $link->addContents($img);
+ $this->updateCabecera($link, 'derecha');
+ break;
case 'siguiente':
$img = new MECON_HTML_Image('/MECON/images/general_posterior', '-<');
// Si no tiene titulo, le pone titulo por defecto.