]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/ModPlus/ModPlusPlugin.php
Merged
[quix0rs-gnu-social.git] / plugins / ModPlus / ModPlusPlugin.php
index 485b821813e4577c169a397d2c958295677affc8..f0ef808eb55da4ecc68b32069b4fa316e2c3b39e 100644 (file)
@@ -17,9 +17,7 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-if (!defined('STATUSNET')) {
-    exit(1);
-}
+if (!defined('GNUSOCIAL')) { exit(1); }
 
 /**
  * Some UI extras for now...
@@ -29,15 +27,75 @@ if (!defined('STATUSNET')) {
  */
 class ModPlusPlugin extends Plugin
 {
-    function onPluginVersion(&$versions)
+    function onPluginVersion(array &$versions)
     {
         $versions[] = array('name' => 'ModPlus',
-                            'version' => STATUSNET_VERSION,
+                            'version' => GNUSOCIAL_VERSION,
                             'author' => 'Brion Vibber',
                             'homepage' => 'http://status.net/wiki/Plugin:ModPlus',
                             'rawdescription' =>
-                            _m('UI extensions for profile moderation actions.'));
+                            // TRANS: Plugin description.
+                            _m('UI extension for profile moderation actions.'));
+
+        return true;
+    }
+
+    /**
+     * Load JS at runtime.
+     *
+     * @param Action $action
+     * @return boolean hook result
+     */
+    function onEndShowScripts(Action $action)
+    {
+        $action->script($this->path('js/modplus.js'));
+        return true;
+    }
 
+    public function onEndShowStylesheets(Action $action) {
+        $action->cssLink($this->path('css/modplus.css'));
         return true;
     }
+
+    /**
+     * Add per-profile info popup menu for author on notice lists.
+     *
+     * @param NoticeListItem $item
+     * @return boolean hook value
+     */
+    function onEndShowNoticeItemAuthor(Profile $profile, HTMLOutputter $out)
+    {
+        $this->showProfileOptions($out, $profile);
+        return true;
+    }
+
+    /**
+     * Add per-profile info popup menu on profile lists.
+     *
+     * @param ProfileListItem $item
+     */
+    function onStartProfileListItemProfile(ProfileListItem $item)
+    {
+        $this->showProfileOptions($item->out, $item->profile->getProfile());
+        return true;
+    }
+
+    /**
+     * Build common remote-profile options structure.
+     * Currently only adds output for remote profiles, nothing for local users.
+     *
+     * @param HTMLOutputter $out
+     * @param Profile $profile
+     */
+    protected function showProfileOptions(HTMLOutputter $out, Profile $profile)
+    {
+        if (!$profile->isGroup() && !$profile->isLocal()) {
+            $target = common_local_url('userbyid', array('id' => $profile->getID()));
+            // TRANS: Label for access to remote profile options.
+            $label = _m('Remote profile options...');
+            $out->elementStart('div', 'remote-profile-options');
+            $out->element('a', array('href' => $target), $label);
+            $out->elementEnd('div');
+        }
+    }
 }