Open Journal Systems  3.3.0
swordapplink.php
1 <?php
2 
3 class SWORDAPPLink {
4 
5  // The 'type' of the link
6  public $sac_linktype;
7 
8  // The 'rel' of the link
9  public $sac_linkrel;
10 
11  // The 'href' of the link
12  public $sac_linkhref;
13 
14  // Construct a new deposit response by passing in the http status code
15  function __construct($rel, $href, $type = '') {
16  $this->sac_linkrel = $rel;
17  $this->sac_linkhref = $href;
18  $this->sac_linktype = $type;
19  }
20 }
21 
22 ?>