]> git.mxchange.org Git - friendica.git/commitdiff
diabook-themes: theme-settings: users can set font-size and line-height for posts...
authortommy tomson <thomas.bierey@gmx.de>
Fri, 13 Apr 2012 20:08:13 +0000 (22:08 +0200)
committertommy tomson <thomas.bierey@gmx.de>
Fri, 13 Apr 2012 20:08:13 +0000 (22:08 +0200)
22 files changed:
view/theme/diabook-aerith/config.php [new file with mode: 0644]
view/theme/diabook-aerith/style-network.css
view/theme/diabook-aerith/style-profile.css
view/theme/diabook-aerith/style.css
view/theme/diabook-aerith/style.php [new file with mode: 0644]
view/theme/diabook-aerith/theme.php
view/theme/diabook-aerith/theme_settings.tpl [new file with mode: 0644]
view/theme/diabook-blue/config.php [new file with mode: 0644]
view/theme/diabook-blue/style-network.css
view/theme/diabook-blue/style-profile.css
view/theme/diabook-blue/style.css
view/theme/diabook-blue/style.php [new file with mode: 0644]
view/theme/diabook-blue/theme.php
view/theme/diabook-blue/theme_settings.tpl [new file with mode: 0644]
view/theme/diabook-red/config.php [new file with mode: 0644]
view/theme/diabook-red/style-network.css
view/theme/diabook-red/style-profile.css
view/theme/diabook-red/style.css
view/theme/diabook-red/style.php [new file with mode: 0644]
view/theme/diabook-red/theme.php
view/theme/diabook-red/theme_settings.tpl [new file with mode: 0644]
view/theme/diabook/config.php

diff --git a/view/theme/diabook-aerith/config.php b/view/theme/diabook-aerith/config.php
new file mode 100644 (file)
index 0000000..afd3119
--- /dev/null
@@ -0,0 +1,71 @@
+<?php
+/**
+ * Theme settings
+ */
+
+
+
+function theme_content(&$a){
+       if(!local_user())
+               return;         
+       
+       $font_size = get_pconfig(local_user(), 'diabook-aerith', 'font_size' );
+       $line_height = get_pconfig(local_user(), 'diabook-aerith', 'line_height' );
+       
+       return diabook_form($a,$font_size, $line_height);
+}
+
+function theme_post(&$a){
+       if(! local_user())
+               return;
+       
+       if (isset($_POST['diabook-aerith-settings-submit'])){
+               set_pconfig(local_user(), 'diabook-aerith', 'font_size', $_POST['diabook-aerith_font_size']);
+               set_pconfig(local_user(), 'diabook-aerith', 'line_height', $_POST['diabook-aerith_line_height']);
+       }
+}
+
+
+function theme_admin(&$a){
+       $font_size = get_config('diabook-aerith', 'font_size' );
+       $line_height = get_config('diabook-aerith', 'line_height' );
+       
+       return diabook_form($a,$font_size, $line_height);
+}
+
+function theme_admin_post(&$a){
+       if (isset($_POST['diabook-aerith-settings-submit'])){
+               set_config('diabook-aerith', 'font_size', $_POST['diabook-aerith_font_size']);
+               set_config('diabook-aerith', 'line_height', $_POST['diabook-aerith_line_height']);
+       }
+}
+
+
+function diabook_form(&$a, $font_size, $line_height){
+       $line_heights = array(
+               "1.4"=>"1.4",
+               "1.3"=>"1.3",
+               "1.2"=>"1.2",
+               "1.1"=>"1.1",
+       );
+       
+       $font_sizes = array(
+               '14'=>'14',
+               '13.5'=>'13.5',         
+               '13'=>'13',
+               '12.5'=>'12.5',
+               '12'=>'12',
+               );
+       
+       
+       
+       $t = file_get_contents( dirname(__file__). "/theme_settings.tpl" );
+       $o .= replace_macros($t, array(
+               '$submit' => t('Submit'),
+               '$baseurl' => $a->get_baseurl(),
+               '$title' => t("Theme settings"),
+               '$font_size' => array('diabook-aerith_font_size', t('Set font-size for posts and comments'), $font_size, '', $font_sizes),
+               '$line_height' => array('diabook-aerith_line_height', t('Set line-height for posts and comments'), $line_height, '', $line_heights),
+       ));
+       return $o;
+}
index b9754ac328bad186c06b3e5760c03295ad0c565a..17335389d2ebd6e3e9d533e45d3b8176f09bb0ba 100644 (file)
@@ -1380,10 +1380,10 @@ transition: all 0.2s ease-in-out;
 }
 
 .wall-item-container .wall-item-content {
-  font-size: 12.5px;
+
   max-width: 420px;
   word-wrap: break-word;
-  line-height: 1.2;
+
   margin-bottom: 14px;
 }
 
index 078b6d01f6bee300b28820e6f0b0fa8785d2471a..3dea206973156fc037e0125248a475eb1b749c6a 100644 (file)
@@ -1358,10 +1358,10 @@ transition: all 0.2s ease-in-out;
 }
 
 .wall-item-container .wall-item-content {
-  font-size: 12.5px;
+
   max-width: 420px;
   word-wrap: break-word;
-  line-height: 1.2;
+
   margin-bottom: 14px;
 }
 
index 20e91518aa3b7d53487edf9df2fd20d54ae90056..a9269f21ddff3703c30fba015e728fbfef0b5848 100644 (file)
@@ -1454,10 +1454,10 @@ body .pageheader{
   color: #999;
 }
 .wall-item-photo-container .wall-item-content {
-  font-size: 12.5px;
+
   max-width: 720px;
   word-wrap: break-word;
-  line-height: 1.2;
+
   margin-bottom: 14px;
 }
 .wall-item-photo-container .wall-item-content img {
@@ -1599,10 +1599,10 @@ body .pageheader{
 }
 
 .wall-item-container .wall-item-content {
-  font-size: 12.5px;
+
   max-width: 720px;
   word-wrap: break-word;
-  line-height: 1.2;
+
   margin-bottom: 14px;
 }
 
diff --git a/view/theme/diabook-aerith/style.php b/view/theme/diabook-aerith/style.php
new file mode 100644 (file)
index 0000000..1ae6250
--- /dev/null
@@ -0,0 +1,120 @@
+<?php
+       $line_height=false;
+       $diabook_font_size=false;
+       $site_line_height = get_config("diabook-aerith","line_height");
+       $site_diabook_font_size = get_config("diabook-aerith", "font_size" );
+       
+       if (local_user()) {
+               $line_height = get_pconfig(local_user(), "diabook-aerith","line_height");
+               $diabook_font_size = get_pconfig(local_user(), "diabook-aerith", "font_size");
+       }
+       
+       if ($line_height===false) $line_height=$site_line_height;
+       if ($line_height===false) $line_height="1.3";
+       if ($diabook_font_size===false) $diabook_font_size=$site_diabook_font_size;
+       if ($diabook_font_size===false) $diabook_font_size="13";
+       
+               
+       if (file_exists("$THEMEPATH/style.css")){
+               echo file_get_contents("$THEMEPATH/style.css");
+       }
+
+       if($diabook_font_size == "14"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       font-size: 14px;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       font-size: 14px;
+                                       }
+               ";
+       }
+       if($diabook_font_size == "13.5"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       font-size: 13.5px;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       font-size: 13.5px;
+                                       }
+               ";
+       }
+       if($diabook_font_size == "13"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       font-size: 13px;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       font-size: 13px;
+                                       }
+               ";
+       }
+       if($diabook_font_size == "12.5"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       font-size: 12.5px;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       font-size: 12.5px;
+                                       }
+               ";
+       }
+       if($diabook_font_size == "12"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       font-size: 12px;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       font-size: 12px;
+                                       }
+               ";
+       }
+       if($line_height == "1.4"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       line-height: 1.4;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       line-height: 1.4;
+                                       }
+               ";
+       }
+       if($line_height == "1.3"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       line-height: 1.3;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       line-height: 1.3;
+                                       }
+               ";
+       }
+       if($line_height == "1.2"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       line-height: 1.2;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       line-height: 1.2;
+                                       }
+               ";
+       }
+       if($line_height == "1.1"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       line-height: 1.1;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       line-height: 1.1;
+                                       }
+               ";
+       }
index 39ea118cffe04d550607682f840c4bc693a303ac..53c564a945761cf1c32ed8cfe7c2cbc85487b561 100755 (executable)
@@ -3,13 +3,13 @@
 /*
  * Name: Diabook-aerith
  * Description: Diabook-aerith : report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu
- * Version: (Version: 1.017)
+ * Version: (Version: 1.018)
  * Author: 
  */
 
 
 //print diabook-version for debugging
-$diabook_version = "Diabook-aerith (Version: 1.017)";
+$diabook_version = "Diabook-aerith (Version: 1.018)";
 $a->page['htmlhead'] .= sprintf('<script "%s" ></script>', $diabook_version);
 
 
diff --git a/view/theme/diabook-aerith/theme_settings.tpl b/view/theme/diabook-aerith/theme_settings.tpl
new file mode 100644 (file)
index 0000000..002923a
--- /dev/null
@@ -0,0 +1,8 @@
+{{inc field_select.tpl with $field=$font_size}}{{endinc}}
+
+{{inc field_select.tpl with $field=$line_height}}{{endinc}}
+
+<div class="settings-submit-wrapper">
+       <input type="submit" value="$submit" class="settings-submit" name="diabook-aerith-settings-submit" />
+</div>
+
diff --git a/view/theme/diabook-blue/config.php b/view/theme/diabook-blue/config.php
new file mode 100644 (file)
index 0000000..3ad88b5
--- /dev/null
@@ -0,0 +1,71 @@
+<?php
+/**
+ * Theme settings
+ */
+
+
+
+function theme_content(&$a){
+       if(!local_user())
+               return;         
+       
+       $font_size = get_pconfig(local_user(), 'diabook-blue', 'font_size' );
+       $line_height = get_pconfig(local_user(), 'diabook-blue', 'line_height' );
+       
+       return diabook_form($a,$font_size, $line_height);
+}
+
+function theme_post(&$a){
+       if(! local_user())
+               return;
+       
+       if (isset($_POST['diabook-blue-settings-submit'])){
+               set_pconfig(local_user(), 'diabook-blue', 'font_size', $_POST['diabook-blue_font_size']);
+               set_pconfig(local_user(), 'diabook-blue', 'line_height', $_POST['diabook-blue_line_height']);
+       }
+}
+
+
+function theme_admin(&$a){
+       $font_size = get_config('diabook-blue', 'font_size' );
+       $line_height = get_config('diabook-blue', 'line_height' );
+       
+       return diabook_form($a,$font_size, $line_height);
+}
+
+function theme_admin_post(&$a){
+       if (isset($_POST['diabook-blue-settings-submit'])){
+               set_config('diabook-blue', 'font_size', $_POST['diabook-blue_font_size']);
+               set_config('diabook-blue', 'line_height', $_POST['diabook-blue_line_height']);
+       }
+}
+
+
+function diabook_form(&$a, $font_size, $line_height){
+       $line_heights = array(
+               "1.4"=>"1.4",
+               "1.3"=>"1.3",
+               "1.2"=>"1.2",
+               "1.1"=>"1.1",
+       );
+       
+       $font_sizes = array(
+               '14'=>'14',
+               '13.5'=>'13.5',         
+               '13'=>'13',
+               '12.5'=>'12.5',
+               '12'=>'12',
+               );
+       
+       
+       
+       $t = file_get_contents( dirname(__file__). "/theme_settings.tpl" );
+       $o .= replace_macros($t, array(
+               '$submit' => t('Submit'),
+               '$baseurl' => $a->get_baseurl(),
+               '$title' => t("Theme settings"),
+               '$font_size' => array('diabook-blue_font_size', t('Set font-size for posts and comments'), $font_size, '', $font_sizes),
+               '$line_height' => array('diabook-blue_line_height', t('Set line-height for posts and comments'), $line_height, '', $line_heights),
+       ));
+       return $o;
+}
index 021edc45e96268b8786dcf667ece4cbb8ddbedad..2f25372a90349b89619ee703b79a9afd1e2ced2c 100644 (file)
@@ -1342,10 +1342,10 @@ transition: all 0.2s ease-in-out;
 }
 
 .wall-item-container .wall-item-content {
-  font-size: 12.5px;
+
   max-width: 420px;
   word-wrap: break-word;
-  line-height: 1.2;
+
   margin-bottom: 14px;
 }
 
index ae7fa8d1484c064fb53f1aabb02038401429b08c..f0b4fbd022683d55889a5812f60c49d073cfbf0c 100644 (file)
@@ -1325,10 +1325,10 @@ transition: all 0.2s ease-in-out;
 }
 
 .wall-item-container .wall-item-content {
-  font-size: 12.5px;
+
   max-width: 420px;
   word-wrap: break-word;
-  line-height: 1.2;
+
   margin-bottom: 14px;
 }
 
index 5d0833931e41dd72b2c6f40775a04e2371102be2..923e63e3e582d0abdeb47e0c04ef75d158edfdf9 100644 (file)
@@ -1411,10 +1411,10 @@ body .pageheader{
   color: #999;
 }
 .wall-item-photo-container .wall-item-content {
-  font-size: 12.5px;
+
   max-width: 720px;
   word-wrap: break-word;
-  line-height: 1.2;
+
   margin-bottom: 14px;
 }
 .wall-item-photo-container .wall-item-content img {
@@ -1557,10 +1557,10 @@ body .pageheader{
 }
 
 .wall-item-container .wall-item-content {
-  font-size: 12.5px;
+
   max-width: 720px;
   word-wrap: break-word;
-  line-height: 1.2;
+
   margin-bottom: 14px;
 }
 
diff --git a/view/theme/diabook-blue/style.php b/view/theme/diabook-blue/style.php
new file mode 100644 (file)
index 0000000..330911b
--- /dev/null
@@ -0,0 +1,120 @@
+<?php
+       $line_height=false;
+       $diabook_font_size=false;
+       $site_line_height = get_config("diabook-blue","line_height");
+       $site_diabook_font_size = get_config("diabook-blue", "font_size" );
+       
+       if (local_user()) {
+               $line_height = get_pconfig(local_user(), "diabook-blue","line_height");
+               $diabook_font_size = get_pconfig(local_user(), "diabook-blue", "font_size");
+       }
+       
+       if ($line_height===false) $line_height=$site_line_height;
+       if ($line_height===false) $line_height="1.3";
+       if ($diabook_font_size===false) $diabook_font_size=$site_diabook_font_size;
+       if ($diabook_font_size===false) $diabook_font_size="13";
+       
+               
+       if (file_exists("$THEMEPATH/style.css")){
+               echo file_get_contents("$THEMEPATH/style.css");
+       }
+
+       if($diabook_font_size == "14"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       font-size: 14px;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       font-size: 14px;
+                                       }
+               ";
+       }
+       if($diabook_font_size == "13.5"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       font-size: 13.5px;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       font-size: 13.5px;
+                                       }
+               ";
+       }
+       if($diabook_font_size == "13"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       font-size: 13px;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       font-size: 13px;
+                                       }
+               ";
+       }
+       if($diabook_font_size == "12.5"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       font-size: 12.5px;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       font-size: 12.5px;
+                                       }
+               ";
+       }
+       if($diabook_font_size == "12"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       font-size: 12px;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       font-size: 12px;
+                                       }
+               ";
+       }
+       if($line_height == "1.4"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       line-height: 1.4;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       line-height: 1.4;
+                                       }
+               ";
+       }
+       if($line_height == "1.3"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       line-height: 1.3;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       line-height: 1.3;
+                                       }
+               ";
+       }
+       if($line_height == "1.2"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       line-height: 1.2;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       line-height: 1.2;
+                                       }
+               ";
+       }
+       if($line_height == "1.1"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       line-height: 1.1;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       line-height: 1.1;
+                                       }
+               ";
+       }
index 3b74bf1d3c9e7998f94db483db98522694e501ad..8446829438f993ec3b7bdce2e7cd63bd9143f0ca 100755 (executable)
@@ -3,13 +3,13 @@
 /*
  * Name: Diabook-blue
  * Description: Diabook-blue: report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu
- * Version: (Version: 1.017)
+ * Version: (Version: 1.018)
  * Author: 
  */
 
 
 //print diabook-version for debugging
-$diabook_version = "Diabook-blue (Version: 1.017)";
+$diabook_version = "Diabook-blue (Version: 1.018)";
 $a->page['htmlhead'] .= sprintf('<script "%s" ></script>', $diabook_version);
 
 //change css on network and profilepages
diff --git a/view/theme/diabook-blue/theme_settings.tpl b/view/theme/diabook-blue/theme_settings.tpl
new file mode 100644 (file)
index 0000000..a40e0e2
--- /dev/null
@@ -0,0 +1,8 @@
+{{inc field_select.tpl with $field=$font_size}}{{endinc}}
+
+{{inc field_select.tpl with $field=$line_height}}{{endinc}}
+
+<div class="settings-submit-wrapper">
+       <input type="submit" value="$submit" class="settings-submit" name="diabook-blue-settings-submit" />
+</div>
+
diff --git a/view/theme/diabook-red/config.php b/view/theme/diabook-red/config.php
new file mode 100644 (file)
index 0000000..0b09a87
--- /dev/null
@@ -0,0 +1,71 @@
+<?php
+/**
+ * Theme settings
+ */
+
+
+
+function theme_content(&$a){
+       if(!local_user())
+               return;         
+       
+       $font_size = get_pconfig(local_user(), 'diabook-red', 'font_size' );
+       $line_height = get_pconfig(local_user(), 'diabook-red', 'line_height' );
+       
+       return diabook_form($a,$font_size, $line_height);
+}
+
+function theme_post(&$a){
+       if(! local_user())
+               return;
+       
+       if (isset($_POST['diabook-blue-settings-submit'])){
+               set_pconfig(local_user(), 'diabook-red', 'font_size', $_POST['diabook-red_font_size']);
+               set_pconfig(local_user(), 'diabook-red', 'line_height', $_POST['diabook-red_line_height']);
+       }
+}
+
+
+function theme_admin(&$a){
+       $font_size = get_config('diabook-red', 'font_size' );
+       $line_height = get_config('diabook-red', 'line_height' );
+       
+       return diabook_form($a,$font_size, $line_height);
+}
+
+function theme_admin_post(&$a){
+       if (isset($_POST['diabook-red-settings-submit'])){
+               set_config('diabook-red', 'font_size', $_POST['diabook-red_font_size']);
+               set_config('diabook-red', 'line_height', $_POST['diabook-red_line_height']);
+       }
+}
+
+
+function diabook_form(&$a, $font_size, $line_height){
+       $line_heights = array(
+               "1.4"=>"1.4",
+               "1.3"=>"1.3",
+               "1.2"=>"1.2",
+               "1.1"=>"1.1",
+       );
+       
+       $font_sizes = array(
+               '14'=>'14',
+               '13.5'=>'13.5',         
+               '13'=>'13',
+               '12.5'=>'12.5',
+               '12'=>'12',
+               );
+       
+       
+       
+       $t = file_get_contents( dirname(__file__). "/theme_settings.tpl" );
+       $o .= replace_macros($t, array(
+               '$submit' => t('Submit'),
+               '$baseurl' => $a->get_baseurl(),
+               '$title' => t("Theme settings"),
+               '$font_size' => array('diabook-red_font_size', t('Set font-size for posts and comments'), $font_size, '', $font_sizes),
+               '$line_height' => array('diabook-red_line_height', t('Set line-height for posts and comments'), $line_height, '', $line_heights),
+       ));
+       return $o;
+}
index ca32be2316081f7292c23b6f837102a0d3aaa296..17b7af09bb0a832b92a065bd7746611305ba0ed9 100644 (file)
@@ -1376,10 +1376,10 @@ transition: all 0.2s ease-in-out;
 }
 
 .wall-item-container .wall-item-content {
-  font-size: 12.5px;
+
   max-width: 420px;
   word-wrap: break-word;
-  line-height: 1.2;
+
   margin-bottom: 14px;
 }
 
index 242c08c680fa1d00ce77a97cdd35008f9d22a807..74566d5c51a08a66234590364b59a28e38729002 100644 (file)
@@ -1338,10 +1338,10 @@ transition: all 0.2s ease-in-out;
 }
 
 .wall-item-container .wall-item-content {
-  font-size: 12.5px;
+
   max-width: 420px;
   word-wrap: break-word;
-  line-height: 1.2;
+
   margin-bottom: 14px;
 }
 
index 7c92590c1f23c9937878e85ca9ec16c83fa68795..a722dbae9b78bbd167d7b32df9dcb576971e25a2 100644 (file)
@@ -1440,10 +1440,10 @@ body .pageheader{
   color: #999;
 }
 .wall-item-photo-container .wall-item-content {
-  font-size: 12.5px;
+
   max-width: 720px;
   word-wrap: break-word;
-  line-height: 1.2;
+
   margin-bottom: 14px;
 }
 .wall-item-photo-container .wall-item-content img {
@@ -1585,10 +1585,10 @@ body .pageheader{
 }
 
 .wall-item-container .wall-item-content {
-  font-size: 12.5px;
+
   max-width: 720px;
   word-wrap: break-word;
-  line-height: 1.2;
+
   margin-bottom: 14px;
 }
 
diff --git a/view/theme/diabook-red/style.php b/view/theme/diabook-red/style.php
new file mode 100644 (file)
index 0000000..35b82ee
--- /dev/null
@@ -0,0 +1,120 @@
+<?php
+       $line_height=false;
+       $diabook_font_size=false;
+       $site_line_height = get_config("diabook-red","line_height");
+       $site_diabook_font_size = get_config("diabook-red", "font_size" );
+       
+       if (local_user()) {
+               $line_height = get_pconfig(local_user(), "diabook-red","line_height");
+               $diabook_font_size = get_pconfig(local_user(), "diabook-red", "font_size");
+       }
+       
+       if ($line_height===false) $line_height=$site_line_height;
+       if ($line_height===false) $line_height="1.3";
+       if ($diabook_font_size===false) $diabook_font_size=$site_diabook_font_size;
+       if ($diabook_font_size===false) $diabook_font_size="13";
+       
+               
+       if (file_exists("$THEMEPATH/style.css")){
+               echo file_get_contents("$THEMEPATH/style.css");
+       }
+
+       if($diabook_font_size == "14"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       font-size: 14px;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       font-size: 14px;
+                                       }
+               ";
+       }
+       if($diabook_font_size == "13.5"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       font-size: 13.5px;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       font-size: 13.5px;
+                                       }
+               ";
+       }
+       if($diabook_font_size == "13"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       font-size: 13px;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       font-size: 13px;
+                                       }
+               ";
+       }
+       if($diabook_font_size == "12.5"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       font-size: 12.5px;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       font-size: 12.5px;
+                                       }
+               ";
+       }
+       if($diabook_font_size == "12"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       font-size: 12px;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       font-size: 12px;
+                                       }
+               ";
+       }
+       if($line_height == "1.4"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       line-height: 1.4;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       line-height: 1.4;
+                                       }
+               ";
+       }
+       if($line_height == "1.3"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       line-height: 1.3;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       line-height: 1.3;
+                                       }
+               ";
+       }
+       if($line_height == "1.2"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       line-height: 1.2;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       line-height: 1.2;
+                                       }
+               ";
+       }
+       if($line_height == "1.1"){
+               echo "
+                       .wall-item-container .wall-item-content {
+                                       line-height: 1.1;
+                                       }
+                                       
+                       .wall-item-photo-container .wall-item-content {
+                                       line-height: 1.1;
+                                       }
+               ";
+       }
index 69773462f35abd76e9a43702a7a569011a558f59..c7fa77985b812deb6be3bfd5ea9dd0fabcb1c48d 100755 (executable)
@@ -3,13 +3,13 @@
 /*
  * Name: Diabook-red
  * Description: Diabook-red: report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu
- * Version: (Version: 1.017)
+ * Version: (Version: 1.018)
  * Author: 
  */
 
 
 //print diabook-version for debugging
-$diabook_version = "Diabook-red (Version: 1.017)";
+$diabook_version = "Diabook-red (Version: 1.018)";
 $a->page['htmlhead'] .= sprintf('<script "%s" ></script>', $diabook_version);
 
 //change css on network and profilepages
diff --git a/view/theme/diabook-red/theme_settings.tpl b/view/theme/diabook-red/theme_settings.tpl
new file mode 100644 (file)
index 0000000..9e83ae8
--- /dev/null
@@ -0,0 +1,8 @@
+{{inc field_select.tpl with $field=$font_size}}{{endinc}}
+
+{{inc field_select.tpl with $field=$line_height}}{{endinc}}
+
+<div class="settings-submit-wrapper">
+       <input type="submit" value="$submit" class="settings-submit" name="diabook-red-settings-submit" />
+</div>
+
index f4eb7aae5af01c6410366be712ce468f6b495117..25b3c4b54bed29f82c12d2c5040f2ab95a9871c5 100644 (file)
@@ -30,7 +30,7 @@ function theme_admin(&$a){
        $font_size = get_config('diabook', 'font_size' );
        $line_height = get_config('diabook', 'line_height' );
        
-       return quattro_form($a,$font_size, $line_height);
+       return diabook_form($a,$font_size, $line_height);
 }
 
 function theme_admin_post(&$a){