]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/Awesomeness/AwesomenessPlugin.php
initialize schema_version table after install
[quix0rs-gnu-social.git] / plugins / Awesomeness / AwesomenessPlugin.php
index 294f094389d6a5bfd861b6b01a5913e3a970a53f..edcbe6660f6c84d2a685299be93f1b7ca390ac08 100644 (file)
@@ -2,7 +2,7 @@
 /**
  * StatusNet, the distributed open-source microblogging tool
  *
- * Plugin to add adittional awesomenss to StatusNet
+ * Plugin to add additional awesomenss to StatusNet
  *
  * PHP version 5
  *
@@ -42,9 +42,8 @@ if (!defined('STATUSNET')) {
 
 class AwesomenessPlugin extends Plugin
 {
-       
-       const VERSION = '0.0.42';
-       
+    const VERSION = '0.0.42';
+
     public function onPluginVersion(&$versions)
     {
         $versions[] = array(
@@ -52,14 +51,15 @@ class AwesomenessPlugin extends Plugin
             'version' => self::VERSION,
             'author' => 'Jeroen De Dauw',
             'homepage' => 'http://status.net/wiki/Plugin:Awesomeness',
+            // TRANS: Plugin description for a sample plugin.
             'rawdescription' => _m(
-                'The Awesomeness plugin adds adittional awesomeness ' .
-                'to your StatusNet install. '
+                'The Awesomeness plugin adds additional awesomeness ' .
+                'to a StatusNet installation.'
             )
         );
         return true;
     }
-    
+
     /**
      * Add the conrnify button
      *
@@ -67,34 +67,33 @@ class AwesomenessPlugin extends Plugin
      *
      * @return void
      */
-
     function onEndShowSections(Action $action)
-    {   
+    {
         $action->elementStart('div', array('id' => 'cornify_section',
-                                         'class' => 'section'));       
-       
-       $action->raw(
-       <<<EOT
-               <a href="http://www.cornify.com" onclick="cornify_add();return false;">
-               <img src="http://www.cornify.com/assets/cornify.gif" width="61" height="16" border="0" alt="Cornify" />
-               </a>
-       <script type="text/javascript">(function() {
-       var js = document.createElement('script');
-       js.type = 'text/javascript';
-       js.async = true;
-       js.src = 'http://www.cornify.com/js/cornify.js';
-       (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(js);
+                                         'class' => 'section'));
+
+        $action->raw(
+        <<<EOT
+                <a href="http://www.cornify.com" onclick="cornify_add();return false;">
+                <img src="http://www.cornify.com/assets/cornify.gif" width="61" height="16" border="0" alt="Cornify" />
+                </a>
+        <script type="text/javascript">(function() {
+        var js = document.createElement('script');
+        js.type = 'text/javascript';
+        js.async = true;
+        js.src = 'http://www.cornify.com/js/cornify.js';
+        (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(js);
 })();</script>
 EOT
-       );    
-       
-       $action->elementEnd('div');
+        );
+
+        $action->elementEnd('div');
     }
-    
+
     /**
      * Hook for new-notice form processing to take our HTML goodies;
      * won't affect API posting etc.
-     * 
+     *
      * @param NewNoticeAction $action
      * @param User $user
      * @param string $content
@@ -103,8 +102,7 @@ EOT
      */
     function onStartSaveNewNoticeWeb($action, $user, &$content, &$options)
     {
-       $content = htmlspecialchars($content);
-       $options['rendered'] = preg_replace("/(^|\s|-)((?:awesome|awesomeness)[\?!\.\,]?)(\s|$)/i", " <b>$2</b> ", $content);
+        $content = htmlspecialchars($content);
+        $options['rendered'] = preg_replace("/(^|\s|-)((?:awesome|awesomeness)[\?!\.\,]?)(\s|$)/i", " <b>$2</b> ", $content);
     }
-       
-}
\ No newline at end of file
+}