Home
last modified time | relevance | path

Searched refs:author (Results 1 – 25 of 1738) sorted by relevance

12345678910>>...70

/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/
H A DVersionControl.php85 $author = 'Unknown';
89 $author = $blameAuthor;
94 $this->_authorCache[$author] = 0;
101 $this->_praiseCache[$author]['bad']++;
105 $this->_authorCache[$author]++;
127 $author = $this->getAuthor($line);
128 if ($author === false) {
129 $author = 'Unknown';
138 $this->_authorCache[$author] = 0;
229 … $total = ($this->_praiseCache[$author]['bad'] + $this->_praiseCache[$author]['good']);
[all …]
/plugin/authorstats/
H A Dsyntax.php74 function _getLastMonthsContrib($author, $months) argument
84 if (array_key_exists($month, $author["pm"])) {
85 $sum += intval($author["pm"][$month]);
109 foreach ($authors as $author) {
111 $sum += intval($author["pm"][$yearmonth]);
165 function _makeAuthorLink($author, $name, $type) argument
168 return $author[$type];
175 "title" => hsc($author[$type])
191 foreach ($authors as $name => $author) {
222 foreach ($authors as $name => $author) {
[all …]
/plugin/findologicxmlexport/vendor/sebastian/comparator/tests/
H A DObjectComparatorTest.php51 $book1->author = new Author('Terry Pratchett');
52 $book1->author->books[] = $book1;
54 $book2->author = new Author('Terry Pratchett');
55 $book2->author->books[] = $book2;
76 $book1->author = new Author('Terry Pratchett');
77 $book1->author->books[] = $book1;
79 $book2->author = new Author('Terry Pratch');
80 $book2->author->books[] = $book2;
83 $book3->author = 'Terry Pratchett';
85 $book4->author = 'Terry Pratchett';
H A DMockObjectComparatorTest.php54 …$book1->author = $this->getMock('SebastianBergmann\\Comparator\\Author', null, array('Terry Pratch…
55 $book1->author->books[] = $book1;
57 …$book2->author = $this->getMock('SebastianBergmann\\Comparator\\Author', null, array('Terry Pratch…
58 $book2->author->books[] = $book2;
83 …$book1->author = $this->getMock('SebastianBergmann\\Comparator\\Author', null, array('Terry Pratch…
84 $book1->author->books[] = $book1;
86 …$book2->author = $this->getMock('SebastianBergmann\\Comparator\\Author', null, array('Terry Pratch…
87 $book2->author->books[] = $book2;
90 $book3->author = 'Terry Pratchett';
92 $book4->author = 'Terry Pratchett';
/plugin/cite/
H A Daction.php48 $author = $this->getConf('cite_author');
49 if ($author == '') {
50 $author = 'Anonymous Contributors';
81 <li class="level1"><div class="li"> Author: $author</div></li>
103 …$author ($revisionDateYear). $pagename. $publisher. Retrieved $retrieveDateAPA from <a href="$perm…
120 …$author, &lsquo;$pagename&rsquo;, $publisher, $revisionDateMHRA, &lt;<a href="$permanentUrl" title…
129 …$author, &ldquo;$pagename,&rdquo; $publisher, <a href="$permanentUrl" title="$permanentUrl">$perma…
139 $author. $pagename [Internet]. $publisher; $revisionDateCBECSE [cited $retrieveDateCBECSE].
157 $author. $pagename. $publisher. $revisionDateAMA. Available at:
166 author = "$author",
[all …]
/plugin/bibtex/OSBib/format/bibtexParse/
H A DPARSECREATORS.php44 $author = explode(",", preg_replace("/\s{2,}/", ' ', trim($value)));
45 $size = sizeof($author);
52 $author = split(" ", $matches[1]);
57 $author = split(" ", $value);
59 $surname = array_pop($author);
66 list($surname, $prefix) = $this->grabSurname(array_shift($author));
72 $appellation = join(' ', array_splice($author, 1, 1));
74 list($surname, $prefix) = $this->grabSurname(array_shift($author));
76 $remainder = join(" ", $author);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/
H A DComment.php14 private $author; variable in JMS\\Serializer\\Tests\\Fixtures\\Comment
21 public function __construct(?Author $author = null, $text) argument
23 $this->author = $author;
29 return $this->author;
H A DObjectWithXmlNamespacesAndObjectPropertyAuthor.php20 private $author; variable in JMS\\Serializer\\Tests\\Fixtures\\ObjectWithXmlNamespacesAndObjectPropertyAuthor
34 public function __construct($name, $author) argument
37 $this->author = $author;
H A DObjectWithXmlNamespacesAndObjectPropertyVirtual.php28 private $author; variable in JMS\\Serializer\\Tests\\Fixtures\\ObjectWithXmlNamespacesAndObjectPropertyVirtual
30 public function __construct($title, $author) argument
33 $this->author = $author;
H A DObjectWithXmlNamespacesAndObjectProperty.php28 private $author; variable in JMS\\Serializer\\Tests\\Fixtures\\ObjectWithXmlNamespacesAndObjectProperty
30 public function __construct($title, $author) argument
33 $this->author = $author;
H A DObjectWithXmlRootNamespace.php36 private $author; variable in JMS\\Serializer\\Tests\\Fixtures\\ObjectWithXmlRootNamespace
44 public function __construct($title, $author, \DateTime $createdAt, $language) argument
47 $this->author = $author;
H A DObjectWithXmlNamespaces.php43 private $author; variable in JMS\\Serializer\\Tests\\Fixtures\\ObjectWithXmlNamespaces
51 public function __construct($title, $author, \DateTime $createdAt, $language) argument
54 $this->author = $author;
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/Doctrine/
H A DComment.php21 private $author; variable in JMS\\Serializer\\Tests\\Fixtures\\Doctrine\\Comment
31 public function __construct(Author $author, $text) argument
33 $this->author = $author;
40 return $this->author;
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/DoctrinePHPCR/
H A DComment.php21 private $author; variable in JMS\\Serializer\\Tests\\Fixtures\\DoctrinePHPCR\\Comment
31 public function __construct(Author $author, $text) argument
33 $this->author = $author;
40 return $this->author;
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/Doctrine/
H A DObjectConstructorTest.php56 $author = new Author('John', 5);
57 $em->persist($author);
76 $author = new Author('John', 5);
77 $em->persist($author);
88 self::assertSame($author, $authorFetched);
100 self::assertNull($author);
105 $author = new Author('John');
120 $author = new DoctrinePHPCRAuthor('foo');
137 $author = new Author('John', 5);
138 $em->persist($author);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Books/
H A DBooksCloudloadingResource.php25 public $author; variable in Google\\Service\\Books\\BooksCloudloadingResource
42 public function setAuthor($author) argument
44 $this->author = $author;
51 return $this->author;
H A DOffersItemsItems.php25 public $author; variable in Google\\Service\\Books\\OffersItemsItems
50 public function setAuthor($author) argument
52 $this->author = $author;
59 return $this->author;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Libraryagent/
H A DGoogleExampleLibraryagentV1Book.php25 public $author; variable in Google\\Service\\Libraryagent\\GoogleExampleLibraryagentV1Book
42 public function setAuthor($author) argument
44 $this->author = $author;
51 return $this->author;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/YouTube/
H A DActivityContentDetailsSocial.php25 public $author; variable in Google\\Service\\YouTube\\ActivityContentDetailsSocial
44 public function setAuthor($author) argument
46 $this->author = $author;
53 return $this->author;
/plugin/findologicxmlexport/
H A DDokuwikiPage.php26 public $author; variable in DokuwikiPage
47 $this->author = p_get_metadata($page)['last_change']['user'];
53 if (empty($this->author)) {
54 $this->author = '(external edit)';
/plugin/publistf/bibtex/
H A Dsample.bib4 author = "D. H. Bailey and P. N. Swarztrauber",
14 author = "A. Bayliss and C. I. Goldstein and E. Turkel",
23 author = "O. Ernst and G. Golub",
38 author = "C. I. Goldstein",
47 author = "J. K. Hale",
54 author = "P. N. Swarztrauber",
63 author = "S. Ta'asan",
/plugin/zotero/
H A DFeedZoteroRepository.php113 $author = $data->creators[0];
114 if (isset($author->firstName) && isset($author->lastName))
116 $firstName = $author->firstName;
117 $lastName =$author->lastName;
122 elseif (isset($author->name))
124 $authorName = $author->name;
/plugin/publistx/bibtex/
H A Dsample.bib4 author = "D. H. Bailey and P. N. Swarztrauber",
14 author = "A. Bayliss and C. I. Goldstein and E. Turkel",
23 author = "O. Ernst and G. Golub",
38 author = "C. I. Goldstein",
47 author = "J. K. Hale",
54 author = "P. N. Swarztrauber",
63 author = "S. Ta'asan",
/plugin/publist/bibtex/
H A Dsample.bib4 author = "D. H. Bailey and P. N. Swarztrauber",
14 author = "A. Bayliss and C. I. Goldstein and E. Turkel",
23 author = "O. Ernst and G. Golub",
38 author = "C. I. Goldstein",
47 author = "J. K. Hale",
54 author = "P. N. Swarztrauber",
63 author = "S. Ta'asan",
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/test/
H A Dsync.js10 author: 'Bill Shakespeare', property in attrs
51 assert.equal(data.author, 'Bill Shakespeare');
64 assert.equal(data.author, 'William Shakespeare');
70 library.first().save({id: '2-the-tempest', author: 'Tim Shakespeare'}, {
80 assert.equal(data.author, 'Tim Shakespeare');
86 library.first().save({id: '2-the-tempest', author: 'Tim Shakespeare'}, {
94 assert.equal(data.author, 'Tim Shakespeare');
108 assert.equal(data.author, 'Tim Shakespeare');
114 library.first().save({id: '2-the-tempest', author: 'Tim Shakespeare'});
123 library.first().save({id: '2-the-tempest', author: 'Tim Shakespeare'});
[all …]

12345678910>>...70