jquery_colorpicker.module in Jquery Colorpicker 8
Same filename and directory in other branches
JQuery Colorpicker primary module file.
File
jquery_colorpicker.moduleView source
<?php
/**
* @file
* JQuery Colorpicker primary module file.
*/
/**
* Implements hook_theme().
*/
function jquery_colorpicker_theme($existing, $type, $theme, $path) {
return [
'jquery_colorpicker' => [
'render element' => 'element',
'template' => 'jquery-colorpicker',
'file' => 'includes/jquery_colorpicker.theme.inc',
],
'jquery_colorpicker_color_display' => [
'variables' => [
'delta' => NULL,
'item' => NULL,
'color' => NULL,
],
'template' => 'jquery-colorpicker-color-display',
],
'jquery_colorpicker_text_display' => [
'variables' => [
'delta' => NULL,
'item' => NULL,
'color' => NULL,
],
'template' => 'jquery-colorpicker-text-display',
],
];
}
Functions
Name | Description |
---|---|
jquery_colorpicker_theme | Implements hook_theme(). |