blob: c1d07d2ce260430e1072f077edffd61b28c3b42c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php
/**
* Add a new field to the set of custom profile fields
*/
$label_text = elgg_echo('profile:label');
$type_text = elgg_echo('profile:type');
$label_control = elgg_view('input/text', array('name' => 'label'));
$type_control = elgg_view('input/dropdown', array('name' => 'type', 'options_values' => array(
'text' => elgg_echo('text'),
'longtext' => elgg_echo('longtext'),
'tags' => elgg_echo('tags'),
'url' => elgg_echo('url'),
'email' => elgg_echo('email')
)));
$submit_control = elgg_view('input/submit', array('name' => elgg_echo('add'), 'value' => elgg_echo('add')));
$formbody = <<< END
<div class="elgg-foot">$label_text: $label_control
$type_text: $type_control
$submit_control</div>
END;
echo autop(elgg_echo('profile:explainchangefields'));
echo $formbody;
|