Created
July 23, 2012 04:51
-
-
Save jmertic/3162010 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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