Home
last modified time | relevance | path

Searched refs:authorName (Results 1 – 11 of 11) sorted by last modified time

/plugin/authgooglesheets/vendor/google/apiclient-services/src/PolyService/
H A DAsset.php26 public $authorName; variable in Google\\Service\\PolyService\\Asset
75 public function setAuthorName($authorName) argument
77 $this->authorName = $authorName;
84 return $this->authorName;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AndroidEnterprise/
H A DProduct.php30 public $authorName; variable in Google\\Service\\AndroidEnterprise\\Product
143 public function setAuthorName($authorName) argument
145 $this->authorName = $authorName;
152 return $this->authorName;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AndroidPublisher/
H A DReview.php26 public $authorName; variable in Google\\Service\\AndroidPublisher\\Review
37 public function setAuthorName($authorName) argument
39 $this->authorName = $authorName;
46 return $this->authorName;
/plugin/fksnewsfeed/inc/renderer/
H A DVyfukRenderer.php181 '"><span class="fa fa-envelope"></span>' . hsc($news->authorName) . '</a>
H A DFykosRenderer.php157 '"><span class="fa fa-envelope"></span>' . hsc($news->authorName) . '</a>' .
/plugin/fksnewsfeed/
H A Daction.php306 $input->val($data->authorName);
/plugin/fksnewsfeed/inc/ORM/
H A DModelNews.php15 public string $authorName; variable in FYKOS\\dokuwiki\\Extension\\PluginNewsFeed\\Model\\ModelNews
116 $model->authorName = $data['author_name'];
129 $this->authorName = $INFO['userinfo']['name'];
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/
H A DAuthor.php26 private $authorName = ''; variable in phpDocumentor\\Reflection\\DocBlock\\Tags\\Author
34 * @param string $authorName
37 public function __construct($authorName, $authorEmail) argument
39 Assert::string($authorName);
45 $this->authorName = $authorName;
56 return $this->authorName;
76 … return $this->authorName . (strlen($this->authorEmail) ? ' <' . $this->authorEmail . '>' : '');
95 $authorName = trim($matches[1]);
98 return new static($authorName, $email);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/
H A DIndexedCommentsBlogPost.php33 $authorName = $comment->getAuthor()->getName();
35 if (!isset($indexedComments[$authorName])) {
36 $indexedComments[$authorName] = new IndexedCommentsList();
39 $indexedComments[$authorName]->addComment($comment);
/plugin/zotero/
H A DFeedZoteroRepository.php112 $authorName = "";
119 $authorName = str_replace("FIRSTNAME", $firstName, $authorFormat);
120 $authorName = str_replace("LASTNAME", $lastName, $authorName);
124 $authorName = $author->name;
126 if ($authorName == "")
132 $authorName .= " et.al.";
134 return $authorName;
/plugin/botbouncer/lib/
H A Dmollom.php223 * @param string[optional] $authorName
229 … checkContent($sessionId = null, $postTitle = null, $postBody = null, $authorName = null, $authorU… argument
232 …if($sessionId === null && $postTitle === null && $postBody === null && $authorName === null && $au…
242 if($authorName !== null) $parameters['author_name'] = (string) $authorName;