setView($this->view);
$xhtml = '';
$id = $attribs['id'];
$class = 'btn btn-small ';
$attribs['type'] = 'button';
$attribs['escape'] = false;
$attribs['content'] = '';
$attribs['class'] = $class . 'btn-up';
$attribs['id'] = $id . '-up';
$xhtml .= $buttonHelper->formButton($name . '[up]', 'Move Up', $attribs);
$attribs['content'] = '';
$attribs['class'] = $class . 'btn-down';
$attribs['id'] = $id . '-down';
$xhtml .= $buttonHelper->formButton($name . '[down]', 'Move Down', $attribs);
$attribs['content'] = 'Delete';
$attribs['class'] = $class . 'btn-danger btn-delete';
$attribs['id'] = $id . '-delete';
$xhtml .= $buttonHelper->formButton($name . '[delete]', 'Delete', $attribs);
return $xhtml;
}
}