X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fmicroappplugin.php;h=4da3bef935a7e60c7a6c6da3e00511df18f4c2f3;hb=33e2f5b449d477e55bda7029f9e826d889e41eb5;hp=11058ad1ac80300e7ebf3d26bdec8773de9b2fd0;hpb=9948523c33ea0d02681ff1e0cd4fcb839dc9df96;p=quix0rs-gnu-social.git diff --git a/lib/microappplugin.php b/lib/microappplugin.php index 11058ad1ac..4da3bef935 100644 --- a/lib/microappplugin.php +++ b/lib/microappplugin.php @@ -162,6 +162,14 @@ abstract class MicroAppPlugin extends Plugin */ abstract function deleteRelated($notice); + /** + * + */ + public function newFormAction() { + // such as 'newbookmark' or 'newevent' route + return 'new'.$this->tag(); + } + /** * Check if a given notice object should be handled by this micro-app * plugin. @@ -353,7 +361,7 @@ abstract class MicroAppPlugin extends Plugin $actor = $oprofile->checkAuthorship($activity); - if (empty($actor)) { + if (!$actor instanceof Ostatus_profile) { // TRANS: Client exception thrown when no author for an activity was found. throw new ClientException(_('Cannot get author for activity.')); } @@ -390,19 +398,19 @@ abstract class MicroAppPlugin extends Plugin if ($target instanceof User_group) { $uri = $target->getUri(); - if (!in_array($uri, $activity->context->attention)) { + if (!array_key_exists($uri, $activity->context->attention)) { // @todo FIXME: please document (i18n). // TRANS: Client exception thrown when ... - throw new ClientException(_('Bookmark not posted to this group.')); + throw new ClientException(_('Object not posted to this group.')); } } else if ($target instanceof User) { $uri = $target->uri; $original = null; if (!empty($activity->context->replyToID)) { - $original = Notice::staticGet('uri', + $original = Notice::getKV('uri', $activity->context->replyToID); } - if (!in_array($uri, $activity->context->attention) && + if (!array_key_exists($uri, $activity->context->attention) && (empty($original) || $original->profile_id != $target->id)) { // @todo FIXME: Please document (i18n). @@ -536,7 +544,9 @@ abstract class MicroAppPlugin extends Plugin function onStartShowEntryForms(&$tabs) { - $tabs[$this->tag()] = $this->appTitle(); + $tabs[$this->tag()] = array('title' => $this->appTitle(), + 'href' => common_local_url($this->newFormAction()), + ); return true; }