2009-04-13 05:30:14 +09:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Laconica, the distributed open-source microblogging tool
|
|
|
|
*
|
|
|
|
* Change user password
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @category Settings
|
|
|
|
* @package Laconica
|
|
|
|
* @author Sarven Capadisli <csarven@controlyourself.ca>
|
2009-06-14 18:03:50 +09:00
|
|
|
* @author Zach Copley <zach@controlyourself.ca>
|
2009-04-13 05:30:14 +09:00
|
|
|
* @copyright 2008-2009 Control Yourself, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://laconi.ca/
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('LACONICA')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2009-06-16 12:21:33 +09:00
|
|
|
require_once INSTALLDIR . '/lib/accountsettingsaction.php';
|
2009-06-16 13:03:08 +09:00
|
|
|
require_once INSTALLDIR . '/lib/webcolor.php';
|
2009-04-13 05:30:14 +09:00
|
|
|
|
2009-06-30 08:55:42 +09:00
|
|
|
/**
|
|
|
|
* Base class for setting a user or group design
|
|
|
|
*
|
|
|
|
* Shows the design setting form and also handles some things like saving
|
|
|
|
* background images, and fetching a default design
|
|
|
|
*
|
|
|
|
* @category Settings
|
|
|
|
* @package Laconica
|
|
|
|
* @author Zach Copley <zach@controlyourself.ca>
|
|
|
|
* @author Sarven Capadisli <csarven@controlyourself.ca>
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://laconi.ca/
|
|
|
|
*/
|
|
|
|
|
2009-06-18 18:01:06 +09:00
|
|
|
class DesignSettingsAction extends AccountSettingsAction
|
2009-04-13 05:30:14 +09:00
|
|
|
{
|
2009-06-18 18:01:06 +09:00
|
|
|
|
|
|
|
var $submitaction = null;
|
|
|
|
|
2009-04-13 05:30:14 +09:00
|
|
|
/**
|
|
|
|
* Title of the page
|
|
|
|
*
|
|
|
|
* @return string Title of the page
|
|
|
|
*/
|
|
|
|
|
|
|
|
function title()
|
|
|
|
{
|
|
|
|
return _('Profile design');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Instructions for use
|
|
|
|
*
|
|
|
|
* @return instructions for use
|
|
|
|
*/
|
|
|
|
|
|
|
|
function getInstructions()
|
|
|
|
{
|
2009-06-17 11:17:37 +09:00
|
|
|
return _('Customize the way your profile looks ' .
|
|
|
|
'with a background image and a colour palette of your choice.');
|
2009-04-13 05:30:14 +09:00
|
|
|
}
|
|
|
|
|
2009-06-30 08:55:42 +09:00
|
|
|
/**
|
|
|
|
* Shows the design settings form
|
|
|
|
*
|
|
|
|
* @param Design $design a working design to show
|
|
|
|
*
|
|
|
|
* @return nothing
|
|
|
|
*/
|
|
|
|
|
2009-06-18 18:01:06 +09:00
|
|
|
function showDesignForm($design)
|
2009-04-13 05:30:14 +09:00
|
|
|
{
|
2009-06-17 14:18:25 +09:00
|
|
|
|
2009-05-31 04:47:05 +09:00
|
|
|
$this->elementStart('form', array('method' => 'post',
|
2009-06-17 11:17:37 +09:00
|
|
|
'enctype' => 'multipart/form-data',
|
2009-04-13 05:30:14 +09:00
|
|
|
'id' => 'form_settings_design',
|
|
|
|
'class' => 'form_settings',
|
2009-06-18 18:01:06 +09:00
|
|
|
'action' => $this->submitaction));
|
2009-04-13 05:30:14 +09:00
|
|
|
$this->elementStart('fieldset');
|
|
|
|
$this->hidden('token', common_session_token());
|
|
|
|
|
2009-06-17 11:17:37 +09:00
|
|
|
$this->elementStart('fieldset', array('id' =>
|
|
|
|
'settings_design_background-image'));
|
2009-04-13 05:30:14 +09:00
|
|
|
$this->element('legend', null, _('Change background image'));
|
|
|
|
$this->elementStart('ul', 'form_data');
|
|
|
|
$this->elementStart('li');
|
2009-06-16 12:21:33 +09:00
|
|
|
$this->element('label', array('for' => 'design_background-image_file'),
|
2009-05-20 02:05:30 +09:00
|
|
|
_('Upload file'));
|
|
|
|
$this->element('input', array('name' => 'design_background-image_file',
|
|
|
|
'type' => 'file',
|
|
|
|
'id' => 'design_background-image_file'));
|
2009-06-17 11:17:37 +09:00
|
|
|
$this->element('p', 'form_guide', _('You can upload your personal ' .
|
|
|
|
'background image. The maximum file size is 2Mb.'));
|
2009-05-20 02:05:30 +09:00
|
|
|
$this->element('input', array('name' => 'MAX_FILE_SIZE',
|
|
|
|
'type' => 'hidden',
|
|
|
|
'id' => 'MAX_FILE_SIZE',
|
|
|
|
'value' => ImageFile::maxFileSizeInt()));
|
2009-04-13 05:30:14 +09:00
|
|
|
$this->elementEnd('li');
|
2009-06-17 13:09:30 +09:00
|
|
|
|
2009-06-17 14:57:28 +09:00
|
|
|
if (!empty($design->backgroundimage)) {
|
2009-06-17 18:35:51 +09:00
|
|
|
|
2009-06-30 08:55:42 +09:00
|
|
|
$this->elementStart('li', array('id' =>
|
|
|
|
'design_background-image_onoff'));
|
2009-06-17 18:35:51 +09:00
|
|
|
|
2009-06-17 14:57:28 +09:00
|
|
|
$this->element('img', array('src' =>
|
|
|
|
Design::url($design->backgroundimage)));
|
|
|
|
|
2009-06-17 18:35:51 +09:00
|
|
|
$attrs = array('name' => 'design_background-image_onoff',
|
|
|
|
'type' => 'radio',
|
|
|
|
'id' => 'design_background-image_on',
|
|
|
|
'class' => 'radio',
|
|
|
|
'value' => 'on');
|
|
|
|
|
|
|
|
if ($design->disposition & BACKGROUND_ON) {
|
|
|
|
$attrs['checked'] = 'checked';
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->element('input', $attrs);
|
|
|
|
|
|
|
|
$this->element('label', array('for' => 'design_background-image_on',
|
|
|
|
'class' => 'radio'),
|
|
|
|
_('On'));
|
|
|
|
|
|
|
|
$attrs = array('name' => 'design_background-image_onoff',
|
|
|
|
'type' => 'radio',
|
|
|
|
'id' => 'design_background-image_off',
|
|
|
|
'class' => 'radio',
|
|
|
|
'value' => 'off');
|
|
|
|
|
|
|
|
if ($design->disposition & BACKGROUND_OFF) {
|
|
|
|
$attrs['checked'] = 'checked';
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->element('input', $attrs);
|
|
|
|
|
|
|
|
$this->element('label', array('for' => 'design_background-image_off',
|
|
|
|
'class' => 'radio'),
|
|
|
|
_('Off'));
|
|
|
|
$this->element('p', 'form_guide', _('Turn background image on or off.'));
|
|
|
|
$this->elementEnd('li');
|
2009-06-17 13:09:30 +09:00
|
|
|
|
2009-06-24 16:43:48 +09:00
|
|
|
$this->elementStart('li');
|
|
|
|
$this->checkbox('design_background-image_repeat',
|
|
|
|
_('Tile background image'),
|
2009-06-30 08:55:42 +09:00
|
|
|
($design->disposition & BACKGROUND_TILE) ? true : false);
|
2009-06-24 16:43:48 +09:00
|
|
|
$this->elementEnd('li');
|
|
|
|
}
|
2009-06-17 13:09:30 +09:00
|
|
|
|
2009-04-13 05:30:14 +09:00
|
|
|
$this->elementEnd('ul');
|
|
|
|
$this->elementEnd('fieldset');
|
|
|
|
|
2009-04-13 14:39:23 +09:00
|
|
|
$this->elementStart('fieldset', array('id' => 'settings_design_color'));
|
2009-04-13 05:30:14 +09:00
|
|
|
$this->element('legend', null, _('Change colours'));
|
|
|
|
$this->elementStart('ul', 'form_data');
|
2009-05-19 05:10:46 +09:00
|
|
|
|
2009-06-16 12:21:33 +09:00
|
|
|
try {
|
|
|
|
|
|
|
|
$bgcolor = new WebColor($design->backgroundcolor);
|
|
|
|
|
|
|
|
$this->elementStart('li');
|
2009-06-16 12:29:30 +09:00
|
|
|
$this->element('label', array('for' => 'swatch-1'), _('Background'));
|
2009-06-16 12:21:33 +09:00
|
|
|
$this->element('input', array('name' => 'design_background',
|
|
|
|
'type' => 'text',
|
2009-06-16 12:29:30 +09:00
|
|
|
'id' => 'swatch-1',
|
2009-06-16 12:21:33 +09:00
|
|
|
'class' => 'swatch',
|
|
|
|
'maxlength' => '7',
|
|
|
|
'size' => '7',
|
|
|
|
'value' => '#' . $bgcolor->hexValue()));
|
|
|
|
$this->elementEnd('li');
|
|
|
|
|
|
|
|
$ccolor = new WebColor($design->contentcolor);
|
|
|
|
|
|
|
|
$this->elementStart('li');
|
2009-06-16 12:29:30 +09:00
|
|
|
$this->element('label', array('for' => 'swatch-2'), _('Content'));
|
2009-06-16 12:21:33 +09:00
|
|
|
$this->element('input', array('name' => 'design_content',
|
|
|
|
'type' => 'text',
|
2009-06-16 12:29:30 +09:00
|
|
|
'id' => 'swatch-2',
|
2009-06-16 12:21:33 +09:00
|
|
|
'class' => 'swatch',
|
|
|
|
'maxlength' => '7',
|
|
|
|
'size' => '7',
|
|
|
|
'value' => '#' . $ccolor->hexValue()));
|
|
|
|
$this->elementEnd('li');
|
|
|
|
|
|
|
|
$sbcolor = new WebColor($design->sidebarcolor);
|
|
|
|
|
|
|
|
$this->elementStart('li');
|
2009-06-16 12:29:30 +09:00
|
|
|
$this->element('label', array('for' => 'swatch-3'), _('Sidebar'));
|
2009-06-16 12:21:33 +09:00
|
|
|
$this->element('input', array('name' => 'design_sidebar',
|
|
|
|
'type' => 'text',
|
2009-06-16 12:29:30 +09:00
|
|
|
'id' => 'swatch-3',
|
2009-06-16 12:21:33 +09:00
|
|
|
'class' => 'swatch',
|
|
|
|
'maxlength' => '7',
|
|
|
|
'size' => '7',
|
|
|
|
'value' => '#' . $sbcolor->hexValue()));
|
|
|
|
$this->elementEnd('li');
|
|
|
|
|
|
|
|
$tcolor = new WebColor($design->textcolor);
|
|
|
|
|
|
|
|
$this->elementStart('li');
|
2009-06-16 12:29:30 +09:00
|
|
|
$this->element('label', array('for' => 'swatch-4'), _('Text'));
|
2009-06-16 12:21:33 +09:00
|
|
|
$this->element('input', array('name' => 'design_text',
|
|
|
|
'type' => 'text',
|
2009-06-16 12:29:30 +09:00
|
|
|
'id' => 'swatch-4',
|
2009-06-16 12:21:33 +09:00
|
|
|
'class' => 'swatch',
|
|
|
|
'maxlength' => '7',
|
|
|
|
'size' => '7',
|
|
|
|
'value' => '#' . $tcolor->hexValue()));
|
|
|
|
$this->elementEnd('li');
|
|
|
|
|
|
|
|
$lcolor = new WebColor($design->linkcolor);
|
|
|
|
|
|
|
|
$this->elementStart('li');
|
2009-06-16 12:29:30 +09:00
|
|
|
$this->element('label', array('for' => 'swatch-5'), _('Links'));
|
2009-06-16 12:21:33 +09:00
|
|
|
$this->element('input', array('name' => 'design_links',
|
|
|
|
'type' => 'text',
|
2009-06-16 12:29:30 +09:00
|
|
|
'id' => 'swatch-5',
|
2009-06-16 12:21:33 +09:00
|
|
|
'class' => 'swatch',
|
|
|
|
'maxlength' => '7',
|
|
|
|
'size' => '7',
|
|
|
|
'value' => '#' . $lcolor->hexValue()));
|
2009-06-27 12:21:18 +09:00
|
|
|
$this->elementEnd('li');
|
2009-06-16 12:21:33 +09:00
|
|
|
|
2009-06-27 12:21:18 +09:00
|
|
|
} catch (WebColorException $e) {
|
|
|
|
common_log(LOG_ERR, 'Bad color values in design ID: ' .$design->id);
|
|
|
|
}
|
2009-06-16 12:21:33 +09:00
|
|
|
|
2009-06-27 12:21:18 +09:00
|
|
|
$this->elementEnd('ul');
|
|
|
|
$this->elementEnd('fieldset');
|
2009-06-14 18:03:50 +09:00
|
|
|
|
2009-06-27 12:21:18 +09:00
|
|
|
$this->submit('defaults', _('Use defaults'), 'submit form_action-default',
|
|
|
|
'defaults', _('Restore default designs'));
|
2009-06-14 18:03:50 +09:00
|
|
|
|
2009-06-27 12:21:18 +09:00
|
|
|
$this->element('input', array('id' => 'settings_design_reset',
|
2009-06-14 18:03:50 +09:00
|
|
|
'type' => 'reset',
|
|
|
|
'value' => 'Reset',
|
|
|
|
'class' => 'submit form_action-primary',
|
|
|
|
'title' => _('Reset back to default')));
|
2009-06-16 12:21:33 +09:00
|
|
|
|
2009-06-14 18:03:50 +09:00
|
|
|
$this->submit('save', _('Save'), 'submit form_action-secondary',
|
|
|
|
'save', _('Save design'));
|
2009-05-28 03:49:20 +09:00
|
|
|
|
2009-04-13 05:30:14 +09:00
|
|
|
$this->elementEnd('fieldset');
|
|
|
|
$this->elementEnd('form');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle a post
|
|
|
|
*
|
|
|
|
* Validate input and save changes. Reload the form with a success
|
|
|
|
* or error message.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function handlePost()
|
|
|
|
{
|
2009-06-17 11:17:37 +09:00
|
|
|
// XXX: Robin's workaround for a bug in PHP where $_POST
|
|
|
|
// and $_FILE are empty in the case that the uploaded
|
|
|
|
// file is bigger than PHP is configured to handle.
|
|
|
|
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
|
|
|
if (empty($_POST) && $_SERVER['CONTENT_LENGTH']) {
|
|
|
|
|
|
|
|
$msg = _('The server was unable to handle that much POST ' .
|
|
|
|
'data (%s bytes) due to its current configuration.');
|
|
|
|
|
|
|
|
$this->showForm(sprintf($msg, $_SERVER['CONTENT_LENGTH']));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-14 18:03:50 +09:00
|
|
|
// CSRF protection
|
|
|
|
$token = $this->trimmed('token');
|
|
|
|
if (!$token || $token != common_session_token()) {
|
|
|
|
$this->showForm(_('There was a problem with your session token. '.
|
|
|
|
'Try again, please.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->arg('save')) {
|
|
|
|
$this->saveDesign();
|
2009-06-30 06:52:38 +09:00
|
|
|
} else if ($this->arg('defaults')) {
|
|
|
|
$this->restoreDefaults();
|
2009-06-14 18:03:50 +09:00
|
|
|
} else {
|
|
|
|
$this->showForm(_('Unexpected form submission.'));
|
|
|
|
}
|
2009-04-13 05:30:14 +09:00
|
|
|
}
|
2009-04-13 14:39:23 +09:00
|
|
|
|
|
|
|
/**
|
2009-05-19 05:10:46 +09:00
|
|
|
* Add the Farbtastic stylesheet
|
2009-04-13 14:39:23 +09:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function showStylesheets()
|
|
|
|
{
|
|
|
|
parent::showStylesheets();
|
|
|
|
$farbtasticStyle =
|
2009-04-15 08:32:09 +09:00
|
|
|
common_path('theme/base/css/farbtastic.css?version='.LACONICA_VERSION);
|
2009-04-13 14:39:23 +09:00
|
|
|
|
|
|
|
$this->element('link', array('rel' => 'stylesheet',
|
|
|
|
'type' => 'text/css',
|
|
|
|
'href' => $farbtasticStyle,
|
|
|
|
'media' => 'screen, projection, tv'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-05-19 05:10:46 +09:00
|
|
|
* Add the Farbtastic scripts
|
2009-04-13 14:39:23 +09:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function showScripts()
|
|
|
|
{
|
|
|
|
parent::showScripts();
|
|
|
|
|
2009-05-19 05:10:46 +09:00
|
|
|
$farbtasticPack = common_path('js/farbtastic/farbtastic.js');
|
2009-06-17 15:23:57 +09:00
|
|
|
$userDesignGo = common_path('js/userdesign.go.js');
|
2009-04-13 14:39:23 +09:00
|
|
|
|
2009-05-19 05:10:46 +09:00
|
|
|
$this->element('script', array('type' => 'text/javascript',
|
|
|
|
'src' => $farbtasticPack));
|
|
|
|
$this->element('script', array('type' => 'text/javascript',
|
2009-06-17 15:23:57 +09:00
|
|
|
'src' => $userDesignGo));
|
2009-04-13 14:39:23 +09:00
|
|
|
}
|
2009-06-16 12:21:33 +09:00
|
|
|
|
2009-06-14 18:03:50 +09:00
|
|
|
/**
|
2009-06-30 07:37:13 +09:00
|
|
|
* Get a default design
|
2009-06-14 18:03:50 +09:00
|
|
|
*
|
2009-06-16 12:21:33 +09:00
|
|
|
* @return Design design
|
2009-06-14 18:03:50 +09:00
|
|
|
*/
|
2009-06-16 12:21:33 +09:00
|
|
|
|
2009-06-14 18:03:50 +09:00
|
|
|
function defaultDesign()
|
|
|
|
{
|
|
|
|
$defaults = common_config('site', 'design');
|
|
|
|
|
|
|
|
$design = new Design();
|
2009-06-16 12:21:33 +09:00
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
$color = new WebColor();
|
|
|
|
|
|
|
|
$color->parseColor($defaults['backgroundcolor']);
|
|
|
|
$design->backgroundcolor = $color->intValue();
|
|
|
|
|
|
|
|
$color->parseColor($defaults['contentcolor']);
|
|
|
|
$design->contentcolor = $color->intValue();
|
|
|
|
|
|
|
|
$color->parseColor($defaults['sidebarcolor']);
|
|
|
|
$design->sidebarcolor = $color->intValue();
|
|
|
|
|
|
|
|
$color->parseColor($defaults['textcolor']);
|
2009-06-17 18:58:35 +09:00
|
|
|
$design->textcolor = $color->intValue();
|
2009-06-16 12:21:33 +09:00
|
|
|
|
|
|
|
$color->parseColor($defaults['linkcolor']);
|
|
|
|
$design->linkcolor = $color->intValue();
|
|
|
|
|
|
|
|
$design->backgroundimage = $defaults['backgroundimage'];
|
|
|
|
|
2009-06-17 18:58:35 +09:00
|
|
|
$design->disposition = $defaults['disposition'];
|
2009-06-17 14:18:25 +09:00
|
|
|
|
2009-06-16 12:21:33 +09:00
|
|
|
} catch (WebColorException $e) {
|
|
|
|
common_log(LOG_ERR, _('Bad default color settings: ' .
|
|
|
|
$e->getMessage()));
|
|
|
|
}
|
2009-06-14 18:03:50 +09:00
|
|
|
|
|
|
|
return $design;
|
|
|
|
}
|
|
|
|
|
2009-06-30 06:52:38 +09:00
|
|
|
/**
|
|
|
|
* Save the background image, if any, and set its disposition
|
|
|
|
*
|
2009-06-30 08:55:42 +09:00
|
|
|
* @param Design $design a working design to attach the img to
|
|
|
|
*
|
2009-06-30 06:52:38 +09:00
|
|
|
* @return nothing
|
|
|
|
*/
|
|
|
|
|
2009-06-30 08:55:42 +09:00
|
|
|
function saveBackgroundImage($design)
|
|
|
|
{
|
2009-06-16 12:21:33 +09:00
|
|
|
|
2009-06-17 11:17:37 +09:00
|
|
|
// Now that we have a Design ID we can add a file to the design.
|
|
|
|
// XXX: This is an additional DB hit, but figured having the image
|
|
|
|
// associated with the Design rather than the User was worth
|
|
|
|
// it. -- Zach
|
|
|
|
|
|
|
|
if ($_FILES['design_background-image_file']['error'] ==
|
|
|
|
UPLOAD_ERR_OK) {
|
|
|
|
|
|
|
|
$filepath = null;
|
|
|
|
|
|
|
|
try {
|
2009-06-30 08:55:42 +09:00
|
|
|
$imagefile =
|
|
|
|
ImageFile::fromUpload('design_background-image_file');
|
|
|
|
} catch (Exception $e) {
|
|
|
|
$this->showForm($e->getMessage());
|
|
|
|
return;
|
|
|
|
}
|
2009-06-17 11:17:37 +09:00
|
|
|
|
|
|
|
$filename = Design::filename($design->id,
|
|
|
|
image_type_to_extension($imagefile->type),
|
|
|
|
common_timestamp());
|
|
|
|
|
|
|
|
$filepath = Design::path($filename);
|
|
|
|
|
|
|
|
move_uploaded_file($imagefile->filepath, $filepath);
|
|
|
|
|
2009-06-30 08:55:42 +09:00
|
|
|
// delete any old backround img laying around
|
|
|
|
|
|
|
|
if (isset($design->backgroundimage)) {
|
|
|
|
@unlink(Design::path($design->backgroundimage));
|
|
|
|
}
|
|
|
|
|
2009-06-17 11:17:37 +09:00
|
|
|
$original = clone($design);
|
2009-06-30 08:55:42 +09:00
|
|
|
|
2009-06-17 11:17:37 +09:00
|
|
|
$design->backgroundimage = $filename;
|
2009-06-24 16:43:48 +09:00
|
|
|
|
|
|
|
// default to on, no tile
|
|
|
|
|
2009-06-17 19:02:43 +09:00
|
|
|
$design->setDisposition(true, false, false);
|
2009-06-24 16:43:48 +09:00
|
|
|
|
2009-06-17 11:17:37 +09:00
|
|
|
$result = $design->update($original);
|
|
|
|
|
|
|
|
if ($result === false) {
|
|
|
|
common_log_db_error($design, 'UPDATE', __FILE__);
|
|
|
|
$this->showForm(_('Couldn\'t update your design.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2009-06-14 18:03:50 +09:00
|
|
|
}
|
|
|
|
|
2009-06-30 06:52:38 +09:00
|
|
|
/**
|
|
|
|
* Restore the user or group design to system defaults
|
|
|
|
*
|
|
|
|
* @return nothing
|
|
|
|
*/
|
|
|
|
|
|
|
|
function restoreDefaults()
|
|
|
|
{
|
|
|
|
$design = $this->getWorkingDesign();
|
|
|
|
$default = $this->defaultDesign();
|
|
|
|
$original = clone($design);
|
|
|
|
|
|
|
|
$design->backgroundcolor = $default->backgroundcolor;
|
|
|
|
$design->contentcolor = $default->contentcolor;
|
|
|
|
$design->sidebarcolor = $default->sidebarcolor;
|
|
|
|
$design->textcolor = $default->textcolor;
|
|
|
|
$design->linkcolor = $default->linkcolor;
|
|
|
|
|
|
|
|
$design->setDisposition(false, true, false);
|
|
|
|
|
|
|
|
$result = $design->update($original);
|
|
|
|
|
|
|
|
if ($result === false) {
|
|
|
|
common_log_db_error($design, 'UPDATE', __FILE__);
|
|
|
|
$this->showForm(_('Couldn\'t update your design.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->showForm(_('Design defaults restored.'), true);
|
|
|
|
}
|
|
|
|
|
2009-04-13 05:30:14 +09:00
|
|
|
}
|