mirror of https://github.com/friendica/friendica
parent
0d14d88ef4
commit
83dc89d859
@ -0,0 +1,56 @@
|
||||
<?php
|
||||
|
||||
|
||||
|
||||
function group_init(&$a) {
|
||||
require_once('include/group.php');
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
function group_post(&$a) {
|
||||
|
||||
if(! local_user()) {
|
||||
notice("Access denied." . EOL);
|
||||
return;
|
||||
}
|
||||
|
||||
if(($a->argc == 2) && ($a->argv[1] == 'new')) {
|
||||
$name = notags(trim($_POST['groupname']));
|
||||
$r = group_add($_SESSION['uid'],$name);
|
||||
if($r) {
|
||||
notice("Group created." . EOL );
|
||||
$r = group_byname($_SESSION['uid'],$name);
|
||||
if($r)
|
||||
goaway($a->get_baseurl() . '/group/' . $r);
|
||||
}
|
||||
else
|
||||
notice("Could not create group." . EOL );
|
||||
// goaway($a->get_baseurl() . '/group');
|
||||
return; // NOTREACHED
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
function group_content(&$a) {
|
||||
|
||||
if(! local_user()) {
|
||||
notice("Access denied." . EOL);
|
||||
return;
|
||||
}
|
||||
|
||||
if(($a->argc == 2) && ($a->argv[1] == 'new')) {
|
||||
$tpl = file_get_contents('view/group_new.tpl');
|
||||
$o .= replace_macros($tpl,array(
|
||||
|
||||
));
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
return $o;
|
||||
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
|
||||
|
||||
|
||||
<div id="group-new-wrapper" >
|
||||
<form action="group/new" method="post">
|
||||
|
||||
<div id="group-new-text">
|
||||
<p>
|
||||
Create a group of contacts/friends.
|
||||
|
||||
<div id="group-new-input-wrapper">
|
||||
<label id="group-new-label" for="group-new-name" >Group Name: </label>
|
||||
<input name="groupname" id="group-new-name" />
|
||||
</div>
|
||||
<div id="group-new-input-end" ></div>
|
||||
|
||||
<div id="group-new-submit-wrapper" >
|
||||
<input type="submit" name="submit" value="Submit" />
|
||||
</form>
|
||||
</div>
|
||||
<div id="group-new-end"></div>
|
||||
|
||||
|
Loading…
Reference in new issue