Source of file BasePlan.php
Size: 4,569 Bytes - Last Modified: 2020-10-24T02:46:31+00:00
/home/travis/build/NextDom/nextdom-core/src/Model/BasePlan.php
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 | <?php namespace NextDom\Model; use NextDom\Helpers\DBHelper; use NextDom\Helpers\Utils; abstract class BasePlan extends BaseEntity { /** * @var string * * @ORM\Column(name="link_type", type="string", length=127, nullable=true) */ protected $link_type; /** * @var integer * * @ORM\Column(name="link_id", type="integer", nullable=true) */ protected $link_id; /** * @var string * * @ORM\Column(name="position", type="text", length=65535, nullable=true) */ protected $position; /** * @var string * * @ORM\Column(name="display", type="text", length=65535, nullable=true) */ protected $display; /** * @var string * * @ORM\Column(name="css", type="text", length=65535, nullable=true) */ protected $css; /** * @var string * * @ORM\Column(name="configuration", type="text", length=65535, nullable=true) */ protected $configuration; /** * @param string $_key * @param string $_default * @return array|bool|mixed|null|string */ public function getPosition($_key = '', $_default = '') { return Utils::getJsonAttr($this->position, $_key, $_default); } /** * @param $_key * @param $_value * @return $this */ public function setPosition($_key, $_value) { $position = Utils::setJsonAttr($this->position, $_key, $_value); $this->_changed = Utils::attrChanged($this->_changed, $this->position, $position); $this->position = $position; return $this; } /** * @param string $_key * @param string $_default * @return array|bool|mixed|null|string */ public function getDisplay($_key = '', $_default = '') { return Utils::getJsonAttr($this->display, $_key, $_default); } /** * @param $_key * @param $_value * @return $this */ public function setDisplay($_key, $_value) { $display = Utils::setJsonAttr($this->display, $_key, $_value); $this->_changed = Utils::attrChanged($this->_changed, $this->display, $display); $this->display = $display; return $this; } /** * @param string $_key * @param string $_default * @return array|bool|mixed|null|string */ public function getConfiguration($_key = '', $_default = '') { return Utils::getJsonAttr($this->configuration, $_key, $_default); } /** * @param $_key * @param $_value * @return $this */ public function setConfiguration($_key, $_value) { $configuration = Utils::setJsonAttr($this->configuration, $_key, $_value); $this->_changed = Utils::attrChanged($this->_changed, $this->configuration, $configuration); $this->configuration = $configuration; return $this; } /** * @return string */ public function getLink_type() { return $this->link_type; } /** * @param $_link_type * @return $this */ public function setLink_type($_link_type) { $this->_changed = Utils::attrChanged($this->_changed, $this->link_type, $_link_type); $this->link_type = $_link_type; return $this; } /** * @return int */ public function getLink_id() { return $this->link_id; } /** * @param $_link_id * @return $this */ public function setLink_id($_link_id) { $this->_changed = Utils::attrChanged($this->_changed, $this->link_id, $_link_id); $this->link_id = $_link_id; return $this; } /** * @param string $_key * @param string $_default * @return array|bool|mixed|null|string */ public function getCss($_key = '', $_default = '') { return Utils::getJsonAttr($this->css, $_key, $_default); } /** * @param $_key * @param $_value * @return $this */ public function setCss($_key, $_value) { $css = Utils::setJsonAttr($this->css, $_key, $_value); $this->_changed = Utils::attrChanged($this->_changed, $this->css, $css); $this->css = $css; return $this; } public function save() { DBHelper::save($this); } public function remove() { DBHelper::remove($this); } abstract public function preInsert(); abstract public function preSave(); abstract public function getHtml(); abstract public function getLink(); } |