123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815 |
- <?php
- function color_help($path, $arg) {
- switch ($path) {
- case 'admin/help#color':
- $output = '<h3>' . t('About') . '</h3>';
- $output .= '<p>' . t('The Color module allows users with the <em>Administer site configuration</em> permission to quickly and easily change the color scheme of themes that have been built to be compatible with it. For more information, see the online handbook entry for <a href="@color">Color module</a>.', array('@color' => 'http://drupal.org/documentation/modules/color')) . '</p>';
- $output .= '<h3>' . t('Uses') . '</h3>';
- $output .= '<dl>';
- $output .= '<dt>' . t('Changing colors') . '</dt>';
- $output .= '<dd>' . t("Using the Color module allows you to easily change the color of links, backgrounds, text, and other theme elements. To change the color settings for a compatible theme, select the <em>Settings</em> link for your theme on the <a href='@configure'>Themes administration page</a>. If you don't see a color picker on that page, then your theme is not compatible with the color module. If you are sure that the theme does indeed support the color module, but the color picker does not appear, then <a href='@troubleshoot'>follow these troubleshooting procedures</a>.", array('@configure' => url('admin/appearance'), '@troubleshoot' => 'http://drupal.org/node/109457')) . '</dd>';
- $output .= '<dd>' . t("The Color module saves a modified copy of the theme's specified stylesheets in the files directory. This means that if you make any manual changes to your theme's stylesheet, <em>you must save your color settings again, even if they haven't changed</em>. This step is required because the module stylesheets (in the files directory) need to be recreated to include your changes.") . '</dd>';
- $output .= '</dl>';
- return $output;
- }
- }
- function color_theme() {
- return array(
- 'color_scheme_form' => array(
- 'render element' => 'form',
- ),
- );
- }
- function color_form_system_theme_settings_alter(&$form, &$form_state) {
- if (isset($form_state['build_info']['args'][0]) && ($theme = $form_state['build_info']['args'][0]) && color_get_info($theme) && function_exists('gd_info')) {
- $form['color'] = array(
- '#type' => 'fieldset',
- '#title' => t('Color scheme'),
- '#weight' => -1,
- '#attributes' => array('id' => 'color_scheme_form'),
- '#theme' => 'color_scheme_form',
- );
- $form['color'] += color_scheme_form($form, $form_state, $theme);
- $form['#validate'][] = 'color_scheme_form_validate';
- $form['#submit'][] = 'color_scheme_form_submit';
- }
- }
- function color_form_system_themes_alter(&$form, &$form_state) {
- _color_theme_select_form_alter($form, $form_state);
- }
- function _color_theme_select_form_alter(&$form, &$form_state) {
-
- $themes = list_themes();
- foreach (element_children($form) as $theme) {
- if ($screenshot = variable_get('color_' . $theme . '_screenshot')) {
- if (isset($form[$theme]['screenshot'])) {
- $form[$theme]['screenshot']['#markup'] = theme('image', array('path' => $screenshot, 'title' => '', 'attributes' => array('class' => array('screenshot'))));
- }
- }
- }
- }
- function _color_html_alter(&$vars) {
- global $theme_key;
- $themes = list_themes();
-
- $color_paths = variable_get('color_' . $theme_key . '_stylesheets', array());
- if (!empty($color_paths)) {
- foreach ($themes[$theme_key]->stylesheets['all'] as $base_filename => $old_path) {
-
-
- foreach ($color_paths as $color_path) {
-
-
- if (drupal_basename($old_path) == drupal_basename($color_path)) {
-
-
- $vars['css'][$old_path]['data'] = $color_path;
- }
- }
- }
- $vars['styles'] = drupal_get_css($vars['css']);
- }
- }
- function _color_page_alter(&$vars) {
- global $theme_key;
-
- $logo = variable_get('color_' . $theme_key . '_logo');
- if ($logo && $vars['logo'] && preg_match('!' . $theme_key . '/logo.png$!', $vars['logo'])) {
- $vars['logo'] = file_create_url($logo);
- }
- }
- function color_get_info($theme) {
- static $theme_info = array();
- if (isset($theme_info[$theme])) {
- return $theme_info[$theme];
- }
- $path = drupal_get_path('theme', $theme);
- $file = DRUPAL_ROOT . '/' . $path . '/color/color.inc';
- if ($path && file_exists($file)) {
- include $file;
- $theme_info[$theme] = $info;
- return $info;
- }
- }
- function color_get_palette($theme, $default = FALSE) {
-
- $info = color_get_info($theme);
- $palette = $info['schemes']['default']['colors'];
-
- return $default ? $palette : variable_get('color_' . $theme . '_palette', $palette);
- }
- function color_scheme_form($complete_form, &$form_state, $theme) {
- $base = drupal_get_path('module', 'color');
- $info = color_get_info($theme);
- $info['schemes'][''] = array('title' => t('Custom'), 'colors' => array());
- $color_sets = array();
- $schemes = array();
- foreach ($info['schemes'] as $key => $scheme) {
- $color_sets[$key] = $scheme['title'];
- $schemes[$key] = $scheme['colors'];
- $schemes[$key] += $info['schemes']['default']['colors'];
- }
-
-
- $current_scheme = variable_get('color_' . $theme . '_palette', array());
- foreach ($schemes as $key => $scheme) {
- if ($current_scheme == $scheme) {
- $scheme_name = $key;
- break;
- }
- }
- if (empty($scheme_name)) {
- if (empty($current_scheme)) {
- $scheme_name = 'default';
- }
- else {
- $scheme_name = '';
- }
- }
-
- $form['scheme'] = array(
- '#type' => 'select',
- '#title' => t('Color set'),
- '#options' => $color_sets,
- '#default_value' => $scheme_name,
- '#attached' => array(
-
- 'library' => array(
- array('system', 'farbtastic'),
- ),
-
- 'css' => array(
- $base . '/color.css' => array(),
- ),
-
- 'js' => array(
- $base . '/color.js',
- array(
- 'data' => array(
- 'color' => array(
- 'reference' => color_get_palette($theme, TRUE),
- 'schemes' => $schemes,
- ),
- 'gradients' => $info['gradients'],
- ),
- 'type' => 'setting',
- ),
- ),
- ),
- );
-
- $palette = color_get_palette($theme);
- $names = $info['fields'];
- $form['palette']['#tree'] = TRUE;
- foreach ($palette as $name => $value) {
- if (isset($names[$name])) {
- $form['palette'][$name] = array(
- '#type' => 'textfield',
- '#title' => check_plain($names[$name]),
- '#value_callback' => 'color_palette_color_value',
- '#default_value' => $value,
- '#size' => 8,
- );
- }
- }
- $form['theme'] = array('#type' => 'value', '#value' => $theme);
- $form['info'] = array('#type' => 'value', '#value' => $info);
- return $form;
- }
- function theme_color_scheme_form($variables) {
- $form = $variables['form'];
- $theme = $form['theme']['#value'];
- $info = $form['info']['#value'];
- $path = drupal_get_path('theme', $theme) . '/';
- drupal_add_css($path . $info['preview_css']);
- $preview_js_path = isset($info['preview_js']) ? $path . $info['preview_js'] : drupal_get_path('module', 'color') . '/' . 'preview.js';
-
- drupal_add_js($preview_js_path, array('weight' => -1));
- $output = '';
- $output .= '<div class="color-form clearfix">';
-
- $output .= drupal_render($form['scheme']);
-
- $output .= '<div id="palette" class="clearfix">';
- foreach (element_children($form['palette']) as $name) {
- $output .= drupal_render($form['palette'][$name]);
- }
- $output .= '</div>';
-
- $output .= drupal_render_children($form);
- $output .= '<h2>' . t('Preview') . '</h2>';
-
- $preview_html_path = DRUPAL_ROOT . '/' . (isset($info['preview_html']) ? drupal_get_path('theme', $theme) . '/' . $info['preview_html'] : drupal_get_path('module', 'color') . '/preview.html');
- $output .= file_get_contents($preview_html_path);
-
- $output .= '</div>';
- return $output;
- }
- function color_palette_color_value($element, $input = FALSE, $form_state = array()) {
-
-
-
- if ($input !== FALSE) {
-
-
- $value = form_type_textfield_value($element, $input, $form_state);
- if (!$value || !isset($form_state['complete form']['#token']) || color_valid_hexadecimal_string($value) || drupal_valid_token($form_state['values']['form_token'], $form_state['complete form']['#token'])) {
- return $value;
- }
- else {
- return $element['#default_value'];
- }
- }
- }
- function color_valid_hexadecimal_string($color) {
- return preg_match('/^#([a-f0-9]{3}){1,2}$/iD', $color);
- }
- function color_scheme_form_validate($form, &$form_state) {
-
- foreach ($form_state['values']['palette'] as $key => $color) {
- if (!color_valid_hexadecimal_string($color)) {
- form_set_error('palette][' . $key, t('%name must be a valid hexadecimal CSS color value.', array('%name' => $form['color']['palette'][$key]['#title'])));
- }
- }
- }
- function color_scheme_form_submit($form, &$form_state) {
-
- if (!isset($form_state['values']['info'])) {
- return;
- }
- $theme = $form_state['values']['theme'];
- $info = $form_state['values']['info'];
-
- $palette = $form_state['values']['palette'];
- if ($form_state['values']['scheme'] != '') {
- foreach ($palette as $key => $color) {
- if (isset($info['schemes'][$form_state['values']['scheme']]['colors'][$key])) {
- $palette[$key] = $info['schemes'][$form_state['values']['scheme']]['colors'][$key];
- }
- }
- $palette += $info['schemes']['default']['colors'];
- }
-
- if (function_exists('memory_get_usage')) {
-
- $source = drupal_get_path('theme', $theme) . '/' . $info['base_image'];
- list($width, $height) = getimagesize($source);
-
-
- $required = $width * $height * 8;
-
-
-
-
- $usage = memory_get_usage(TRUE);
- $memory_limit = ini_get('memory_limit');
- $size = parse_size($memory_limit);
- if (!drupal_check_memory_limit($usage + $required, $memory_limit)) {
- drupal_set_message(t('There is not enough memory available to PHP to change this theme\'s color scheme. You need at least %size more. Check the <a href="@url">PHP documentation</a> for more information.', array('%size' => format_size($usage + $required - $size), '@url' => 'http://www.php.net/manual/ini.core.php#ini.sect.resource-limits')), 'error');
- return;
- }
- }
-
- foreach (variable_get('color_' . $theme . '_files', array()) as $file) {
- @drupal_unlink($file);
- }
- if (isset($file) && $file = dirname($file)) {
- @drupal_rmdir($file);
- }
-
- if (implode(',', color_get_palette($theme, TRUE)) == implode(',', $palette)) {
- variable_del('color_' . $theme . '_palette');
- variable_del('color_' . $theme . '_stylesheets');
- variable_del('color_' . $theme . '_logo');
- variable_del('color_' . $theme . '_files');
- variable_del('color_' . $theme . '_screenshot');
- return;
- }
-
- $id = $theme . '-' . substr(hash('sha256', serialize($palette) . microtime()), 0, 8);
- $paths['color'] = 'public://color';
- $paths['target'] = $paths['color'] . '/' . $id;
- foreach ($paths as $path) {
- file_prepare_directory($path, FILE_CREATE_DIRECTORY);
- }
- $paths['target'] = $paths['target'] . '/';
- $paths['id'] = $id;
- $paths['source'] = drupal_get_path('theme', $theme) . '/';
- $paths['files'] = $paths['map'] = array();
-
- variable_set('color_' . $theme . '_palette', $palette);
- variable_set('color_' . $theme . '_logo', $paths['target'] . 'logo.png');
-
- foreach ($info['copy'] as $file) {
- $base = drupal_basename($file);
- $source = $paths['source'] . $file;
- $filepath = file_unmanaged_copy($source, $paths['target'] . $base);
- $paths['map'][$file] = $base;
- $paths['files'][] = $filepath;
- }
-
- if ($info['base_image']) {
- _color_render_images($theme, $info, $paths, $palette);
- }
-
- $css = array();
- foreach ($info['css'] as $stylesheet) {
-
- $files = array();
- if (file_exists($paths['source'] . $stylesheet)) {
- $files[] = $stylesheet;
- $rtl_file = str_replace('.css', '-rtl.css', $stylesheet);
- if (file_exists($paths['source'] . $rtl_file)) {
- $files[] = $rtl_file;
- }
- }
- foreach ($files as $file) {
-
-
-
- $style = drupal_load_stylesheet($paths['source'] . $file, FALSE);
-
-
- $base = base_path() . dirname($paths['source'] . $file) . '/';
- _drupal_build_css_path(NULL, $base);
-
- $style = preg_replace_callback('/url\([\'"]?(?![a-z]+:|\/+)([^\'")]+)[\'"]?\)/i', '_drupal_build_css_path', $style);
-
- $style = _color_rewrite_stylesheet($theme, $info, $paths, $palette, $style);
- $base_file = drupal_basename($file);
- $css[] = $paths['target'] . $base_file;
- _color_save_stylesheet($paths['target'] . $base_file, $style, $paths);
- }
- }
-
- variable_set('color_' . $theme . '_stylesheets', $css);
- variable_set('color_' . $theme . '_files', $paths['files']);
- }
- function _color_rewrite_stylesheet($theme, &$info, &$paths, $palette, $style) {
- $themes = list_themes();
-
- $conversion = $palette;
- foreach ($conversion as $k => $v) {
- $conversion[$k] = drupal_strtolower($v);
- }
- $default = color_get_palette($theme, TRUE);
-
- $split = "Color Module: Don't touch";
- if (strpos($style, $split) !== FALSE) {
- list($style, $fixed) = explode($split, $style);
- }
-
- $style = preg_split('/(#[0-9a-f]{6}|#[0-9a-f]{3})/i', $style, -1, PREG_SPLIT_DELIM_CAPTURE);
- $is_color = FALSE;
- $output = '';
- $base = 'base';
-
- foreach ($style as $chunk) {
- if ($is_color) {
- $chunk = drupal_strtolower($chunk);
-
- if ($key = array_search($chunk, $default)) {
- $chunk = $conversion[$key];
- }
-
- else {
- $chunk = _color_shift($palette[$base], $default[$base], $chunk, $info['blend_target']);
- }
- }
- else {
-
-
- if (preg_match('@[^a-z0-9_-](a)[^a-z0-9_-][^/{]*{[^{]+$@i', $chunk)) {
- $base = 'link';
- }
-
- elseif (preg_match('/(?<!-)color[^{:]*:[^{#]*$/i', $chunk)) {
- $base = 'text';
- }
-
- else {
- $base = 'base';
- }
- }
- $output .= $chunk;
- $is_color = !$is_color;
- }
-
- if (isset($fixed)) {
- $output .= $fixed;
- }
-
- foreach ($paths['map'] as $before => $after) {
- $before = base_path() . $paths['source'] . $before;
- $before = preg_replace('`(^|/)(?!../)([^/]+)/../`', '$1', $before);
- $output = str_replace($before, $after, $output);
- }
- return $output;
- }
- function _color_save_stylesheet($file, $style, &$paths) {
- $filepath = file_unmanaged_save_data($style, $file, FILE_EXISTS_REPLACE);
- $paths['files'][] = $filepath;
-
- drupal_chmod($file);
- }
- function _color_render_images($theme, &$info, &$paths, $palette) {
-
- $source = $paths['source'] . '/' . $info['base_image'];
- $source = imagecreatefrompng($source);
- $width = imagesx($source);
- $height = imagesy($source);
-
- $target = imagecreatetruecolor($width, $height);
- imagealphablending($target, TRUE);
-
- foreach ($info['fill'] as $color => $fill) {
- imagefilledrectangle($target, $fill[0], $fill[1], $fill[0] + $fill[2], $fill[1] + $fill[3], _color_gd($target, $palette[$color]));
- }
-
- foreach ($info['gradients'] as $gradient) {
-
- if (isset($gradient['direction']) && $gradient['direction'] == 'horizontal') {
-
- for ($x = 0; $x < $gradient['dimension'][2]; $x++) {
- $color = _color_blend($target, $palette[$gradient['colors'][0]], $palette[$gradient['colors'][1]], $x / ($gradient['dimension'][2] - 1));
- imagefilledrectangle($target, ($gradient['dimension'][0] + $x), $gradient['dimension'][1], ($gradient['dimension'][0] + $x + 1), ($gradient['dimension'][1] + $gradient['dimension'][3]), $color);
- }
- }
- else {
-
- for ($y = 0; $y < $gradient['dimension'][3]; $y++) {
- $color = _color_blend($target, $palette[$gradient['colors'][0]], $palette[$gradient['colors'][1]], $y / ($gradient['dimension'][3] - 1));
- imagefilledrectangle($target, $gradient['dimension'][0], $gradient['dimension'][1] + $y, $gradient['dimension'][0] + $gradient['dimension'][2], $gradient['dimension'][1] + $y + 1, $color);
- }
- }
- }
-
- imagecopy($target, $source, 0, 0, 0, 0, $width, $height);
-
- imagedestroy($source);
-
- foreach ($info['slices'] as $file => $coord) {
- list($x, $y, $width, $height) = $coord;
- $base = drupal_basename($file);
- $image = drupal_realpath($paths['target'] . $base);
-
- if ($file == 'screenshot.png') {
- $slice = imagecreatetruecolor(150, 90);
- imagecopyresampled($slice, $target, 0, 0, $x, $y, 150, 90, $width, $height);
- variable_set('color_' . $theme . '_screenshot', $image);
- }
- else {
- $slice = imagecreatetruecolor($width, $height);
- imagecopy($slice, $target, 0, 0, $x, $y, $width, $height);
- }
-
- imagepng($slice, $image);
- imagedestroy($slice);
- $paths['files'][] = $image;
-
- drupal_chmod($image);
-
- $paths['map'][$file] = $base;
- }
-
- imagedestroy($target);
- }
- function _color_shift($given, $ref1, $ref2, $target) {
-
-
-
- $target = _color_unpack($target, TRUE);
- $ref1 = _color_unpack($ref1, TRUE);
- $ref2 = _color_unpack($ref2, TRUE);
- $numerator = 0;
- $denominator = 0;
- for ($i = 0; $i < 3; ++$i) {
- $numerator += ($ref2[$i] - $ref1[$i]) * ($ref2[$i] - $ref1[$i]);
- $denominator += ($target[$i] - $ref1[$i]) * ($target[$i] - $ref1[$i]);
- }
- $delta = ($denominator > 0) ? (1 - sqrt($numerator / $denominator)) : 0;
-
- for ($i = 0; $i < 3; ++$i) {
- $ref3[$i] = $target[$i] + ($ref1[$i] - $target[$i]) * $delta;
- }
-
-
- $ref2 = _color_rgb2hsl($ref2);
- $ref3 = _color_rgb2hsl($ref3);
- for ($i = 0; $i < 3; ++$i) {
- $shift[$i] = $ref2[$i] - $ref3[$i];
- }
-
- $given = _color_unpack($given, TRUE);
- for ($i = 0; $i < 3; ++$i) {
- $result[$i] = $target[$i] + ($given[$i] - $target[$i]) * $delta;
- }
-
-
- $result = _color_rgb2hsl($result);
- for ($i = 0; $i < 3; ++$i) {
- $result[$i] = min(1, max(0, $result[$i] + $shift[$i]));
- }
- $result = _color_hsl2rgb($result);
-
- return _color_pack($result, TRUE);
- }
- function _color_gd($img, $hex) {
- $c = array_merge(array($img), _color_unpack($hex));
- return call_user_func_array('imagecolorallocate', $c);
- }
- function _color_blend($img, $hex1, $hex2, $alpha) {
- $in1 = _color_unpack($hex1);
- $in2 = _color_unpack($hex2);
- $out = array($img);
- for ($i = 0; $i < 3; ++$i) {
- $out[] = $in1[$i] + ($in2[$i] - $in1[$i]) * $alpha;
- }
- return call_user_func_array('imagecolorallocate', $out);
- }
- function _color_unpack($hex, $normalize = FALSE) {
- if (strlen($hex) == 4) {
- $hex = $hex[1] . $hex[1] . $hex[2] . $hex[2] . $hex[3] . $hex[3];
- }
- $c = hexdec($hex);
- for ($i = 16; $i >= 0; $i -= 8) {
- $out[] = (($c >> $i) & 0xFF) / ($normalize ? 255 : 1);
- }
- return $out;
- }
- function _color_pack($rgb, $normalize = FALSE) {
- $out = 0;
- foreach ($rgb as $k => $v) {
- $out |= (($v * ($normalize ? 255 : 1)) << (16 - $k * 8));
- }
- return '#' . str_pad(dechex($out), 6, 0, STR_PAD_LEFT);
- }
- function _color_hsl2rgb($hsl) {
- $h = $hsl[0];
- $s = $hsl[1];
- $l = $hsl[2];
- $m2 = ($l <= 0.5) ? $l * ($s + 1) : $l + $s - $l*$s;
- $m1 = $l * 2 - $m2;
- return array(
- _color_hue2rgb($m1, $m2, $h + 0.33333),
- _color_hue2rgb($m1, $m2, $h),
- _color_hue2rgb($m1, $m2, $h - 0.33333),
- );
- }
- function _color_hue2rgb($m1, $m2, $h) {
- $h = ($h < 0) ? $h + 1 : (($h > 1) ? $h - 1 : $h);
- if ($h * 6 < 1) return $m1 + ($m2 - $m1) * $h * 6;
- if ($h * 2 < 1) return $m2;
- if ($h * 3 < 2) return $m1 + ($m2 - $m1) * (0.66666 - $h) * 6;
- return $m1;
- }
- function _color_rgb2hsl($rgb) {
- $r = $rgb[0];
- $g = $rgb[1];
- $b = $rgb[2];
- $min = min($r, min($g, $b));
- $max = max($r, max($g, $b));
- $delta = $max - $min;
- $l = ($min + $max) / 2;
- $s = 0;
- if ($l > 0 && $l < 1) {
- $s = $delta / ($l < 0.5 ? (2 * $l) : (2 - 2 * $l));
- }
- $h = 0;
- if ($delta > 0) {
- if ($max == $r && $max != $g) $h += ($g - $b) / $delta;
- if ($max == $g && $max != $b) $h += (2 + ($b - $r) / $delta);
- if ($max == $b && $max != $r) $h += (4 + ($r - $g) / $delta);
- $h /= 6;
- }
- return array($h, $s, $l);
- }
|