input form for profile stuff

This commit is contained in:
friendica
2013-07-04 20:35:42 -07:00
parent 08258da944
commit 8b9f2f8ef7
4 changed files with 108 additions and 13 deletions

View File

@@ -196,3 +196,13 @@ function obj_verbs() {
}
function obj_verb_selector() {
$verbs = obj_verbs();
$o .= '<select class="obj-verb-selector" name="verb" >';
foreach($verbs as $k => $v) {
$o .= '<option value="' . urlencode($k) . '">' . $v[0] . '</option>';
}
$o .= '</select>';
return $o;
}