aboutsummaryrefslogtreecommitdiff
path: root/mod/river_privacy/start.php
diff options
context:
space:
mode:
authorSem <sembrestels@riseup.net>2013-11-09 16:20:05 +0100
committerSem <sembrestels@riseup.net>2013-11-09 16:20:05 +0100
commitea0462952ecf6f8aab30a26bd889a30691f15c98 (patch)
tree46786e9a752f00a0ebd8b2b5c420e55de61e040b /mod/river_privacy/start.php
parentd44f0965e80edd003dca4c85f5bdbc462affbe8a (diff)
parent76a4e971f2d7286041aaba7b6ee7f7383bfc3272 (diff)
downloadelgg-ea0462952ecf6f8aab30a26bd889a30691f15c98.tar.gz
elgg-ea0462952ecf6f8aab30a26bd889a30691f15c98.tar.bz2
Add 'mod/river_privacy/' from commit '76a4e971f2d7286041aaba7b6ee7f7383bfc3272'
git-subtree-dir: mod/river_privacy git-subtree-mainline: d44f0965e80edd003dca4c85f5bdbc462affbe8a git-subtree-split: 76a4e971f2d7286041aaba7b6ee7f7383bfc3272
Diffstat (limited to 'mod/river_privacy/start.php')
-rw-r--r--mod/river_privacy/start.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/mod/river_privacy/start.php b/mod/river_privacy/start.php
new file mode 100644
index 000000000..b836ded52
--- /dev/null
+++ b/mod/river_privacy/start.php
@@ -0,0 +1,30 @@
+<?php
+
+/**
+ * River Privacy
+ * Makes non-object oriented river entries private
+ * eg. friendships
+ */
+
+function river_privacy_init(){
+ if(elgg_get_plugin_setting('hide_old_items', 'river_privacy') != 'no'){
+ elgg_set_view_location('page/components/list', elgg_get_plugins_path() . 'river_privacy/views_override/');
+ }
+
+ // set the river item to private if it's not an object
+ elgg_register_plugin_hook_handler('creating', 'river', 'river_privacy_creating_river');
+}
+
+
+//
+// hook called before river creation
+// return associative array of parameters to create the river entry
+function river_privacy_creating_river($hook, $type, $returnvalue, $params){
+ if($returnvalue['type'] != 'object'){
+ $returnvalue['access_id'] = ACCESS_PRIVATE;
+ }
+
+ return $returnvalue;
+}
+
+elgg_register_event_handler('init', 'system', 'river_privacy_init'); \ No newline at end of file