123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
- /**
- *
- * PHP Pro Bid $Id$ +Qdl7nlwciSgX4WCW7NZ8wiXi4vty+b+rTavWG+E63Y=
- *
- * @link http://www.phpprobid.com
- * @copyright Copyright (c) 2014 Online Ventures Software LTD & CodeCube SRL
- * @license http://www.phpprobid.com/license Commercial License
- *
- * @version 7.0
- */
- /**
- * content pages table service class
- */
- namespace Ppb\Service;
- use Cube\Db\Expr,
- Ppb\Db\Table\ContentPages as ContentPagesTable;
- class ContentPages extends AbstractService
- {
- /**
- *
- * class constructor
- */
- public function __construct()
- {
- parent::__construct();
- $this->setTable(
- new ContentPagesTable());
- }
- /**
- *
- * create or update a page
- *
- * @param array $data
- * @return $this
- */
- public function save($data)
- {
- $row = null;
- $data = $this->_prepareSaveData($data);
- if (array_key_exists('id', $data)) {
- $select = $this->_table->select()
- ->where("id = ?", $data['id']);
- unset($data['id']);
- $row = $this->_table->fetchRow($select);
- }
- if (count($row) > 0) {
- $data['updated_at'] = new Expr('now()');
- $this->_table->update($data, "id='{$row['id']}'");
- }
- else {
- $data['created_at'] = new Expr('now()');
- $this->_table->insert($data);
- }
- return $this;
- }
- /**
- *
- * delete a content page from the table
- *
- * @param integer $id the id of the content page
- * @return integer returns the number of affected rows
- */
- public function delete($id)
- {
- return $this->_table->delete(
- $this->_table->getAdapter()->quoteInto('id = ?', $id));
- }
- }
|