]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Adsense/adsenseadminpanel.php
Merge branch '0.9.x'
[quix0rs-gnu-social.git] / plugins / Adsense / adsenseadminpanel.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Adsense administration panel
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Adsense
23  * @package   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @copyright 2010 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET')) {
31     exit(1);
32 }
33
34 /**
35  * Administer adsense settings
36  *
37  * @category Adsense
38  * @package  StatusNet
39  * @author   Evan Prodromou <evan@status.net>
40  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
41  * @link     http://status.net/
42  */
43 class AdsenseadminpanelAction extends AdminPanelAction
44 {
45     /**
46      * Returns the page title
47      *
48      * @return string page title
49      */
50     function title()
51     {
52         return _m('TITLE', 'AdSense');
53     }
54
55     /**
56      * Instructions for using this form.
57      *
58      * @return string instructions
59      */
60     function getInstructions()
61     {
62         return _m('AdSense settings for this StatusNet site');
63     }
64
65     /**
66      * Show the site admin panel form
67      *
68      * @return void
69      */
70     function showForm()
71     {
72         $form = new AdsenseAdminPanelForm($this);
73         $form->show();
74         return;
75     }
76
77     /**
78      * Save settings from the form
79      *
80      * @return void
81      */
82     function saveSettings()
83     {
84         static $settings = array('adsense' => array('adScript', 'client', 'mediumRectangle', 'rectangle', 'leaderboard', 'wideSkyscraper'));
85
86         $values = array();
87
88         foreach ($settings as $section => $parts) {
89             foreach ($parts as $setting) {
90                 $values[$section][$setting] = $this->trimmed($setting);
91             }
92         }
93
94         // This throws an exception on validation errors
95         $this->validate($values);
96
97         // assert(all values are valid);
98         $config = new Config();
99
100         $config->query('BEGIN');
101
102         foreach ($settings as $section => $parts) {
103             foreach ($parts as $setting) {
104                 Config::save($section, $setting, $values[$section][$setting]);
105             }
106         }
107
108         $config->query('COMMIT');
109
110         return;
111     }
112
113     function validate(&$values)
114     {
115     }
116 }
117
118 /**
119  * Form for the adsense admin panel
120  */
121 class AdsenseAdminPanelForm extends AdminForm
122 {
123     /**
124      * ID of the form
125      *
126      * @return int ID of the form
127      */
128     function id()
129     {
130         return 'form_adsense_admin_panel';
131     }
132
133     /**
134      * class of the form
135      *
136      * @return string class of the form
137      */
138     function formClass()
139     {
140         return 'form_adsense';
141     }
142
143     /**
144      * Action of the form
145      *
146      * @return string URL of the action
147      */
148     function action()
149     {
150         return common_local_url('adsenseadminpanel');
151     }
152
153     /**
154      * Data elements of the form
155      *
156      * @return void
157      */
158     function formData()
159     {
160         $this->out->elementStart('fieldset', array('id' => 'adsense_admin'));
161         $this->out->elementStart('ul', 'form_data');
162         $this->li();
163         $this->input('client',
164                      _m('Client ID'),
165                      _m('Google client ID'),
166                      'adsense');
167         $this->unli();
168         $this->li();
169         $this->input('adScript',
170                      _m('Ad script URL'),
171                      _m('Script URL (advanced)'),
172                      'adsense');
173         $this->unli();
174         $this->li();
175         $this->input('mediumRectangle',
176                      _m('Medium rectangle'),
177                      _m('Medium rectangle slot code'),
178                      'adsense');
179         $this->unli();
180         $this->li();
181         $this->input('rectangle',
182                      _m('Rectangle'),
183                      _m('Rectangle slot code'),
184                      'adsense');
185         $this->unli();
186         $this->li();
187         $this->input('leaderboard',
188                      _m('Leaderboard'),
189                      _m('Leaderboard slot code'),
190                      'adsense');
191         $this->unli();
192         $this->li();
193         $this->input('wideSkyscraper',
194                      _m('Skyscraper'),
195                      _m('Wide skyscraper slot code'),
196                      'adsense');
197         $this->unli();
198         $this->out->elementEnd('ul');
199     }
200
201     /**
202      * Action elements
203      *
204      * @return void
205      */
206     function formActions()
207     {
208         $this->out->submit('submit', _m('Save'), 'submit', null, _m('Save AdSense settings'));
209     }
210 }