Home
last modified time | relevance | path

Searched refs:authors (Results 1 – 25 of 527) sorted by relevance

12345678910>>...22

/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/
H A DAuthorList.php19 protected $authors = []; variable in JMS\\Serializer\\Tests\\Fixtures\\AuthorList
26 $this->authors[] = $author;
34 return new \ArrayIterator($this->authors);
42 return count($this->authors);
50 return isset($this->authors[$offset]);
58 return $this->authors[$offset] ?? null;
67 $this->authors[] = $value;
69 $this->authors[$offset] = $value;
78 unset($this->authors[$offset]);
H A DLog.php21 private $authors; variable in JMS\\Serializer\\Tests\\Fixtures\\Log
31 $this->authors = new AuthorList();
32 $this->authors->add(new Author('Johannes Schmitt'));
33 $this->authors->add(new Author('John Doe'));
H A DAuthorsInline.php17 public function __construct(Author ... $authors) argument
19 $this->collection = $authors;
/plugin/authorstats/
H A Dsyntax.php106 function _getMonthlyContrib($authors, $yearmonth) argument
109 foreach ($authors as $author) {
123 $authors = $data["authors"];
187 $authors = $this->helpers->readJSON();
188 $authors = $authors["authors"];
191 foreach ($authors as $name => $author) {
219 $authors = $this->helpers->readJSON();
220 $authors = $authors["authors"];
222 foreach ($authors as $name => $author) {
226 foreach ($authors as $name => $author) {
[all …]
H A Dhelper.php46 public function saveJSON($authors) argument
49 $json = json_encode($authors, true);
/plugin/authorlist/
H A Dhelper.php18 protected $authors = array(); // Contributors-Array (loginname => fullname) variable in helper_plugin_authorlist
101 if(!$this->printempty && empty($this->authors)) return false;
120 $this->authors[$loginname] = $fullname;
137 …xists('contributor',$INFO['meta'])) $this->authors = array_merge($INFO['meta']['contributor'],$th…
146 ksort($this->authors);
149 asort($this->authors);
157 foreach($this->authors as $loginname => $fullname){
166 if($this->printempty || !empty($this->authors)){
/plugin/publistx/
H A Dsyntax.php108 $authors = null;
111 $authors = $this->_load($data, 'authors');
112 if ( empty($authors) ) {
126 $parser = new BibtexConverter($data['options'],$sanitiser,$authors);
H A Dchangelog5 * added a new optional parameter "authors", which allows linking to websites of
6 co-authors by creating an additional file/wiki page with "URL Author Name"
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Books/
H A DVolumeVolumeInfo.php30 public $authors; variable in Google\\Service\\Books\\VolumeVolumeInfo
138 public function setAuthors($authors) argument
140 $this->authors = $authors;
147 return $this->authors;
/plugin/publistf/
H A Dsyntax.php109 $authors = null;
112 $authors = $this->_load($data, 'authors');
113 if ( empty($authors) ) {
127 $parser = new BibtexConverter($data['options'],$sanitiser,$authors);
/plugin/pubmed/
H A Dsyntax.php61 $authors = $this->ncbi->GetSummaryItems("Author",$xml);
68 $renderer->doc.= implode(', ',$authors).'<br/>';
71 if (count($authors)>1) $etal = '<span class="etal">et al.</span>';
72 $renderer->doc.= '<a href="'.$href_url.'">'.$authors[0].$etal;
/plugin/pubmed2020/
H A Dstyle.css12 .pubmed .long .authors,
13 .pubmed .long_tt .authors,
14 .pubmed .long_abstract .authors,
15 .pubmed .short span.authors{
/plugin/smtp/subtree/txtthinking/Mailer/
H A Dcomposer.lock33 "authors": [
88 "authors": [
127 "authors": [
202 "authors": [
259 "authors": [
304 "authors": [
373 "authors": [
421 "authors": [
463 "authors": [
504 "authors": [
[all …]
/plugin/pubmed2020/classes/
H A Dpubmed2020.php244 $authors = array();
341 array_push($authors, $value);
409 array_push($authors, $ret["corporate_author"]);
412 $ret["authors"] = $authors;
413 $ret["authorsVancouver"] = $authors;
414 if (count($authors) == 0) {
415 array_push($authors, $pluginObject->getLang('no_author_listed'));
420 if (count($authors) > 1) {
421 $ret['first_author'] = $authors[0].", ".$pluginObject->getConf('et_al_vancouver');
423 $ret['first_author'] = $authors[0];
/plugin/refnotes/
H A Drendering.php941 static $key = array('ref-authors', 'ref-author', 'authors', 'author', 'published', 'month', 'year');
965 // authors, published. //[[url|title.]]// edition. [format], publisher, pages, isbn. (accessed)
966 // authors, published. chapter In //[[url|title.]]// edition. [format], publisher, pages, isbn. (accessed)
967 // authors, published. [[url|title.]] //journal//, volume, [format], publisher, pages, issn. (accessed)
968 // authors, published. [[url|title.]] //booktitle//, [format], publisher, pages, issn. (accessed)
972 // authors, published. //$title// edition. [format], publisher, pages, isbn. (accessed)
973 // authors, published. chapter In //$title// edition. [format], publisher, pages, isbn. (accessed)
974 // authors, published. $title //journal//, volume, [format], publisher, pages, issn. (accessed)
975 // authors, publishe
1069 renderPublication($data, $authors) global() argument
[all...]
/plugin/oauth/vendor/lusitanian/oauth/
H A Dcomposer.lock55 "authors": [
103 "authors": [
145 "authors": [
186 "authors": [
236 "authors": [
307 "authors": [
357 "authors": [
406 "authors": [
482 "authors": [
535 "authors"
[all...]
/plugin/publistx/bib2tpl/lib/
H A DBibTex.php1095 $authors = '';
1111 $authors = join(', ', $tmparray);
1113 $authors = $entry['author'];
1116 if ((''!=$title) || (''!=$journal) || (''!=$year) || (''!=$authors)) {
1120 $line = str_replace("AUTHORS", $authors, $line);
1152 $authors = '';
1168 $authors = join(', ', $tmparray);
1170 $authors = $entry['author'];
1173 if ((''!=$title) || (''!=$journal) || (''!=$year) || (''!=$authors)) {
1177 $line = str_replace("AUTHORS", $authors, $line);
/plugin/publistf/bib2tpl/lib/
H A DBibTex.php1095 $authors = '';
1111 $authors = join(', ', $tmparray);
1113 $authors = $entry['author'];
1116 if ((''!=$title) || (''!=$journal) || (''!=$year) || (''!=$authors)) {
1120 $line = str_replace("AUTHORS", $authors, $line);
1152 $authors = '';
1168 $authors = join(', ', $tmparray);
1170 $authors = $entry['author'];
1173 if ((''!=$title) || (''!=$journal) || (''!=$year) || (''!=$authors)) {
1177 $line = str_replace("AUTHORS", $authors, $line);
/plugin/publist/bib2tpl/lib/
H A DBibTex.php1095 $authors = '';
1111 $authors = join(', ', $tmparray);
1113 $authors = $entry['author'];
1116 if ((''!=$title) || (''!=$journal) || (''!=$year) || (''!=$authors)) {
1120 $line = str_replace("AUTHORS", $authors, $line);
1152 $authors = '';
1168 $authors = join(', ', $tmparray);
1170 $authors = $entry['author'];
1173 if ((''!=$title) || (''!=$journal) || (''!=$year) || (''!=$authors)) {
1177 $line = str_replace("AUTHORS", $authors, $line);
/plugin/barcodes/
H A Dcomposer.lock39 "authors": [
100 "authors": [
232 "authors": [
284 "authors": [
335 "authors": [
410 "authors": [
471 "authors": [
535 "authors": [
594 "authors": [
653 "authors": [
[all …]
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/
H A Dcomposer.lock47 "authors": [
117 "authors": [
196 "authors": [
269 "authors": [
341 "authors": [
408 "authors": [
518 "authors": [
640 "authors": [
692 "authors": [
743 "authors"
[all...]
/plugin/elasticsearch/
H A Dcomposer.lock55 "authors": [
106 "authors": [
168 "authors": [
217 "authors": [
276 "authors": [
327 "authors": [
378 "authors": [
468 "authors": [
522 "authors": [
596 "authors"
[all...]
/plugin/webdav/
H A Dcomposer.lock41 "authors": [
120 "authors": [
175 "authors": [
237 "authors": [
286 "authors": [
347 "authors": [
439 "authors": [
/plugin/quickstats/GEOIP/
H A Dcomposer.lock48 "authors": [
99 "authors": [
156 "authors": [
210 "authors": [
/plugin/combo/
H A Dcomposer.lock90 "authors": [
133 "authors": [
187 "authors": [
236 "authors": [
352 "authors": [
415 "authors": [
491 "authors": [
573 "authors": [
653 "authors": [
725 "authors"
[all...]

12345678910>>...22