Lines Matching refs:this

21         return $this->getMessage();
86 $this->Lexer->addEntryPattern('{{airtable>', $mode, 'plugin_airtable');
90 $this->Lexer->addExitPattern('}}', 'plugin_airtable');
138 define('BASE_ID', $this->getConf('Base_ID'));
139 define('API_KEY', $this->getConf('API_Key'));
140 define('MAX_RECORDS', $this->getConf('Max_Records'));
142 … $display_type = $this->getDisplayType($user_string); //check type is set correctly
146 … $parameter_array = $this->parseTableString($user_string);
147 … $api_response = $this->sendTableRequest($parameter_array);
148 $parameter_array['thumbnails'] = $this->findMedia($api_response);
150 … $html = $this->renderRecord($parameter_array, $api_response['records'][0]);
152 $html = $this->renderTable($parameter_array, $api_response);
156 … $parameter_array = $this->parseRecordString($user_string);
157 … $api_response = $this->sendRecordRequest($parameter_array);
158 $parameter_array['thumbnails'] = $this->findMedia($api_response);
159 … $html = $this->renderRecord($parameter_array, $api_response);
162 $parameter_array = $this->parseImageString($user_string);
163 $api_response = $this->sendRecordRequest($parameter_array);
164 $thumbnails = $this->findMedia($api_response);
168 … $html = $this->renderMedia($parameter_array, $thumbnails, "max-width: 250px;");
171 $parameter_array = $this->parseTextString($user_string);
172 $api_response = $this->sendRecordRequest($parameter_array);
173 … $html = $this->renderText($parameter_array, $api_response);
241 if($image = $this->findMedia($record['fields'][$field])) {
242 $field = $this->renderMedia($parameter_array, $image);
247 …$html .= '<td>' . $this->renderAnyExternalLinks(htmlspecialchars($record['fields'][$field])) . '</…
272 …$html .= $this->renderMedia($parameter_array, $parameter_array['thumbnail…
284 <p>' . $this->renderAnyExternalLinks($api_response['fields'][$field]) . '</p>
343 … $html .= $this->renderAnyExternalLinks(htmlspecialchars($api_response['fields'][$field])) . ' ';
362 return $this->renderImage($data, $media, $media_styles);
365 return $this->renderVideo($media, $media_styles);
393 $table_query = $this->decodeRecordURL($this->getParameters($user_string));
394 … return $this->checkParameters($table_query, $table_parameter_types, $table_parameter_values);
407 $record_query = $this->decodeRecordURL($this->getParameters($user_string));
408 … return $this->checkParameters($record_query, $record_parameter_types, $record_parameter_values);
423 $image_query = $this->decodeRecordURL($this->getParameters($user_string));
424 … return $this->checkParameters($image_query, $image_parameter_types, $image_parameter_values);
438 $text_query = $this->decodeRecordURL($this->getParameters($user_string));
439 return $this->checkParameters($text_query, $text_parameter_types, $text_parameter_values);
684 return $this->sendRequest($request);