Skip to content

Instantly share code, notes, and snippets.

@laras126
Created March 27, 2011 23:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save laras126/889741 to your computer and use it in GitHub Desktop.
Save laras126/889741 to your computer and use it in GitHub Desktop.
sample options
<?php
$options[] = array( "name" => "Header Color",
"desc" => "Color selected.",
"id" => $shortname."_hdr_bg_color",
"std" => "#2098a8",
"type" => "color");
$options[] = array( "name" => "Body Background Color",
"desc" => "Color selected.",
"id" => $shortname."_body_bg_color",
"std" => "#2098a8",
"type" => "color");
$options[] = array( "name" => "Body Font",
"id" => $shortname."_body_font",
"type" => "select",
"std" => "Helvetica",
"options" => array(
"Arial, Helvetica Neue, Helvetica, sans-serif",
"Courier New, Courier, monospace",
"Georgia, Palatino, Palatino Linotype, Times, Times New Roman, serif",
"Gill Sans, Calibri, Trebuchet MS, sans-serif",
"Helvetica Neue, Arial, Helvetica, sans-serif",
"Lucida Sans, Lucida Grande, Lucida Sans Unicode, sans-serif",
"Palatino, Palatino Linotype, Georgia, Times, Times New Roman, serif",
"Times, Times New Roman, Georgia, serif",
"Verdana, Geneva, Tahoma, sans-serif"
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment