You are here

function video_cck_youtube_convert_color in Embedded Media Field 5

1 call to video_cck_youtube_convert_color()
theme_video_cck_youtube_flash in contrib/video_cck/providers/youtube.inc
The embedded flash displaying the youtube video.

File

contrib/video_cck/providers/youtube.inc, line 252

Code

function video_cck_youtube_convert_color($color = NULL) {
  if ($color[0] == '#') {
    return substr($color, 1);
  }
  return $color;
}