You are here

function hook_ckeditor_skin_alter in CKEditor Skin 7

Change the list of registered skins.

Parameters

array $skins: List of skins.

string $version: CKEditor Version.

See also

hook_ckeditor_skin()

ckeditor_get_version()

1 invocation of hook_ckeditor_skin_alter()
ckeditor_skin_get_skins in ./ckeditor_skin.module
Get all ckeditor skins, including all the skins in ckeditor package.

File

./ckeditor_skin.api.inc, line 76
API documentation for CKEditor Skins.

Code

function hook_ckeditor_skin_alter(&$skins, $version = NULL) {
  unset($skins['kama']);
}