Skip to content

Instantly share code, notes, and snippets.

@jmertic
Created July 23, 2012 04:51
Show Gist options
  • Select an option

  • Save jmertic/3162010 to your computer and use it in GitHub Desktop.

Select an option

Save jmertic/3162010 to your computer and use it in GitHub Desktop.
<?php
class CalendarDisplay
{
/**
* colors of items on calendar
*/
public $activity_colors = array(
'Meetings' => array(
'border' => '#1C5FBD',
'body' => '#D2E5FC',
),
'Calls' => array(
'border' => '#DE4040',
'body' => '#FCDCDC',
),
'Tasks' => array(
'border' => '#015900',
'body' => '#B1F5AE',
),
// Added next several lines for meeting status color
'Planned' => array(
'border' => '#ff6666',
'body' => '#ff6666',
),
'Held' => array(
'border' => '#FF9999',
'body' => '#FF9999',
),
'Not Held' => array(
'border' => '#6C8CD5',
'body' => '#6C8CD5',
),
// end --------------------------------------------------------
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment