aboutsummaryrefslogtreecommitdiff
path: root/mod/livestream/start.php
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-03-15 14:56:18 -0300
committerSilvio Rhatto <rhatto@riseup.net>2014-03-15 14:56:18 -0300
commita7be81c3f81c807d43ed32965ee7ac11ebe71895 (patch)
tree71751c05eb80ae6e348790f3e46652c9dfe0be7d /mod/livestream/start.php
parentf3beeb45f9f192aee6ede0c9b6f0fa8b8d82a9ef (diff)
parent059badecbc0be895c6165430e5096a9ab653027e (diff)
downloadelgg-a7be81c3f81c807d43ed32965ee7ac11ebe71895.tar.gz
elgg-a7be81c3f81c807d43ed32965ee7ac11ebe71895.tar.bz2
Merge commit '059badecbc0be895c6165430e5096a9ab653027e' as 'mod/livestream'
Diffstat (limited to 'mod/livestream/start.php')
-rwxr-xr-xmod/livestream/start.php95
1 files changed, 95 insertions, 0 deletions
diff --git a/mod/livestream/start.php b/mod/livestream/start.php
new file mode 100755
index 000000000..826c360d7
--- /dev/null
+++ b/mod/livestream/start.php
@@ -0,0 +1,95 @@
+<?php
+ /**
+ * Elgg livestream plugin
+ *
+ * @package LiveStream
+ */
+ require_once "{$CONFIG->pluginspath}livestream/libraries.php";
+
+
+ function livestream_init()
+ {
+ global $CONFIG;
+
+ // require libraries
+ require_once "{$CONFIG->pluginspath}livestream/libraries.php";
+
+ register_page_handler('livestream','livestream_page_handler');
+
+ //enable for groups
+ add_group_tool_option('groups',elgg_echo('livestream:enable'),true);
+
+ //put in group hp
+ elgg_extend_view('groups/right_column', 'livestream/groupprofile_livestream');
+
+
+ if (isloggedin())
+ {
+ add_menu(elgg_echo('livestream:livestream'), $CONFIG->wwwroot . "livestream/" . $page_owner->username);
+ }
+
+ register_elgg_event_handler('pagesetup','system','livestream_pagesetup');
+ //actions
+ register_action("livestream/new", false, $CONFIG->pluginspath . "livestream/actions/new.php");
+ register_action("livestream/delete", false, $CONFIG->pluginspath . "livestream/actions/delete.php");
+
+
+ }
+
+ function livestream_pagesetup(){
+ global $CONFIG;
+
+ //Link to group items if comes form group environment
+ $page_owner = page_owner_entity();
+
+ if ($page_owner instanceof ElggGroup && (get_context() == 'groups' || get_context() == 'group_profile')) {
+ add_submenu_item(elgg_echo("livestream:livestream"), $CONFIG->url ."livestream/". $page_owner->username );
+ }
+
+ //tools menu item
+ $logged_user = get_loggedin_user();
+ if($logged_user){
+ add_menu(elgg_echo('livestream:livestream'), $CONFIG->wwwroot . "livestream/" . $logged_user->username);
+ }
+ }
+
+ function livestream_page_handler($page)
+ {
+ global $_CONFIG;
+
+ if (isset($page[0]) && $page[0]) {
+ set_input('username',$page[0]);
+ }
+
+ if (isset($page[1]) && $page[1]) {
+ switch($page[1]){
+ case 'new':
+ include(dirname(__FILE__) . "/pages/livestream/new.php");
+ break;
+ case 'view':
+ set_input('username', $page[0]);
+ set_input('streamid', $page[2]);
+
+ include(dirname(__FILE__) . "/pages/livestream/view.php");
+ break;
+ case 'delete':
+ set_input('username', $page[0]);
+ set_input('streamid', $page[2]);
+
+ include(dirname(__FILE__) . "/pages/livestream/delete.php");
+ break;
+
+ default:
+ include(dirname(__FILE__) . "/pages/livestream/list.php");
+ break;
+ }
+ }else{
+ include(dirname(__FILE__) . "/pages/livestream/list.php");
+ }
+
+ return true;
+ }
+
+ register_elgg_event_handler('init','system','livestream_init');
+
+?>