]> git.mxchange.org Git - friendica-addons.git/commitdiff
startpage addon
authorfriendica <info@friendica.com>
Wed, 23 May 2012 01:05:39 +0000 (18:05 -0700)
committerfriendica <info@friendica.com>
Wed, 23 May 2012 01:05:39 +0000 (18:05 -0700)
startpage.tgz [new file with mode: 0644]
startpage/startpage.css [new file with mode: 0644]
startpage/startpage.php [new file with mode: 0644]

diff --git a/startpage.tgz b/startpage.tgz
new file mode 100644 (file)
index 0000000..67a4ebd
Binary files /dev/null and b/startpage.tgz differ
diff --git a/startpage/startpage.css b/startpage/startpage.css
new file mode 100644 (file)
index 0000000..e78be7e
--- /dev/null
@@ -0,0 +1,16 @@
+
+
+
+#startpage-page-label {
+       float: left;
+       width: 200px;
+       margin-bottom: 25px;
+}
+
+#startpage-page {
+       float: left;
+}
+
+#startpage-desc {
+       margin-bottom: 10px;
+}
diff --git a/startpage/startpage.php b/startpage/startpage.php
new file mode 100644 (file)
index 0000000..8598829
--- /dev/null
@@ -0,0 +1,94 @@
+<?php
+/**
+ * Name: Start Page
+ * Description: Set a preferred page to load on login from home page
+ * Version: 1.0
+ * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
+ * 
+ */
+
+
+function startpage_install() {
+       register_hook('home_init', 'addon/startpage/startpage.php', 'startpage_home_init');
+       register_hook('plugin_settings', 'addon/startpage/startpage.php', 'startpage_settings');
+       register_hook('plugin_settings_post', 'addon/startpage/startpage.php', 'startpage_settings_post');
+}
+
+
+function startpage_uninstall() {
+       unregister_hook('home_init', 'addon/startpage/startpage.php', 'startpage_home_init');
+       unregister_hook('plugin_settings', 'addon/startpage/startpage.php', 'startpage_settings');
+       unregister_hook('plugin_settings_post', 'addon/startpage/startpage.php', 'startpage_settings_post');
+}
+
+
+
+function startpage_home_init($a, $b) {
+       if(! local_user())
+               return;
+
+       $page = get_pconfig(local_user(),'startpage','startpage');
+       if(strlen($page)) {
+               $slash = ((strpos($page,'/') === 0) ? true : false);
+               if(stristr($page,'://'))
+                       goaway($page);
+               goaway($a->get_baseurl() . (($slash) ? '' : '/') . $page);
+       }
+       return;
+}
+
+/**
+ *
+ * Callback from the settings post function.
+ * $post contains the $_POST array.
+ * We will make sure we've got a valid user account
+ * and if so set our configuration setting for this person.
+ *
+ */
+
+function startpage_settings_post($a,$post) {
+       if(! local_user())
+               return;
+       if($_POST['startpage-submit'])
+               set_pconfig(local_user(),'startpage','startpage',strip_tags(trim($_POST['startpage'])));
+}
+
+
+/**
+ *
+ * Called from the Plugin Setting form. 
+ * Add our own settings info to the page.
+ *
+ */
+
+
+
+function startpage_settings(&$a,&$s) {
+
+       if(! local_user())
+               return;
+
+       /* Add our stylesheet to the page so we can make our settings look nice */
+
+       $a->page['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . $a->get_baseurl() . '/addon/startpage/startpage.css' . '" media="all" />' . "\r\n";
+
+       /* Get the current state of our config variable */
+
+       $page = get_pconfig(local_user(),'startpage','startpage');
+
+
+       /* Add some HTML to the existing form */
+
+       $s .= '<div class="settings-block">';
+       $s .= '<h3>' . t('Startpage Settings') . '</h3>';
+       $s .= '<div id="startpage-page-wrapper">';
+       $s .= '<label id="startpage-page-label" for="startpage-page">' . t('Home page to load after login  - leave blank for profile wall') . '</label>';
+       $s .= '<input id="startpage-page" type="text" name="startpage" value="' . $page . '" />';
+       $s .= '</div><div class="clear"></div>';
+       $s .= '<div id="startpage-desc">' . t('Examples: &quot;network&quot; or &quot;notifications/system&quot;') . '</div>';
+
+       /* provide a submit button */
+
+       $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="startpage-submit" class="settings-submit" value="' . t('Submit') . '" /></div></div>';
+
+}