Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Unbeantwortet
eigene PHP Funktionen aufrufen


Hallo Herr Ehrstein,
um es etwas zu präzisieren, das Ganze müsste so aussehen:

<?php

class className extends JobRouter\Engine\Runtime\PhpFunction\RuleExecutionFunction
{
	public function execute($rowId = null)
	{
		$this->toDo();
	}
	
	private function toDo()
	{
		// do Stuff
		// hier könnte man auch etwas returnen
	}
}
?>

Damit ist zum Einen toDo als Klassenmethode definiert und wird zum Anderen mit $this-> korrekt gecallt (weil $this impliziert, dass eine Methode der aktuellen Klasse gecallt wird).

1
1
Gepostet vor 3 Jahren
Jan Zimmerbeutel
272 × 4 Administrator
669 Ansichten
0 Antworten
vor 3 Jahren
vor 3 Jahren