aboutsummaryrefslogtreecommitdiff
path: root/start.php
diff options
context:
space:
mode:
Diffstat (limited to 'start.php')
-rw-r--r--start.php44
1 files changed, 44 insertions, 0 deletions
diff --git a/start.php b/start.php
new file mode 100644
index 000000000..66cdbbf9b
--- /dev/null
+++ b/start.php
@@ -0,0 +1,44 @@
+<?php
+/**
+ * Elgg Infinite Scroll
+ *
+ * @package ElggInfiniteScroll
+ */
+
+elgg_register_event_handler('init', 'system', 'infinite_scroll_init');
+
+/**
+ * Initialize the infinite scroll plugin.
+ *
+ */
+function infinite_scroll_init() {
+
+ if (elgg_get_plugin_user_setting('pagination_type') != 'classic') {
+
+ elgg_register_ajax_view('infinite_scroll/list');
+
+ // Extend the main css view
+ elgg_extend_view('css/elgg', 'infinite_scroll/css');
+
+ // register the infinite scroll's JavaScript
+ $infinite_scroll_js = elgg_get_simplecache_url('js', 'infinite_scroll/infinite_scroll');
+ elgg_register_simplecache_view('js/infinite_scroll/infinite_scroll');
+ elgg_register_js('elgg.infinite_scroll', $infinite_scroll_js);
+
+ if (elgg_get_plugin_user_setting('pagination_type') == 'automatic') {
+ // Register javascript needed for automatic pagination
+ $js_url = 'mod/infinite_scroll/vendors/jquery-waypoints/waypoints.min.js';
+ elgg_register_js('jquery-waypoints', $js_url);
+
+ $automatic_pagination_js = elgg_get_simplecache_url('js', 'infinite_scroll/automatic_pagination');
+ elgg_register_simplecache_view('js/infinite_scroll/automatic_pagination');
+ elgg_register_js('elgg.infinite_scroll.automatic_pagination', $automatic_pagination_js);
+ }
+
+ $new_items_js = elgg_get_simplecache_url('js', 'infinite_scroll/new_items');
+ elgg_register_simplecache_view('js/infinite_scroll/new_items');
+ elgg_register_js('elgg.infinite_scroll.new_items', $new_items_js);
+
+ elgg_extend_view('navigation/pagination', 'infinite_scroll/initialize_js');
+ }
+}