API16:JEditor/getButtons
From Joomla! Documentation
Description
Get the editor buttons
<! removed transcluded page call, red link never existed >
Syntax
getButtons($editor, $buttons=true)
| Parameter Name | Default Value | Description |
|---|---|---|
| $editor | $buttons Can be boolean or array, if boolean defines if the buttons are displayed, if array defines a list of buttons not to show. | |
| $buttons | true |
Defined in
libraries/joomla/html/editor.php
Importing
jimport( 'joomla.html.editor' );
Source Body
public function getButtons($editor, $buttons = true)
{
$result = array();
if (is_bool($buttons) && !$buttons) {
return $result;
}
// Get plugins
$plugins = JPluginHelper::getPlugin('editors-xtd');
foreach($plugins as $plugin) {
if (is_array($buttons) && in_array($plugin->name, $buttons)) {
continue;
}
$isLoaded = JPluginHelper::importPlugin('editors-xtd', $plugin->name, false);
$className = 'plgButton'.$plugin->name;
if (class_exists($className)) {
$plugin = new $className($this, (array)$plugin);
$plugin->loadLanguage();
}
// Try to authenticate
if ($temp = $plugin->onDisplay($editor)) {
$result[] = $temp;
}
}
return $result;
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples