registerFunction( 'onCustomEditorButton', 'botMosImageButton' ); /** * mosimage button * @return array A two element array of ( imageName, textToInsert ) */ function botMosImageButton() { global $option; // button is not active in specific content components switch ( $option ) { case 'com_sections': case 'com_categories': case 'com_modules': $button = array( '', '' ); break; default: $button = array( 'mosimage.gif', '{mosimage}' ); break; } return $button; } ?>