123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322 |
- <?php
- /**
- *
- * PHP Pro Bid $Id$ c4UGMY1shkPWkoGLnJP37qgFavx0dB2P0BTKuh5VZ1w=
- *
- * @link http://www.phpprobid.com
- * @copyright Copyright (c) 2017 Online Ventures Software & CodeCube SRL
- * @license http://www.phpprobid.com/license Commercial License
- *
- * @version 7.10 [rev.7.10.01]
- */
- namespace Ppb\Model\Elements;
- use Ppb\Db\Table\Row\User as UserModel,
- Ppb\Form\Element\CategoriesBrowse;
- class Search extends AbstractElements
- {
- /**
- *
- * form id
- *
- * @var array
- */
- protected $_formId = array();
- /**
- *
- * user object (used to generate store categories)
- *
- * @var \Ppb\Db\Table\Row\User
- */
- protected $_store;
- /**
- *
- * listings select object - used for displaying counters for certain form elements
- *
- * @var \Cube\Db\Select
- */
- protected $_listingsSelect;
- /**
- *
- * class constructor
- *
- * @param array $formId
- */
- public function __construct($formId = null)
- {
- parent::__construct();
- $this->_formId = (array)$formId;
- }
- /**
- *
- * get store user object
- *
- * @return \Ppb\Db\Table\Row\User
- */
- public function getStore()
- {
- return $this->_store;
- }
- /**
- *
- * set store user object
- *
- * @param \Ppb\Db\Table\Row\User $store
- *
- * @return $this
- */
- public function setStore(UserModel $store = null)
- {
- $this->_store = $store;
- return $this;
- }
- /**
- *
- * set countable listings select object
- *
- * @param \Cube\Db\Select $select
- */
- public function setListingsSelect($select)
- {
- $this->_listingsSelect = $select;
- }
- /**
- *
- * get countable listings select object
- *
- * @return \Cube\Db\Select
- */
- public function getListingsSelect()
- {
- return $this->_listingsSelect;
- }
- /**
- *
- * get form elements
- *
- * @return array
- */
- public function getElements()
- {
- $translate = $this->getTranslate();
- $settings = $this->getSettings();
- $categoriesSelect = $this->getCategories()->getTable()
- ->select()
- ->where('enable_auctions = ?', 1)
- ->order(array('order_id ASC', 'name ASC'));
- if ($this->_store instanceof UserModel) {
- $categoriesSelect->where("user_id is null OR user_id = '{$this->_store['id']}'");
- }
- else {
- $categoriesSelect->where('user_id is null');
- }
- $categoriesFilter = array(0);
- if ($parentId = $this->getData('parent_id')) {
- if (in_array('advanced', $this->_formId)) {
- $categoriesSelect->where('parent_id is null');
- }
- else {
- $categoriesSelect->where('parent_id = ?', $parentId);
- }
- $categoriesFilter = array_merge($categoriesFilter, array_keys(
- $this->getCategories()->getBreadcrumbs($parentId)));
- }
- else {
- $categoriesSelect->where('parent_id is null');
- if ($this->_store instanceof UserModel) {
- $storeCategories = $this->_store->getStoreSettings('store_categories');
- if ($storeCategories != null) {
- $categoriesSelect->where('id IN (?)', $storeCategories);
- }
- }
- }
- $categoriesMultiOptions = $this->getCategories()->getMultiOptions($categoriesSelect, null, $translate->_('All Categories'));
- $customFields = $this->getCustomFields()->getFields(
- array(
- 'type' => 'item',
- 'active' => 1,
- 'searchable' => 1,
- 'category_ids' => $categoriesFilter,
- ))->toArray();
- $showOnly = array(
- 'accept_returns' => $translate->_('Returns Accepted'),
- 'sold' => $translate->_('Sold Items'),
- );
- if ($settings['enable_make_offer']) {
- $showOnly['make_offer'] = $translate->_('Offers Accepted');
- }
- $listingTypesMultiOptions = $this->getListingTypes();
- $currency = $this->getView()->amount(false)->getCurrency();
- $currencyCode = (!empty($currency['symbol'])) ? $currency['symbol'] : $currency['iso_code'];
- $countriesMultiOptions = $this->getLocations()->getMultiOptions(null, null, $translate->_('All Countries'));
- // if ($settings['search_counters']) {
- // $listingsService = new ListingsService();
- // $listings = $listingsService->fetchAll($this->getListingsSelect());
- //
- // $categoriesCounters = array();
- // $listingTypesCounters = array();
- // $countriesCategories = array();
- // foreach ($listings as $listing) {
- // $categoriesCounters[$listing['category_id']] ++;
- // if ($listing['addl_category_id']) {
- // $categoriesCounters[$listing['addl_category_id']] ++;
- // }
- // // categories count
- // // listing types count
- // // custom fields count
- // // location count
- // }
- //
- // }
- $array = array(
- array(
- 'form_id' => 'global',
- 'id' => 'keywords',
- 'element' => 'text',
- 'label' => $this->_('Keywords'),
- 'attributes' => array(
- 'class' => 'form-control'
- . ((in_array('basic', $this->_formId) || in_array('stores',
- $this->_formId)) ? '' : ' input-xlarge'),
- ),
- ),
- array(
- 'form_id' => 'advanced',
- 'id' => 'parent_id',
- 'element' => 'select',
- 'label' => $this->_('Select Category'),
- 'multiOptions' => $categoriesMultiOptions,
- 'attributes' => array(
- 'class' => 'form-control input-large',
- ),
- 'bodyCode' => "
- <script type=\"text/javascript\">
- $(document).on('change', '[name=\"parent_id\"]', function() {
- $('body').addClass('loading');
- $(this).closest('form').prop('action', '').submit();
- });
- </script>",
- ),
- array(
- 'form_id' => array('basic', 'stores'),
- 'id' => 'parent_id',
- 'element' => '\\Ppb\\Form\\Element\\CategoriesBrowse',
- 'label' => $this->_('Categories'),
- 'multiOptions' => $categoriesMultiOptions,
- 'attributes' => array(
- CategoriesBrowse::ACTIVE_CATEGORY => ($parentId) ? $this->_categories->getBreadcrumbs($parentId) : null,
- CategoriesBrowse::STORES_CATEGORIES => ((in_array('stores', $this->_formId)) ? true : false),
- ),
- 'customData' => array(
- 'rowset' => $this->getCategories()->fetchAll($categoriesSelect),
- ),
- ),
- array(
- 'form_id' => 'basic',
- 'id' => 'price',
- 'element' => '\\Ppb\\Form\\Element\\Range',
- 'label' => $this->_('Price'),
- 'prefix' => $currencyCode,
- 'attributes' => array(
- 'class' => 'form-control input-tiny',
- )
- ),
- array(
- 'form_id' => array('basic', 'advanced'),
- 'id' => 'show_only',
- 'element' => 'checkbox',
- 'label' => $this->_('Show Only'),
- 'multiOptions' => $showOnly
- ),
- array(
- 'form_id' => array('basic', 'advanced'),
- 'id' => 'listing_type',
- 'element' => 'checkbox',
- 'label' => $this->_('Format'),
- 'multiOptions' => $listingTypesMultiOptions,
- ),
- array(
- 'form_id' => 'global',
- 'id' => 'country',
- 'element' => 'select',
- 'label' => $this->_('Location'),
- 'multiOptions' => $countriesMultiOptions,
- 'attributes' => array(
- 'class' => 'form-control'
- . ((in_array('basic', $this->_formId) || in_array('stores',
- $this->_formId)) ? '' : ' input-large'),
- ),
- ),
- array(
- 'form_id' => 'global',
- 'id' => 'sort',
- 'element' => 'hidden',
- ),
- array(
- 'form_id' => 'global',
- 'id' => 'show',
- 'element' => 'hidden',
- ),
- );
- foreach ($customFields as $key => $customField) {
- $customFields[$key]['form_id'] = array('basic', 'advanced');
- $customFields[$key]['id'] = 'custom_field_' . $customField['id'];
- // elements of type select and radio will be converted to checkboxes
- if (in_array($customField['element'], array('select', 'radio'))) {
- $customFields[$key]['element'] = 'checkbox';
- }
- if (in_array($customField['element'], array('text', 'textarea'))) {
- $attributes = unserialize($customField['attributes']);
- array_push($attributes['key'], 'class');
- if ($customField['element'] == 'text' && in_array('advanced', $this->_formId)) {
- array_push($attributes['value'], 'form-control input-default');
- }
- else {
- array_push($attributes['value'], 'form-control');
- }
- $customFields[$key]['attributes'] = serialize($attributes);
- }
- }
- array_splice($array, 3, 0, $customFields);
- return $array;
- }
- }
|