"cleanzero", "cleanzero-green"=>"green", "cleanzero-purple"=>"purple" ); $font_sizes = array( '12'=>'12', "---"=>"---", "16"=>"16", "14"=>"14", '10'=>'10', ); $resizes = array( "0"=>"0 (no resizing)", "600"=>"1 (600px)", "300"=>"2 (300px)", "250"=>"3 (250px)", "150"=>"4 (150px)", ); $theme_widths =array ( "standard"=>"standard", "narrow"=>"narrow", "wide"=>"wide", ); // $t = file_get_contents( dirname(__file__). "/theme_settings.tpl" ); $t = get_markup_template("theme_settings.tpl" ); $includes = array( '$field_select' => 'field_select.tpl', ); $includes = set_template_includes($a->theme['template_engine'], $includes); $o .= replace_macros($t, $includes + array( '$submit' => t('Submit'), '$baseurl' => $a->get_baseurl(), '$title' => t("Theme settings"), '$resize' => array('cleanzero_resize',t ('Set resize level for images in posts and comments (width and height)'),$resize,'',$resizes), '$font_size' => array('cleanzero_font_size', t('Set font-size for posts and comments'), $font_size, '', $font_sizes), '$theme_width' => array('cleanzero_theme_width', t('Set theme width'), $theme_width, '', $theme_widths), '$color' => array('cleanzero_color', t('Color scheme'), $color, '', $colors), )); return $o; }