Home
last modified time | relevance | path

Searched refs:authorEmail (Results 1 – 6 of 6) sorted by relevance

/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/
H A DAuthor.php29 private $authorEmail = ''; variable in phpDocumentor\\Reflection\\DocBlock\\Tags\\Author
35 * @param string $authorEmail
37 public function __construct($authorName, $authorEmail) argument
40 Assert::string($authorEmail);
41 if ($authorEmail && !filter_var($authorEmail, FILTER_VALIDATE_EMAIL)) {
46 $this->authorEmail = $authorEmail;
66 return $this->authorEmail;
76 … return $this->authorName . (strlen($this->authorEmail) ? ' <' . $this->authorEmail . '>' : '');
/plugin/fksnewsfeed/inc/ORM/
H A DModelNews.php17 public string $authorEmail; variable in FYKOS\\dokuwiki\\Extension\\PluginNewsFeed\\Model\\ModelNews
117 $model->authorEmail = $data['author_email'];
131 $this->authorEmail = $INFO['userinfo']['mail'];
/plugin/botbouncer/lib/
H A Dmollom.php225 * @param string[optional] $authorEmail
229 …itle = null, $postBody = null, $authorName = null, $authorUrl = null, $authorEmail = null, $author… argument
232 … $postBody === null && $authorName === null && $authorUrl === null && $authorEmail === null && $au…
244 if($authorEmail !== null) $parameters['author_mail'] = (string) $authorEmail;
/plugin/fksnewsfeed/inc/renderer/
H A DVyfukRenderer.php180 … <a href="mailto:' . hsc($news->authorEmail) . '" class="mail" title="' . hsc($news->authorEmail) .
H A DFykosRenderer.php156 …'<a href="mailto:' . hsc($news->authorEmail) . '" class="mail" title="' . hsc($news->authorEmail) .
/plugin/fksnewsfeed/
H A Daction.php312 $input->val($data->authorEmail);