3 * StatusNet, the distributed open-source microblogging tool
5 * Sitemap administration panel
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.
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.
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/>.
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/
30 if (!defined('STATUSNET')) {
35 * Administer sitemap settings
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/
43 class SitemapadminpanelAction extends AdminPanelAction
46 * Returns the page title
48 * @return string page title
52 // TRANS: Title for sitemap.
57 * Instructions for using this form.
59 * @return string instructions
61 function getInstructions()
63 // TRANS: Instructions for sitemap.
64 return _m('Sitemap settings for this StatusNet site');
68 * Show the site admin panel form
74 $form = new SitemapAdminPanelForm($this);
80 * Save settings from the form
84 function saveSettings()
86 static $settings = array('sitemap' => array('googlekey', 'yahookey', 'bingkey'));
90 foreach ($settings as $section => $parts) {
91 foreach ($parts as $setting) {
92 $values[$section][$setting] = $this->trimmed($setting);
96 // This throws an exception on validation errors
97 $this->validate($values);
99 // assert(all values are valid);
101 $config = new Config();
103 $config->query('BEGIN');
105 foreach ($settings as $section => $parts) {
106 foreach ($parts as $setting) {
107 Config::save($section, $setting, $values[$section][$setting]);
111 $config->query('COMMIT');
116 function validate(&$values)
122 * Form for the sitemap admin panel
124 class SitemapAdminPanelForm extends AdminForm
129 * @return int ID of the form
133 return 'form_sitemap_admin_panel';
139 * @return string class of the form
143 return 'form_sitemap';
149 * @return string URL of the action
153 return common_local_url('sitemapadminpanel');
157 * Data elements of the form
163 $this->out->elementStart('ul', 'form_data');
165 $this->input('googlekey',
166 // TRANS: Field label.
168 // TRANS: Title for field label.
169 _m('Google Webmaster Tools verification key.'),
173 $this->input('yahookey',
174 // TRANS: Field label.
176 // TRANS: Title for field label.
177 _m('Yahoo! Site Explorer verification key.'),
181 $this->input('bingkey',
182 // TRANS: Field label.
184 // TRANS: Title for field label.
185 _m('Bing Webmaster Tools verification key.'),
188 $this->out->elementEnd('ul');
196 function formActions()
198 $this->out->submit('submit',
199 // TRANS: Submit button text to save sitemap settings.
203 // TRANS: Submit button title to save sitemap settings.
204 _m('Save sitemap settings.'));