/**
* Output plugin TYPE filter selection
*
* @param Doku_Renderer_xhtml $R
* @param array $data
*/
public function showPluginTypeFilter($R, $data)
{
global $ID;
/* Убираем фильтр по типу
$R->doc .= '
';
/* $R->doc .= '';
$R->doc .= sprintf($this->getLang('t_typesyntax'), $this->hlp->listtype(1, $ID));
$R->doc .= '
';
$R->doc .= '';
$R->doc .= sprintf($this->getLang('t_typeaction'), $this->hlp->listtype(4, $ID));
$R->doc .= '
';
$R->doc .= '';
$R->doc .= sprintf($this->getLang('t_typeadmin'), $this->hlp->listtype(2, $ID));
$R->doc .= '
';
$R->doc .= '';
$R->doc .= sprintf($this->getLang('t_typehelper'), $this->hlp->listtype(16, $ID));
$R->doc .= '
';
$R->doc .= '';
$R->doc .= sprintf($this->getLang('t_typerender'), $this->hlp->listtype(8, $ID));
$R->doc .= '
';
$R->doc .= '';
$R->doc .= sprintf($this->getLang('t_typeremote'), $this->hlp->listtype(64, $ID));
$R->doc .= '
';
$R->doc .= '';
$R->doc .= sprintf($this->getLang('t_typeauth'), $this->hlp->listtype(128, $ID));
$R->doc .= '
';
$R->doc .= '';
$R->doc .= sprintf($this->getLang('t_typecli'), $this->hlp->listtype(256, $ID));
$R->doc .= '
';
*/
if ($data['includetemplates']) {
$R->doc .= '';
$R->doc .= sprintf($this->getLang('t_typetemplate'), $this->hlp->listtype(32, $ID));
$R->doc .= '
';
}
$R->doc .= '
';
}