* * Este programa é software livre; você pode redistribuí-lo e/ou modificá-lo * sob os termos da Licença Pública Geral GNU conforme publicada pela Free * Software Foundation; tanto a versão 2 da Licença, como (a seu critério) * qualquer versão posterior. * * Este programa é distribuí­do na expectativa de que seja útil, porém, SEM * NENHUMA GARANTIA; nem mesmo a garantia implí­cita de COMERCIABILIDADE OU * ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Consulte a Licença Pública Geral * do GNU para mais detalhes. * * Você deve ter recebido uma cópia da Licença Pública Geral do GNU junto * com este programa; se não, escreva para a Free Software Foundation, Inc., no * endereço 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA. * * @author Lucas D'Avila * @category i-Educar * @license @@license@@ * @package Portabilis * @since Arquivo disponível desde a versão 1.1.0 * @version $Id$ */ require_once 'lib/Portabilis/View/Helper/Input/Core.php'; /** * Portabilis_View_Helper_Input_SimpleSearch class. * * @author Lucas D'Avila * @category i-Educar * @license @@license@@ * @package Portabilis * @since Classe disponível desde a versão 1.1.0 * @version @@package_version@@ */ class Portabilis_View_Helper_Input_SimpleSearch extends Portabilis_View_Helper_Input_Core { protected function resourceValue($id) { throw new Exception("You are trying to get the resource value, but this is a generic class, " . "please, define the method resourceValue in a resource subclass."); } public function simpleSearch($objectName, $attrName, $options = array()) { $defaultOptions = array('options' => array(), 'apiModule' => 'Api', 'apiController' => ucwords($objectName), 'apiResource' => $objectName . '-search', 'searchPath' => '', 'addHiddenInput' => true, 'hiddenInputOptions' => array(), 'showIdOnValue' => true); $options = $this->mergeOptions($options, $defaultOptions); if (empty($options['searchPath'])) $options['searchPath'] = "/module/" . $options['apiModule'] . "/" . $options['apiController'] . "?oper=get&resource=" . $options['apiResource']; // load value if received an resource id $resourceId = $options['hiddenInputOptions']['options']['value']; if ($resourceId && ! $options['options']['value']){ if ($options['showIdOnValue']) $options['options']['value'] = $resourceId . " - ". $this->resourceValue($resourceId); else $options['options']['value'] = $this->resourceValue($resourceId); } $this->hiddenInput($objectName, $attrName, $options); $this->textInput($objectName, $attrName, $options); $this->js($objectName, $attrName, $options); } protected function hiddenInput($objectName, $attrName, $options) { if ($options['addHiddenInput']) { if ($attrName == 'id') { throw new CoreExt_Exception("When \$addHiddenInput is true the \$attrName (of the visible input) " . "must be different than 'id', because the hidden input will use it."); } $defaultHiddenInputOptions = array('options' => array(), 'objectName' => $objectName); $hiddenInputOptions = $this->mergeOptions($options['hiddenInputOptions'], $defaultHiddenInputOptions); $this->inputsHelper()->hidden('id', array(), $hiddenInputOptions); } } protected function textInput($objectName, $attrName, $options) { $textHelperOptions = array('objectName' => $objectName); $options['options']['placeholder'] = Portabilis_String_Utils::toLatin1( $this->inputPlaceholder(), array('escape' => false) ); $this->inputsHelper()->text($attrName, $options['options'], $textHelperOptions); } protected function js($objectName, $attrName, $options) { // load simple search js $jsFile = '/modules/Portabilis/Assets/Javascripts/Frontend/Inputs/SimpleSearch.js'; Portabilis_View_Helper_Application::loadJavascript($this->viewInstance, $jsFile); // setup simple search /* all search options (including the option autocompleteOptions, that is passed for jquery autocomplete plugin), can be overwritten adding "var = simpleSearchOptions = { option : '...', optionName : '...' };" in the script file for the resource controller. */ $resourceOptions = "simpleSearch" . Portabilis_String_Utils::camelize($objectName) . "Options"; $js = "$resourceOptions = typeof $resourceOptions == 'undefined' ? {} : $resourceOptions; simpleSearchHelper.setup('$objectName', '$attrName', '" . $options['searchPath'] . "', $resourceOptions);"; // this script will be executed after the script for the current controller (if it was loaded in the view); Portabilis_View_Helper_Application::embedJavascript($this->viewInstance, $js, $afterReady = true); } }