2010-12-31 22:36:51 +00:00
|
|
|
<?php
|
2019-08-08 15:08:23 +01:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social 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.
|
|
|
|
//
|
|
|
|
// GNU social 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 GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2010-12-31 22:36:51 +00:00
|
|
|
/**
|
2019-08-08 15:08:23 +01:00
|
|
|
* Allows administrators to define additional profile fields for the users of a GNU social installation.
|
2010-12-31 22:36:51 +00:00
|
|
|
*
|
|
|
|
* @category Widget
|
2019-08-08 15:08:23 +01:00
|
|
|
* @package GNU social
|
2010-12-31 22:36:51 +00:00
|
|
|
* @author Max Shinn <trombonechamp@gmail.com>
|
2019-08-08 15:08:23 +01:00
|
|
|
* @author Diogo Cordeiro <diogo@fc.up.pt>
|
|
|
|
* @copyright 2011-2019 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2010-12-31 22:36:51 +00:00
|
|
|
*/
|
|
|
|
|
2019-08-08 15:08:23 +01:00
|
|
|
defined('GNUSOCIAL') || die();
|
|
|
|
|
2010-12-31 22:36:51 +00:00
|
|
|
function gnusocial_profile_merge(&$profile)
|
|
|
|
{
|
|
|
|
$responses = GNUsocialProfileExtensionResponse::findResponsesByProfile($profile->id);
|
2019-08-08 15:08:23 +01:00
|
|
|
$profile->customfields = [];
|
2010-12-31 22:36:51 +00:00
|
|
|
foreach ($responses as $response) {
|
|
|
|
$title = $response->systemname;
|
|
|
|
$profile->$title = $response->value;
|
|
|
|
$profile->customfields[] = $title;
|
|
|
|
}
|
|
|
|
}
|
2019-08-08 15:08:23 +01:00
|
|
|
|
2011-01-01 22:06:14 +00:00
|
|
|
function gnusocial_field_systemname_validate($systemname)
|
|
|
|
{
|
2019-08-08 15:08:23 +01:00
|
|
|
// Ensure it doesn't exist already
|
2011-01-01 22:06:14 +00:00
|
|
|
$fields = GNUsocialProfileExtensionField::allFields();
|
2019-08-08 15:08:23 +01:00
|
|
|
foreach ($fields as $field) {
|
|
|
|
if ($field->systemname == $systemname) {
|
2011-01-01 22:06:14 +00:00
|
|
|
return false;
|
2019-08-08 15:08:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Ensure that it consist of only alphanumeric characters
|
|
|
|
return ctype_alnum($systemname);
|
|
|
|
}
|