2011-02-03 09:23:24 +09:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2011, StatusNet, Inc.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('STATUSNET')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2011-03-09 12:20:43 +09:00
|
|
|
/**
|
|
|
|
* Class for outputting a widget to display or edit
|
|
|
|
* extended profiles
|
|
|
|
*/
|
|
|
|
class ExtendedProfileWidget extends Form
|
2011-02-03 09:23:24 +09:00
|
|
|
{
|
2011-03-09 12:20:43 +09:00
|
|
|
const EDITABLE = true;
|
2011-02-03 09:23:24 +09:00
|
|
|
|
2011-03-09 12:20:43 +09:00
|
|
|
/**
|
|
|
|
* The parent profile
|
|
|
|
*
|
|
|
|
* @var Profile
|
|
|
|
*/
|
2011-02-03 09:23:24 +09:00
|
|
|
protected $profile;
|
2011-03-09 12:20:43 +09:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The extended profile
|
|
|
|
*
|
|
|
|
* @var Extended_profile
|
|
|
|
*/
|
2011-02-03 09:23:24 +09:00
|
|
|
protected $ext;
|
|
|
|
|
2011-03-09 12:20:43 +09:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @param XMLOutputter $out
|
|
|
|
* @param Profile $profile
|
|
|
|
* @param boolean $editable
|
|
|
|
*/
|
2011-02-03 09:23:24 +09:00
|
|
|
public function __construct(XMLOutputter $out=null, Profile $profile=null, $editable=false)
|
|
|
|
{
|
|
|
|
parent::__construct($out);
|
|
|
|
|
|
|
|
$this->profile = $profile;
|
|
|
|
$this->ext = new ExtendedProfile($this->profile);
|
|
|
|
|
|
|
|
$this->editable = $editable;
|
|
|
|
}
|
|
|
|
|
2011-03-09 12:20:43 +09:00
|
|
|
/**
|
|
|
|
* Show the extended profile, or the edit form
|
|
|
|
*/
|
2011-02-03 09:23:24 +09:00
|
|
|
public function show()
|
2011-03-09 12:20:43 +09:00
|
|
|
{
|
|
|
|
if ($this->editable) {
|
|
|
|
parent::show();
|
|
|
|
} else {
|
|
|
|
$this->showSections();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show form data
|
|
|
|
*/
|
|
|
|
public function formData()
|
|
|
|
{
|
|
|
|
$this->showSections();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show each section of the extended profile
|
|
|
|
*/
|
|
|
|
public function showSections()
|
2011-02-03 09:23:24 +09:00
|
|
|
{
|
|
|
|
$sections = $this->ext->getSections();
|
|
|
|
foreach ($sections as $name => $section) {
|
|
|
|
$this->showExtendedProfileSection($name, $section);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-09 12:20:43 +09:00
|
|
|
/**
|
|
|
|
* Show an extended profile section
|
|
|
|
*
|
|
|
|
* @param string $name name of the section
|
|
|
|
* @param array $section array of fields for the section
|
|
|
|
*/
|
2011-02-03 09:23:24 +09:00
|
|
|
protected function showExtendedProfileSection($name, $section)
|
|
|
|
{
|
|
|
|
$this->out->element('h3', null, $section['label']);
|
|
|
|
$this->out->elementStart('table', array('class' => 'extended-profile'));
|
|
|
|
foreach ($section['fields'] as $fieldName => $field) {
|
|
|
|
$this->showExtendedProfileField($fieldName, $field);
|
|
|
|
}
|
|
|
|
$this->out->elementEnd('table');
|
|
|
|
}
|
|
|
|
|
2011-03-09 12:20:43 +09:00
|
|
|
/**
|
|
|
|
* Show an extended profile field
|
|
|
|
*
|
|
|
|
* @param string $name name of the field
|
|
|
|
* @param array $field set of key/value pairs for the field
|
|
|
|
*/
|
2011-02-03 09:23:24 +09:00
|
|
|
protected function showExtendedProfileField($name, $field)
|
|
|
|
{
|
|
|
|
$this->out->elementStart('tr');
|
|
|
|
|
|
|
|
$this->out->element('th', null, $field['label']);
|
|
|
|
|
|
|
|
$this->out->elementStart('td');
|
2011-02-03 09:38:01 +09:00
|
|
|
if ($this->editable) {
|
|
|
|
$this->showEditableField($name, $field);
|
|
|
|
} else {
|
|
|
|
$this->showFieldValue($name, $field);
|
|
|
|
}
|
2011-02-03 09:23:24 +09:00
|
|
|
$this->out->elementEnd('td');
|
|
|
|
|
|
|
|
$this->out->elementEnd('tr');
|
|
|
|
}
|
2011-02-03 09:38:01 +09:00
|
|
|
|
2011-03-09 12:20:43 +09:00
|
|
|
/**
|
|
|
|
* Outputs the value of a field
|
|
|
|
*
|
|
|
|
* @param string $name name of the field
|
|
|
|
* @param array $field set of key/value pairs for the field
|
|
|
|
*/
|
2011-02-03 09:38:01 +09:00
|
|
|
protected function showFieldValue($name, $field)
|
|
|
|
{
|
2011-03-09 12:20:43 +09:00
|
|
|
$type = strval(@$field['type']);
|
|
|
|
|
|
|
|
switch($type)
|
|
|
|
{
|
|
|
|
case '':
|
|
|
|
case 'text':
|
|
|
|
case 'textarea':
|
|
|
|
$this->out->text($this->ext->getTextValue($name));
|
|
|
|
break;
|
|
|
|
case 'tags':
|
|
|
|
$this->out->text($this->ext->getTags());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$this->out->text("TYPE: $type");
|
|
|
|
}
|
|
|
|
|
2011-02-03 09:38:01 +09:00
|
|
|
}
|
|
|
|
|
2011-03-09 12:20:43 +09:00
|
|
|
/**
|
|
|
|
* Show an editable version of the field
|
|
|
|
*
|
|
|
|
* @param string $name name fo the field
|
|
|
|
* @param array $field array of key/value pairs for the field
|
|
|
|
*/
|
2011-02-03 09:38:01 +09:00
|
|
|
protected function showEditableField($name, $field)
|
|
|
|
{
|
|
|
|
$out = $this->out;
|
2011-03-09 12:20:43 +09:00
|
|
|
|
2011-02-03 09:38:01 +09:00
|
|
|
$type = strval(@$field['type']);
|
|
|
|
$id = "extprofile-" . $name;
|
2011-03-09 12:20:43 +09:00
|
|
|
|
2011-02-03 09:38:01 +09:00
|
|
|
$value = 'placeholder';
|
|
|
|
|
|
|
|
switch ($type) {
|
2011-03-09 12:20:43 +09:00
|
|
|
case '':
|
|
|
|
case 'text':
|
|
|
|
$out->input($id, null, $this->ext->getTextValue($name));
|
|
|
|
break;
|
|
|
|
case 'textarea':
|
|
|
|
$out->textarea($id, null, $this->ext->getTextValue($name));
|
|
|
|
break;
|
|
|
|
case 'tags':
|
|
|
|
$out->input($id, null, $this->ext->getTags());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$out->input($id, null, "TYPE: $type");
|
2011-02-03 09:38:01 +09:00
|
|
|
}
|
|
|
|
}
|
2011-03-09 12:20:43 +09:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Action elements
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function formActions()
|
|
|
|
{
|
|
|
|
$this->out->submit(
|
|
|
|
'save',
|
|
|
|
_m('BUTTON','Save'),
|
|
|
|
'submit form_action-secondary',
|
|
|
|
'save',
|
|
|
|
_('Save details')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ID of the form
|
|
|
|
*
|
|
|
|
* @return string ID of the form
|
|
|
|
*/
|
|
|
|
|
|
|
|
function id()
|
|
|
|
{
|
|
|
|
return 'profile-details-' . $this->profile->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* class of the form
|
|
|
|
*
|
|
|
|
* @return string of the form class
|
|
|
|
*/
|
|
|
|
|
|
|
|
function formClass()
|
|
|
|
{
|
|
|
|
return 'form_profile_details';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Action of the form
|
|
|
|
*
|
|
|
|
* @return string URL of the action
|
|
|
|
*/
|
|
|
|
|
|
|
|
function action()
|
|
|
|
{
|
|
|
|
return common_local_url('profiledetailsettings');
|
|
|
|
}
|
2011-02-03 09:23:24 +09:00
|
|
|
}
|