* @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio * @copyright Copyright (c) 2014, Ernest Marcinko */ class wpdreamsCustomFields extends wpdreamsType { private $selected; private $args = array( "show_pods" => false ); function getType() { parent::getType(); $this->processData(); $inst = self::$_instancenumber; // Need this, as the static variable is overwritten when the callback is created echo "
" . $this->label . ""; echo '
'; new wd_CFSearchCallBack('wdcfs_' . $inst, '', array( 'value' => '', 'args' => array( 'callback' => 'wd_cf_ajax_callback', 'show_pods' => $this->args['show_pods'], 'limit' => 40 ) ) ); echo '
    ' . __('Use the search bar above to look for custom fields', 'ajax-search-pro') . '

' . __('Drag here the custom fields you want to use!', 'ajax-search-pro') . '

    '; if ($this->selected != null && is_array($this->selected)) { foreach ($this->selected as $k => $v) { echo '
  • ' . str_replace('__pods__', '[PODs] ', $v) . '
  • '; } } echo "
"; } function processData() { if ( is_array($this->data) ) { $this->args = array_merge($this->args, $this->data); if ( isset($this->data['value']) ) { // If called from back-end non-post context $this->data = $this->data['value']; } } $this->data = str_replace("\n", "", $this->data); if ($this->data != "") $this->selected = explode("|", $this->data); else $this->selected = null; } final function getData() { return $this->data; } final function getSelected() { return $this->selected; } } }