1
0
Fork 0

Merge remote-tracking branch 'friendica/develop' into issue/#3062

# Conflicts:
#	view/theme/duepuntozero/theme.php
#	view/theme/smoothly/theme.php
This commit is contained in:
Hypolite Petovan 2017-01-12 09:19:59 +11:00
commit b61479ba6e
166 changed files with 835 additions and 789 deletions

View file

@ -3,7 +3,7 @@
* Theme settings
*/
function theme_content(App &$a){
function theme_content(App $a) {
if (!local_user()) {
return;
}
@ -14,7 +14,7 @@ function theme_content(App &$a){
return clean_form($a, $colorset, $user);
}
function theme_post(App &$a){
function theme_post(App $a) {
if (! local_user()) {
return;
}
@ -24,23 +24,23 @@ function theme_post(App &$a){
}
}
function theme_admin(App &$a){
function theme_admin(App $a) {
$colorset = get_config( 'duepuntozero', 'colorset');
$user = false;
return clean_form($a, $colorset, $user);
}
function theme_admin_post(App &$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'),
'default' =>t('default'),
'greenzero' =>t('greenzero'),
'purplezero' =>t('purplezero'),
'easterbunny' =>t('easterbunny'),

View file

@ -1,6 +1,6 @@
<?php
function duepuntozero_init(App &$a) {
function duepuntozero_init(App $a) {
set_template_engine($a, 'smarty3');