]> git.mxchange.org Git - friendica-addons.git/commitdiff
"No Timeline" addon
authorfriendica <info@friendica.com>
Thu, 14 Jun 2012 03:46:11 +0000 (20:46 -0700)
committerfriendica <info@friendica.com>
Thu, 14 Jun 2012 03:46:11 +0000 (20:46 -0700)
notimeline.tgz [new file with mode: 0644]
notimeline/notimeline.css [new file with mode: 0644]
notimeline/notimeline.php [new file with mode: 0644]

diff --git a/notimeline.tgz b/notimeline.tgz
new file mode 100644 (file)
index 0000000..74babcc
Binary files /dev/null and b/notimeline.tgz differ
diff --git a/notimeline/notimeline.css b/notimeline/notimeline.css
new file mode 100644 (file)
index 0000000..5440337
--- /dev/null
@@ -0,0 +1,14 @@
+
+
+
+#notimeline-label {
+       float: left;
+       width: 200px;
+       margin-bottom: 25px;
+}
+
+#notimeline-checkbox {
+       float: left;
+}
+
+
diff --git a/notimeline/notimeline.php b/notimeline/notimeline.php
new file mode 100644 (file)
index 0000000..7e26bf9
--- /dev/null
@@ -0,0 +1,66 @@
+<?php
+/**
+ * Name: Notimeline
+ * Description: Disable "Archives" widget on profile page
+ * Version: 1.0
+ * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
+ * 
+ *
+ */
+
+
+function notimeline_install() {
+
+       register_hook('plugin_settings', 'addon/notimeline/notimeline.php', 'notimeline_settings');
+       register_hook('plugin_settings_post', 'addon/notimeline/notimeline.php', 'notimeline_settings_post');
+
+}
+
+
+function notimeline_uninstall() {
+       unregister_hook('plugin_settings', 'addon/notimeline/notimeline.php', 'notimeline_settings');
+       unregister_hook('plugin_settings_post', 'addon/notimeline/notimeline.php', 'notimeline_settings_post');
+
+}
+
+
+function notimeline_settings_post($a,$post) {
+       if(! local_user() || (! x($_POST,'notimeline-submit')))
+               return;
+
+       set_pconfig(local_user(),'system','no_wall_archive_widget',intval($_POST['notimeline']));
+       info( t('No Timeline settings updated.') . EOL);
+}
+
+function notimeline_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/notimeline/notimeline.css' . '" media="all" />' . "\r\n";
+
+       /* Get the current state of our config variable */
+
+       $notimeline = get_pconfig(local_user(),'system','no_wall_archive_widget');
+       if($notimeline === false)
+               $notimeline = false;
+
+       $notimeline_checked = (($notimeline) ? ' checked="checked" ' : '');
+
+       
+       /* Add some HTML to the existing form */
+
+       $s .= '<div class="settings-block">';
+       $s .= '<h3>' . t('No Timeline Settings') . '</h3>';
+       $s .= '<div id="notimeline-wrapper">';
+       $s .= '<label id="notimeline-label" for="notimeline-checkbox">' . t('Disable Archive selector on profile wall') . '</label>';
+       $s .= '<input id="notimeline-checkbox" type="checkbox" name="notimeline" value="1" ' . $notimeline_checked . '/>';
+       $s .= '</div><div class="clear"></div>';
+
+       /* provide a submit button */
+
+       $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="notimeline-submit" class="settings-submit" value="' . t('Submit') . '" /></div></div>';
+
+}