| 
									
										
										
										
											2011-03-07 00:39:24 +05:30
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * StatusNet, the distributed open-source microblogging tool | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Form for editing a peopletag | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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  Form | 
					
						
							|  |  |  |  * @package   StatusNet | 
					
						
							|  |  |  |  * @author    Shashi Gowda <connect2shashi@gmail.com> | 
					
						
							|  |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							|  |  |  |  * @link      http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if (!defined('STATUSNET') && !defined('LACONICA')) { | 
					
						
							|  |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | require_once INSTALLDIR.'/lib/form.php'; | 
					
						
							|  |  |  | require_once INSTALLDIR.'/lib/togglepeopletag.php'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Form for editing a peopletag | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category Form | 
					
						
							|  |  |  |  * @package  StatusNet | 
					
						
							|  |  |  |  * @author   Shashi Gowda <connect2shashi@gmail.com> | 
					
						
							|  |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							|  |  |  |  * @link     http://status.net/ | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @see      GroupEditForm | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | class PeopletagEditForm extends Form | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * peopletag to edit | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     var $peopletag = null; | 
					
						
							|  |  |  |     var $tagger    = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Constructor | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Action     $out   output channel | 
					
						
							|  |  |  |      * @param User_group $group group to join | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function __construct($out=null, Profile_list $peopletag=null) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         parent::__construct($out); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->peopletag = $peopletag; | 
					
						
							|  |  |  |         $this->tagger    = Profile::staticGet('id', $peopletag->tagger); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * ID of the form | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return string ID of the form | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function id() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return 'form_peopletag_edit-' . $this->peopletag->id; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * class of the form | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return string of the form class | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function formClass() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return 'form_settings'; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Action of the form | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return string URL of the action | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function action() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return common_local_url('editpeopletag', | 
					
						
							|  |  |  |                 array('tagger' => $this->tagger->nickname, 'tag' => $this->peopletag->tag)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Name of the form | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function formLegend() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-04-10 19:59:55 +02:00
										 |  |  |         // TRANS: Form legend for people tag edit form.
 | 
					
						
							|  |  |  |         // TRANS: %s is a people tag.
 | 
					
						
							| 
									
										
										
										
											2011-04-13 13:45:25 +05:30
										 |  |  |         $this->out->element('legend', null, sprintf(_('Edit list %s'), $this->peopletag->tag)); | 
					
						
							| 
									
										
										
										
											2011-03-07 00:39:24 +05:30
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Data elements of the form | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function formData() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $id = $this->peopletag->id; | 
					
						
							|  |  |  |         $tag = $this->peopletag->tag; | 
					
						
							|  |  |  |         $description = $this->peopletag->description; | 
					
						
							|  |  |  |         $private = $this->peopletag->private; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->out->elementStart('ul', 'form_data'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->out->elementStart('li'); | 
					
						
							|  |  |  |         $this->out->hidden('id', $id); | 
					
						
							| 
									
										
										
										
											2011-04-10 19:59:55 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // TRANS: Field label for people tag.
 | 
					
						
							|  |  |  |         $this->out->input('tag', _m('LABEL','Tag'), | 
					
						
							| 
									
										
										
										
											2011-03-07 00:39:24 +05:30
										 |  |  |                           ($this->out->arg('tag')) ? $this->out->arg('tag') : $tag, | 
					
						
							| 
									
										
										
										
											2011-04-10 19:59:55 +02:00
										 |  |  |                           // TRANS: Field title for people tag.
 | 
					
						
							|  |  |  |                           _('Change the tag (letters, numbers, -, ., and _ are allowed).')); | 
					
						
							| 
									
										
										
										
											2011-03-07 00:39:24 +05:30
										 |  |  |         $this->out->elementEnd('li'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->out->elementStart('li'); | 
					
						
							|  |  |  |         $desclimit = Profile_list::maxDescription(); | 
					
						
							|  |  |  |         if ($desclimit == 0) { | 
					
						
							| 
									
										
										
										
											2011-04-10 19:59:55 +02:00
										 |  |  |             // TRANS: Field title for description of people tag.
 | 
					
						
							| 
									
										
										
										
											2011-04-13 13:45:25 +05:30
										 |  |  |             $descinstr = _('Describe the list or topic.'); | 
					
						
							| 
									
										
										
										
											2011-03-07 00:39:24 +05:30
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2011-04-10 19:59:55 +02:00
										 |  |  |             // TRANS: Field title for description of people tag.
 | 
					
						
							|  |  |  |             // TRANS: %d is the maximum number of characters for the description.
 | 
					
						
							| 
									
										
										
										
											2011-04-13 13:45:25 +05:30
										 |  |  |             $descinstr = sprintf(_m('Describe the list or topic in %d character.', | 
					
						
							|  |  |  |                                     'Describe the list or topic in %d characters.', | 
					
						
							| 
									
										
										
										
											2011-04-10 19:59:55 +02:00
										 |  |  |                                     $desclimit), | 
					
						
							|  |  |  |                                  $desclimit); | 
					
						
							| 
									
										
										
										
											2011-03-07 00:39:24 +05:30
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-04-10 19:59:55 +02:00
										 |  |  |         // TRANS: Field label for description of people tag.
 | 
					
						
							| 
									
										
										
										
											2011-03-07 00:39:24 +05:30
										 |  |  |         $this->out->textarea('description', _('Description'), | 
					
						
							|  |  |  |                              ($this->out->arg('description')) ? $this->out->arg('description') : $description, | 
					
						
							|  |  |  |                              $descinstr); | 
					
						
							| 
									
										
										
										
											2011-04-10 19:59:55 +02:00
										 |  |  |         // TRANS: Checkbox label to mark a people tag private.
 | 
					
						
							| 
									
										
										
										
											2011-03-07 00:39:24 +05:30
										 |  |  |         $this->out->checkbox('private', _('Private'), $private); | 
					
						
							|  |  |  |         $this->out->elementEnd('li'); | 
					
						
							|  |  |  |         $this->out->elementEnd('ul'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Action elements | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function formActions() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-04-10 19:59:55 +02:00
										 |  |  |         // TRANS: Button text to save a people tag.
 | 
					
						
							| 
									
										
										
										
											2011-03-07 00:39:24 +05:30
										 |  |  |         $this->out->submit('submit', _('Save')); | 
					
						
							|  |  |  |         $this->out->submit('form_action-yes', | 
					
						
							| 
									
										
										
										
											2011-04-10 19:59:55 +02:00
										 |  |  |                       // TRANS: Button text to delete a people tag.
 | 
					
						
							| 
									
										
										
										
											2011-03-07 00:39:24 +05:30
										 |  |  |                       _m('BUTTON','Delete'), | 
					
						
							|  |  |  |                       'submit', | 
					
						
							|  |  |  |                       'delete', | 
					
						
							| 
									
										
										
										
											2011-04-10 19:59:55 +02:00
										 |  |  |                       // TRANS: Button title to delete a people tag.
 | 
					
						
							| 
									
										
										
										
											2011-04-13 13:45:25 +05:30
										 |  |  |                       _('Delete this list.')); | 
					
						
							| 
									
										
										
										
											2011-03-07 00:39:24 +05:30
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function showProfileList() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $tagged = $this->peopletag->getTagged(); | 
					
						
							| 
									
										
										
										
											2011-04-10 19:59:55 +02:00
										 |  |  |         // TRANS: Header in people tag edit form.
 | 
					
						
							|  |  |  |         $this->out->element('h2', null, _('Add or remove people')); | 
					
						
							| 
									
										
										
										
											2011-03-07 00:39:24 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  |         $this->out->elementStart('div', 'profile_search_wrap'); | 
					
						
							| 
									
										
										
										
											2011-04-10 19:59:55 +02:00
										 |  |  |         // TRANS: Header in people tag edit form.
 | 
					
						
							|  |  |  |         $this->out->element('h3', null, _m('HEADER','Search')); | 
					
						
							| 
									
										
										
										
											2011-03-07 00:39:24 +05:30
										 |  |  |         $search = new SearchProfileForm($this->out, $this->peopletag); | 
					
						
							|  |  |  |         $search->show(); | 
					
						
							|  |  |  |         $this->out->element('ul', array('id' => 'profile_search_results', 'class' => 'empty')); | 
					
						
							|  |  |  |         $this->out->elementEnd('div'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->out->elementStart('ul', 'profile-lister'); | 
					
						
							|  |  |  |         while ($tagged->fetch()) { | 
					
						
							|  |  |  |             $this->out->elementStart('li', 'entity_removable_profile'); | 
					
						
							|  |  |  |             $this->showProfileItem($tagged); | 
					
						
							|  |  |  |             $this->out->elementStart('span', 'entity_actions'); | 
					
						
							|  |  |  |             $untag = new UntagButton($this->out, $tagged, $this->peopletag); | 
					
						
							|  |  |  |             $untag->show(); | 
					
						
							|  |  |  |             $this->out->elementEnd('span'); | 
					
						
							|  |  |  |             $this->out->elementEnd('li'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $this->out->elementEnd('ul'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function showProfileItem($profile) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $item = new TaggedProfileItem($this->out, $profile); | 
					
						
							|  |  |  |         $item->show(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |