123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <?php
- /**
- *
- * PHP Pro Bid $Id$ 0oDe+Zef8vL5fyBqxJEnOiPBfY9UEmH0Sbc+tVIAfLh/zdvoA4ImlSkW8rjG9fJOwSmRzljRHHkuTlsdfwkkdA==
- *
- * @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
- */
- /**
- * offline payment methods table service class
- */
- namespace Ppb\Service\Table;
- use Ppb\Db\Table\OfflinePaymentMethods as MethodsTable;
- class OfflinePaymentMethods extends AbstractServiceTable
- {
- public function __construct()
- {
- parent::__construct();
- $this->setTable(
- new MethodsTable());
- }
- /**
- *
- * get all payment methods
- * to be used for the listing duration selector
- *
- * @return array
- */
- public function getMultiOptions()
- {
- $data = array();
- $translate = $this->getTranslate();
- $rows = $this->_table->fetchAll();
- foreach ($rows as $row) {
- $data[(string) $row['id']] = $translate->_($row['name']);
- }
- return $data;
- }
- /**
- *
- * get all table columns needed to generate the
- * offline payment methods management table in the admin area
- *
- * @return array
- */
- public function getColumns()
- {
- return array(
- array(
- 'label' => $this->_('Name'),
- 'element_id' => 'name',
- ),
- array(
- 'label' => $this->_('Order ID'),
- 'class' => 'size-mini',
- 'element_id' => 'order_id',
- ),
- array(
- 'label' => $this->_('Delete'),
- 'class' => 'size-mini',
- 'element_id' => array(
- 'id', 'delete'
- ),
- ),
- );
- }
- /**
- *
- * get all form elements that are needed to generate the
- * offline payment methods management table in the admin area
- *
- * @return array
- */
- public function getElements()
- {
- return array(
- array(
- 'id' => 'id',
- 'element' => 'hidden',
- ),
- array(
- 'id' => 'name',
- 'element' => 'text',
- 'attributes' => array(
- 'class' => 'form-control input-large',
- ),
- ),
- array(
- 'id' => 'order_id',
- 'element' => 'text',
- 'attributes' => array(
- 'class' => 'form-control input-mini',
- ),
- ),
- array(
- 'id' => 'delete',
- 'element' => 'checkbox',
- ),
- );
- }
- /**
- *
- * fetches all matched rows
- *
- * @param string|\Cube\Db\Select $where SQL where clause, or a select object
- * @param string|array $order
- * @param int $count
- * @param int $offset
- * @return array
- */
- public function fetchAll($where = null, $order = null, $count = null, $offset = null)
- {
- if ($order === null) {
- $order = 'order_id ASC, name ASC';
- }
- return parent::fetchAll($where, $order, $count, $offset);
- }
- }
|