OXID eShop CE  4.9.6
 All Classes Files Functions Variables Pages
credits.php
Go to the documentation of this file.
1 <?php
2 
6 class Credits extends Content
7 {
8 
14  protected $_sContentId = "oxcredits";
15 
21  protected function _getSeoObjectId()
22  {
23  return $this->getContentId();
24  }
25 
31  public function getContent()
32  {
33  if ($this->_oContent === null) {
34  $this->_oContent = false;
35  $oContent = oxNew('oxcontent');
36  if ($oContent->loadByIdent($this->getContentId())) {
37  $this->_oContent = $oContent;
38  }
39  }
40 
41  return $this->_oContent;
42  }
43 }