. * * @category Widget * @package GNU Social * @author Max Shinn * @copyright 2011 Free Software Foundation, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 */ if (!defined('STATUSNET')) { exit(1); } require_once INSTALLDIR . '/lib/personalgroupnav.php'; require_once INSTALLDIR . '/classes/Profile.php'; require_once INSTALLDIR . '/lib/profilelist.php'; class BioAction extends Action { var $user = null; function prepare(array $args=array()) { parent::prepare($args); $args = $this->returnToArgs(); $this->profile = Profile::getKV('nickname', $args[1]['nickname']); //die(print_r($this->profile)); gnusocial_profile_merge($this->profile); return true; } function handle(array $args=array()) { parent::handle($args); $this->showPage(); } function title() { return sprintf(_m("%s's Bio."), $this->profile->nickname); } function showLocalNav() { $nav = new PersonalGroupNav($this); $nav->show(); } function showContent() { if(empty($this->profile)) { return; } $profilelistitem = new ProfileListItem($this->profile, $this); $profilelistitem->show(); $this->elementStart('ul'); $fields = GNUsocialProfileExtensionField::allFields(); foreach ($fields as $field) { $fieldname = $field->systemname; if (!empty($this->profile->$fieldname)) { $this->elementStart('li', array('class' => 'biolistitem')); $this->elementStart('div', array('class' => 'biolistitemcontainer')); if ($field->type == 'text') { $this->element('h3', array(), $field->title); $this->element('p', array('class' => 'biovalue'), $this->profile->$fieldname); } else { $this->element('span', array('class' => 'biotitle'), $field->title); $this->text(' '); $this->element('span', array('class' => 'biovalue'), $this->profile->$fieldname); } $this->elementEnd('div'); $this->elementEnd('li'); } } $this->elementEnd('ul'); } }