Overview

Namespaces

  • Scopus
    • Exception
    • Response
    • Util

Classes

  • Scopus\Response\AbstractAuthor
  • Scopus\Response\AbstractCoredata
  • Scopus\Response\AbstractItem
  • Scopus\Response\Abstracts
  • Scopus\Response\Affiliation
  • Scopus\Response\Author
  • Scopus\Response\AuthorGroup
  • Scopus\Response\AuthorName
  • Scopus\Response\AuthorProfile
  • Scopus\Response\BaseLinks
  • Scopus\Response\Bibrecord
  • Scopus\Response\BibrecordHead
  • Scopus\Response\Correspondence
  • Scopus\Response\CorrespondencePerson
  • Scopus\Response\Entry
  • Scopus\Response\EntryAuthor
  • Scopus\Response\EntryLinks
  • Scopus\Response\SearchLinks
  • Scopus\Response\SearchResults
  • Scopus\Response\Source
  • Scopus\ScopusApi
  • Scopus\SearchQuery
  • Scopus\Util\XmlUtil

Interfaces

  • Scopus\Response\IAbstract
  • Scopus\Response\IAuthor
  • Scopus\Response\IAuthorName

Exceptions

  • Scopus\Exception\JsonException
  • Scopus\Exception\XmlException
  • Overview
  • Namespace
  • Class
 1: <?php
 2: 
 3: namespace Scopus\Response;
 4: 
 5: class AbstractAuthor extends AuthorName implements IAuthor
 6: {
 7:     /** @var array */
 8:     protected $data;
 9:     
10:     /** @var AuthorName */
11:     protected $preferredName;
12: 
13:     public function __construct(array $data)
14:     {
15:         parent::__construct($data, 'ce');
16:     }
17:     
18:     public function getId()
19:     {
20:         return $this->data['@auid'];
21:     }
22:     
23:     public function getSeq()
24:     {
25:         return $this->data['@seq'];   
26:     }
27:     
28:     public function getPreferredName()
29:     {
30:         return $this->preferredName ?: $this->preferredName = new AuthorName($this->data['preferred-name'], 'ce');
31:     }
32: 
33:     public function getUrl()
34:     {
35:         return $this->data['author-url'];
36:     }
37: }
API documentation generated by ApiGen