123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class OldschoolsettingsAction extends SettingsAction
- {
-
- function title()
- {
-
- return _('Old school UI settings');
- }
-
- function getInstructions()
- {
-
- return _('If you like it "the old way", you can set that here.');
- }
-
- protected function doPreparation()
- {
- if (!common_config('oldschool', 'enabled')) {
- throw new ClientException("Old-school settings not enabled.");
- }
- }
- function doPost()
- {
- $osp = Old_school_prefs::getKV('user_id', $this->scoped->getID());
- $orig = null;
- if (!empty($osp)) {
- $orig = clone($osp);
- } else {
- $osp = new Old_school_prefs();
- $osp->user_id = $this->scoped->getID();
- $osp->created = common_sql_now();
- }
- $osp->stream_mode_only = $this->boolean('stream_mode_only');
- $osp->stream_nicknames = $this->boolean('stream_nicknames');
- $osp->modified = common_sql_now();
- if ($orig instanceof Old_school_prefs) {
- $osp->update($orig);
- } else {
- $osp->insert();
- }
-
- return _('Settings saved.');
- }
- }
- class OldSchoolSettingsForm extends Form
- {
- var $user;
- function __construct(Action $out)
- {
- parent::__construct($out);
- $this->user = $out->getScoped()->getUser();
- }
-
- function formData()
- {
- $this->elementStart('fieldset');
- $this->elementStart('ul', 'form_data');
- $this->elementStart('li');
- $this->checkbox('stream_mode_only', _('Only stream mode (no conversations) in timelines'),
- $this->user->streamModeOnly());
- $this->elementEnd('li');
- $this->elementStart('li');
- $this->checkbox('stream_nicknames', _('Show nicknames (not full names) in timelines'),
- $this->user->streamNicknames());
- $this->elementEnd('li');
- $this->elementEnd('fieldset');
- $this->elementEnd('ul');
- }
-
- function formActions()
- {
- $this->submit('submit', _('Save'));
- }
-
- function id()
- {
- return 'form_oldschool';
- }
-
- function action()
- {
- return common_local_url('oldschoolsettings');
- }
-
- function formClass()
- {
- return 'form_settings';
- }
- }
|