Lines Matching refs:user_string
141 $user_string = $match;
142 … $display_type = $this->getDisplayType($user_string); //check type is set correctly
146 … $parameter_array = $this->parseTableString($user_string);
156 … $parameter_array = $this->parseRecordString($user_string);
162 $parameter_array = $this->parseImageString($user_string);
171 $parameter_array = $this->parseTextString($user_string);
390 function parseTableString($user_string): array { argument
393 $table_query = $this->decodeRecordURL($this->getParameters($user_string));
404 function parseRecordString($user_string): array { argument
407 $record_query = $this->decodeRecordURL($this->getParameters($user_string));
420 function parseImageString($user_string): array { argument
423 $image_query = $this->decodeRecordURL($this->getParameters($user_string));
435 function parseTextString($user_string): array { argument
438 $text_query = $this->decodeRecordURL($this->getParameters($user_string));
450 function getDisplayType($user_string): string { argument
451 $type = substr($user_string, 0, strpos($user_string, " | "));
488 function getParameters(string $user_string): array { argument
490 $string_array = explode(' | ', $user_string);