@@ -25,22 +25,22 @@ discard block |
||
| 25 | 25 | */ |
| 26 | 26 | public function execute() { |
| 27 | 27 | |
| 28 | - $parser = new Parser( $GLOBALS['wgParserConf'] ); |
|
| 29 | - $parser->setTitle( Title::newFromText( 'NO TITLE' ) ); |
|
| 28 | + $parser = new Parser($GLOBALS['wgParserConf']); |
|
| 29 | + $parser->setTitle(Title::newFromText('NO TITLE')); |
|
| 30 | 30 | $parser->mOptions = new ParserOptions(); |
| 31 | 31 | $parser->mOutput = new ParserOutput(); |
| 32 | 32 | |
| 33 | - $apiRequestProcessor = new \SFS\ApiSemanticFormsSelectRequestProcessor( $parser ); |
|
| 34 | - $apiRequestProcessor->setDebugFlag( $GLOBALS['wgSF_Select_debug'] ); |
|
| 33 | + $apiRequestProcessor = new \SFS\ApiSemanticFormsSelectRequestProcessor($parser); |
|
| 34 | + $apiRequestProcessor->setDebugFlag($GLOBALS['wgSF_Select_debug']); |
|
| 35 | 35 | |
| 36 | 36 | $resultValues = $apiRequestProcessor->getJsonDecodedResultValuesForRequestParameters( |
| 37 | 37 | $this->extractRequestParams() |
| 38 | 38 | ); |
| 39 | 39 | |
| 40 | 40 | $result = $this->getResult(); |
| 41 | - $result->setIndexedTagName( $resultValues->values, 'value' ); |
|
| 42 | - $result->addValue( $this->getModuleName(), 'values', $resultValues->values ); |
|
| 43 | - $result->addValue( $this->getModuleName(), 'count', $resultValues->count ); |
|
| 41 | + $result->setIndexedTagName($resultValues->values, 'value'); |
|
| 42 | + $result->addValue($this->getModuleName(), 'values', $resultValues->values); |
|
| 43 | + $result->addValue($this->getModuleName(), 'count', $resultValues->count); |
|
| 44 | 44 | |
| 45 | 45 | return true; |
| 46 | 46 | } |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | * @see ApiBase::getVersion |
| 89 | 89 | */ |
| 90 | 90 | public function getVersion() { |
| 91 | - return __CLASS__ . ': 1.1'; |
|
| 91 | + return __CLASS__.': 1.1'; |
|
| 92 | 92 | } |
| 93 | 93 | |
| 94 | 94 | } |
@@ -181,6 +181,9 @@ |
||
| 181 | 181 | return $this->mHasStaticValues; |
| 182 | 182 | } |
| 183 | 183 | |
| 184 | + /** |
|
| 185 | + * @param boolean $StaticValues |
|
| 186 | + */ |
|
| 184 | 187 | private function setHasStaticValues( $StaticValues ) {
|
| 185 | 188 | $this->mHasStaticValues = $StaticValues; |
| 186 | 189 | } |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | private $mValues = null; |
| 22 | 22 | private $mHasStaticValues = false; |
| 23 | 23 | |
| 24 | - private $mData = []; # array with all parameters |
|
| 24 | + private $mData = []; # array with all parameters |
|
| 25 | 25 | private $mQuery = ""; |
| 26 | 26 | private $mFunction = ""; |
| 27 | 27 | private $mSelectIsMultiple = false; |
@@ -33,18 +33,18 @@ discard block |
||
| 33 | 33 | private $mLabel = false; |
| 34 | 34 | private $mDelimiter = ","; |
| 35 | 35 | |
| 36 | - public function __construct( & $parser ) {
|
|
| 36 | + public function __construct(& $parser) {
|
|
| 37 | 37 | $this->mParser = $parser; |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | /** |
| 41 | 41 | * Convenience function to process all parameters at once |
| 42 | 42 | */ |
| 43 | - public function processParameters( $input_name = "", $other_args ) {
|
|
| 44 | - if ( array_key_exists( "query", $other_args ) ) {
|
|
| 45 | - $this->setQuery( $other_args ); |
|
| 46 | - } elseif ( array_key_exists( "function", $other_args ) ) {
|
|
| 47 | - $this->setFunction( $other_args ); |
|
| 43 | + public function processParameters($input_name = "", $other_args) {
|
|
| 44 | + if (array_key_exists("query", $other_args)) {
|
|
| 45 | + $this->setQuery($other_args); |
|
| 46 | + } elseif (array_key_exists("function", $other_args)) {
|
|
| 47 | + $this->setFunction($other_args); |
|
| 48 | 48 | } |
| 49 | 49 | } |
| 50 | 50 | |
@@ -57,88 +57,88 @@ discard block |
||
| 57 | 57 | return $this->mData; |
| 58 | 58 | } |
| 59 | 59 | |
| 60 | - public function setQuery( $other_args ) {
|
|
| 60 | + public function setQuery($other_args) {
|
|
| 61 | 61 | $querystr = $other_args["query"]; |
| 62 | - $querystr = str_replace( [ "~", "(", ")" ], [ "=", "[", "]" ], $querystr );
|
|
| 62 | + $querystr = str_replace(["~", "(", ")"], ["=", "[", "]"], $querystr);
|
|
| 63 | 63 | |
| 64 | 64 | //$this->mSelectField["query"] = $query; |
| 65 | 65 | $this->mQuery = $querystr; |
| 66 | 66 | $this->mData['selectquery'] = $querystr; |
| 67 | 67 | |
| 68 | 68 | // unparametrized query |
| 69 | - if ( strpos( $querystr, '@@@@' ) === false ) {
|
|
| 70 | - $rawparams = explode( ";", $querystr ); |
|
| 69 | + if (strpos($querystr, '@@@@') === false) {
|
|
| 70 | + $rawparams = explode(";", $querystr);
|
|
| 71 | 71 | |
| 72 | 72 | // there is no need to run the parser, $query has been parsed already |
| 73 | 73 | //$params[0] = $wgParser->replaceVariables( $params[0] ); |
| 74 | 74 | |
| 75 | - list( $query, $params ) = QueryProcessor::getQueryAndParamsFromFunctionParams( $rawparams, SMW_OUTPUT_WIKI, QueryProcessor::INLINE_QUERY, false ); |
|
| 75 | + list($query, $params) = QueryProcessor::getQueryAndParamsFromFunctionParams($rawparams, SMW_OUTPUT_WIKI, QueryProcessor::INLINE_QUERY, false); |
|
| 76 | 76 | |
| 77 | - $result = QueryProcessor::getResultFromQuery( $query, $params, SMW_OUTPUT_WIKI, QueryProcessor::INLINE_QUERY ); |
|
| 77 | + $result = QueryProcessor::getResultFromQuery($query, $params, SMW_OUTPUT_WIKI, QueryProcessor::INLINE_QUERY); |
|
| 78 | 78 | |
| 79 | - $this->mValues = $this->getFormattedValuesFrom( $this->mDelimiter, $result ); |
|
| 79 | + $this->mValues = $this->getFormattedValuesFrom($this->mDelimiter, $result); |
|
| 80 | 80 | |
| 81 | - $this->setHasStaticValues( true ); |
|
| 81 | + $this->setHasStaticValues(true); |
|
| 82 | 82 | } |
| 83 | 83 | } |
| 84 | 84 | |
| 85 | - public function setFunction( $other_args ) {
|
|
| 85 | + public function setFunction($other_args) {
|
|
| 86 | 86 | #global $wgParser; |
| 87 | 87 | |
| 88 | 88 | $function = $other_args["function"]; |
| 89 | - $function = '{{#' . $function . '}}';
|
|
| 90 | - $function = str_replace( [ "~", "(", ")" ], [ "=", "[", "]" ], $function );
|
|
| 89 | + $function = '{{#'.$function.'}}';
|
|
| 90 | + $function = str_replace(["~", "(", ")"], ["=", "[", "]"], $function);
|
|
| 91 | 91 | |
| 92 | 92 | //$this->mSelectField["function"] = $function; |
| 93 | 93 | $this->mFunction = $function; |
| 94 | 94 | $this->mData['selectfunction'] = $function; |
| 95 | 95 | |
| 96 | 96 | // unparametrized function |
| 97 | - if ( strpos( $function, '@@@@' ) === false ) {
|
|
| 98 | - $f = str_replace( ";", "|", $function ); |
|
| 97 | + if (strpos($function, '@@@@') === false) {
|
|
| 98 | + $f = str_replace(";", "|", $function);
|
|
| 99 | 99 | |
| 100 | - $this->setValues( $this->mParser->replaceVariables( $f ) ); |
|
| 100 | + $this->setValues($this->mParser->replaceVariables($f)); |
|
| 101 | 101 | |
| 102 | - $this->setHasStaticValues( true ); |
|
| 102 | + $this->setHasStaticValues(true); |
|
| 103 | 103 | } |
| 104 | 104 | } |
| 105 | 105 | |
| 106 | - public function setSelectIsMultiple( Array $other_args ) {
|
|
| 107 | - $this->mSelectIsMultiple = array_key_exists( "part_of_multiple", $other_args ); |
|
| 106 | + public function setSelectIsMultiple(Array $other_args) {
|
|
| 107 | + $this->mSelectIsMultiple = array_key_exists("part_of_multiple", $other_args);
|
|
| 108 | 108 | $this->mData["selectismultiple"] = $this->mSelectIsMultiple; |
| 109 | 109 | } |
| 110 | 110 | |
| 111 | - public function setSelectTemplate( $input_name = "" ) {
|
|
| 112 | - $index = strpos( $input_name, "[" ); |
|
| 113 | - $this->mSelectTemplate = substr( $input_name, 0, $index ); |
|
| 111 | + public function setSelectTemplate($input_name = "") {
|
|
| 112 | + $index = strpos($input_name, "["); |
|
| 113 | + $this->mSelectTemplate = substr($input_name, 0, $index); |
|
| 114 | 114 | $this->mData['selecttemplate'] = $this->mSelectTemplate; |
| 115 | 115 | } |
| 116 | 116 | |
| 117 | - public function setSelectField( $input_name = "" ) {
|
|
| 118 | - $index = strrpos( $input_name, "[" ); |
|
| 119 | - $this->mSelectField = substr( $input_name, $index + 1, strlen( $input_name ) - $index - 2 ); |
|
| 117 | + public function setSelectField($input_name = "") {
|
|
| 118 | + $index = strrpos($input_name, "["); |
|
| 119 | + $this->mSelectField = substr($input_name, $index + 1, strlen($input_name) - $index - 2); |
|
| 120 | 120 | $this->mData['selectfield'] = $this->mSelectField; |
| 121 | 121 | } |
| 122 | 122 | |
| 123 | - public function setValueTemplate( Array $other_args ) {
|
|
| 123 | + public function setValueTemplate(Array $other_args) {
|
|
| 124 | 124 | $this->mValueTemplate = |
| 125 | - array_key_exists( "sametemplate", $other_args ) ? $this->mSelectTemplate : $other_args["template"]; |
|
| 125 | + array_key_exists("sametemplate", $other_args) ? $this->mSelectTemplate : $other_args["template"];
|
|
| 126 | 126 | $this->mData["valuetemplate"] = $this->mValueTemplate; |
| 127 | 127 | } |
| 128 | 128 | |
| 129 | - public function setValueField( Array $other_args ) {
|
|
| 129 | + public function setValueField(Array $other_args) {
|
|
| 130 | 130 | $this->mValueField = $other_args["field"]; |
| 131 | 131 | $this->mData["valuefield"] = $this->mValueField; |
| 132 | 132 | |
| 133 | 133 | } |
| 134 | 134 | |
| 135 | - public function setSelectRemove( Array $other_args ) {
|
|
| 136 | - $this->mSelectRemove = array_key_exists( 'rmdiv', $other_args ); |
|
| 135 | + public function setSelectRemove(Array $other_args) {
|
|
| 136 | + $this->mSelectRemove = array_key_exists('rmdiv', $other_args);
|
|
| 137 | 137 | $this->mData['selectrm'] = $this->mSelectRemove; |
| 138 | 138 | } |
| 139 | 139 | |
| 140 | - public function setLabel( Array $other_args ) {
|
|
| 141 | - $this->mLabel = array_key_exists( 'label', $other_args ); |
|
| 140 | + public function setLabel(Array $other_args) {
|
|
| 141 | + $this->mLabel = array_key_exists('label', $other_args);
|
|
| 142 | 142 | $this->mData['label'] = $this->mLabel; |
| 143 | 143 | } |
| 144 | 144 | |
@@ -146,15 +146,15 @@ discard block |
||
| 146 | 146 | * setDelimiter |
| 147 | 147 | * @param array $other_args |
| 148 | 148 | */ |
| 149 | - public function setDelimiter( Array $other_args ) {
|
|
| 149 | + public function setDelimiter(Array $other_args) {
|
|
| 150 | 150 | |
| 151 | 151 | $this->mDelimiter = $GLOBALS['wgPageFormsListSeparator']; |
| 152 | 152 | |
| 153 | - if ( array_key_exists( 'sep', $other_args ) ) {
|
|
| 153 | + if (array_key_exists('sep', $other_args)) {
|
|
| 154 | 154 | $this->mDelimiter = $other_args['sep']; |
| 155 | 155 | } else {
|
| 156 | 156 | // Adding Backcompatibility |
| 157 | - if ( array_key_exists( 'delimiter', $other_args ) ) {
|
|
| 157 | + if (array_key_exists('delimiter', $other_args)) {
|
|
| 158 | 158 | $this->mDelimiter = $other_args['delimiter']; |
| 159 | 159 | } |
| 160 | 160 | } |
@@ -174,10 +174,10 @@ discard block |
||
| 174 | 174 | * setValues |
| 175 | 175 | * @param string $values (comma separated, fully parsed list of values) |
| 176 | 176 | */ |
| 177 | - private function setValues( $values ) {
|
|
| 178 | - $values = explode( $this->mDelimiter, $values ); |
|
| 179 | - $values = array_map( "trim", $values ); |
|
| 180 | - $values = array_unique( $values ); |
|
| 177 | + private function setValues($values) {
|
|
| 178 | + $values = explode($this->mDelimiter, $values); |
|
| 179 | + $values = array_map("trim", $values);
|
|
| 180 | + $values = array_unique($values); |
|
| 181 | 181 | $this->mValues = $values; |
| 182 | 182 | } |
| 183 | 183 | |
@@ -185,21 +185,21 @@ discard block |
||
| 185 | 185 | return $this->mHasStaticValues; |
| 186 | 186 | } |
| 187 | 187 | |
| 188 | - private function setHasStaticValues( $StaticValues ) {
|
|
| 188 | + private function setHasStaticValues($StaticValues) {
|
|
| 189 | 189 | $this->mHasStaticValues = $StaticValues; |
| 190 | 190 | } |
| 191 | 191 | |
| 192 | 192 | /** Copied from ApiSemanticFormsSelectRequestProcessor */ |
| 193 | 193 | |
| 194 | - private function getFormattedValuesFrom( $sep, $values ) {
|
|
| 194 | + private function getFormattedValuesFrom($sep, $values) {
|
|
| 195 | 195 | |
| 196 | - if ( strpos( $values, $sep ) === false ) {
|
|
| 197 | - return [ $values ]; |
|
| 196 | + if (strpos($values, $sep) === false) {
|
|
| 197 | + return [$values]; |
|
| 198 | 198 | } |
| 199 | 199 | |
| 200 | - $values = explode( $sep, $values ); |
|
| 201 | - $values = array_map( "trim", $values ); |
|
| 202 | - $values = array_unique( $values ); |
|
| 200 | + $values = explode($sep, $values); |
|
| 201 | + $values = array_map("trim", $values);
|
|
| 202 | + $values = array_unique($values); |
|
| 203 | 203 | |
| 204 | 204 | // TODO: sorting here will destroy any sort defined in the query, e.g. in case sorting for labels (instead of mainlable) |
| 205 | 205 | //sort( $values ); |