}
$is_a_date_query = false;
-- if(x($_GET['cid']) && intval($_GET['cid']) != 0)
++ if (x($_GET['cid']) && intval($_GET['cid']) != 0) {
$cid = $_GET['cid'];
++ }
-- if($a->argc > 1) {
-- for($x = 1; $x < $a->argc; $x ++) {
-- if(is_a_date_arg($a->argv[$x])) {
++ if ($a->argc > 1) {
++ for ($x = 1; $x < $a->argc; $x ++) {
++ if (is_a_date_arg($a->argv[$x])) {
$is_a_date_query = true;
break;
}
// fetch last used network view and redirect if needed
-- if(! $is_a_date_query) {
++ if (! $is_a_date_query) {
$sel_tabs = network_query_get_sel_tab($a);
$sel_nets = network_query_get_sel_net();
$sel_groups = network_query_get_sel_group($a);
* Theme settings
*/
--
--
-function theme_content(&$a){
+function theme_content(App &$a){
if (!local_user()) {
return;
}
}
-function theme_admin(&$a){
+function theme_admin(App &$a){
$align = get_config('quattro', 'align' );
$color = get_config('quattro', 'color' );
-- $tfs = get_config("quattro","tfs");
-- $pfs = get_config("quattro","pfs");
++ $tfs = get_config("quattro","tfs");
++ $pfs = get_config("quattro","pfs");
return quattro_form($a,$align, $color, $tfs, $pfs);
}
if (isset($_POST['quattro-settings-submit'])){
set_config('quattro', 'align', $_POST['quattro_align']);
set_config('quattro', 'color', $_POST['quattro_color']);
-- set_config('quattro', 'tfs', $_POST['quattro_tfs']);
++ set_config('quattro', 'tfs', $_POST['quattro_tfs']);
set_config('quattro', 'pfs', $_POST['quattro_pfs']);
}
}
/// @TODO $a is no longer used here
--function quattro_form(&$a, $align, $color, $tfs, $pfs){
++function quattro_form(App &$a, $align, $color, $tfs, $pfs){
$colors = array(
-- "dark"=>"Quattro",
-- "lilac"=>"Lilac",
-- "green"=>"Green"
++ "dark" => "Quattro",
++ "lilac" => "Lilac",
++ "green" => "Green",
);
--
-- if ($tfs===false) $tfs="20";
-- if ($pfs===false) $pfs="12";
--
++
++ if ($tfs === false) {
++ $tfs = "20";
++ }
++ if ($pfs === false) {
++ $pfs = "12";
++ }
++
$t = get_markup_template("theme_settings.tpl" );
$o .= replace_macros($t, array(
-- '$submit' => t('Submit'),
++ '$submit' => t('Submit'),
'$baseurl' => App::get_baseurl(),
-- '$title' => t("Theme settings"),
-- '$align' => array('quattro_align', t('Alignment'), $align, '', array('left'=>t('Left'), 'center'=>t('Center'))),
-- '$color' => array('quattro_color', t('Color scheme'), $color, '', $colors),
-- '$pfs' => array('quattro_pfs', t('Posts font size'), $pfs),
-- '$tfs' => array('quattro_tfs',t('Textareas font size'), $tfs),
++ '$title' => t("Theme settings"),
++ '$align' => array('quattro_align', t('Alignment'), $align, '', array('left'=>t('Left'), 'center'=>t('Center'))),
++ '$color' => array('quattro_color', t('Color scheme'), $color, '', $colors),
++ '$pfs' => array('quattro_pfs', t('Posts font size'), $pfs),
++ '$tfs' => array('quattro_tfs',t('Textareas font size'), $tfs),
));
return $o;
}