]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/duepuntozero/config.php
Merge pull request #3227 from annando/1703-pdo
[friendica.git] / view / theme / duepuntozero / config.php
index 749a377fc66d3e650b04ca0c8506e127a42d6cfd..381b0671676fe1a5fd9e86f9bde8f33aa79bcd8b 100644 (file)
@@ -3,9 +3,7 @@
  * Theme settings
  */
 
-
-
-function theme_content(&$a){
+function theme_content(App $a) {
        if (!local_user()) {
                return;
        }
@@ -16,8 +14,7 @@ function theme_content(&$a){
        return clean_form($a, $colorset, $user);
 }
 
-function theme_post(&$a){
-
+function theme_post(App $a) {
        if (! local_user()) {
                return;
        }
@@ -27,30 +24,29 @@ function theme_post(&$a){
        }
 }
 
-
-function theme_admin(&$a){
+function theme_admin(App $a) {
        $colorset = get_config( 'duepuntozero', 'colorset');
        $user = false;
 
        return clean_form($a, $colorset, $user);
 }
 
-function theme_admin_post(&$a){
+function theme_admin_post(App $a) {
        if (isset($_POST['duepuntozero-settings-submit'])){
                set_config('duepuntozero', 'colorset', $_POST['duepuntozero_colorset']);
        }
 }
 
 /// @TODO $a is no longer used
-function clean_form(&$a, &$colorset, $user){
+function clean_form(App $a, &$colorset, $user) {
        $colorset = array(
-               'default'=>t('default'), 
-               'greenzero'=>t('greenzero'),
-               'purplezero'=>t('purplezero'),
-               'easterbunny'=>t('easterbunny'),
-               'darkzero'=>t('darkzero'),
-               'comix'=>t('comix'),
-               'slackr'=>t('slackr'),
+               'default'     =>t('default'),
+               'greenzero'   =>t('greenzero'),
+               'purplezero'  =>t('purplezero'),
+               'easterbunny' =>t('easterbunny'),
+               'darkzero'    =>t('darkzero'),
+               'comix'       =>t('comix'),
+               'slackr'      =>t('slackr'),
        );
 
        if ($user) {
@@ -64,7 +60,7 @@ function clean_form(&$a, &$colorset, $user){
        $o .= replace_macros($t, array(
                '$submit'   => t('Submit'),
                '$baseurl'  => App::get_baseurl(),
-               '$title'=> t("Theme settings"),
+               '$title'    => t("Theme settings"),
                '$colorset' => array('duepuntozero_colorset', t('Variations'), $color, '', $colorset),
        ));