Home
last modified time | relevance | path

Searched refs:record (Results 76 – 100 of 216) sorted by relevance

123456789

/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DErrorLogHandler.php74 protected function write(array $record): void argument
77 error_log((string) $record['formatted'], $this->messageType);
82 $lines = preg_split('{[\r\n]+}', (string) $record['formatted']);
H A DMongoDBHandler.php66 protected function write(array $record): void argument
69 $this->collection->insertOne($record['formatted']);
74 $bulk->insert($record["formatted"]);
H A DNoopHandler.php28 public function isHandling(array $record): bool argument
36 public function handle(array $record): bool argument
H A DFirePHPHandler.php97 $record['formatted']
143 protected function write(array $record): void argument
163 $header = $this->createRecordHeader($record);
H A DHandler.php26 foreach ($records as $record) {
27 $this->handle($record);
H A DSwiftMailerHandler.php87 $record = reset($records);
88 … of Swift_Message or a callable returning it' . ($record ? Utils::getRecordMessageForException($re…
H A DDoctrineCouchDBHandler.php38 protected function write(array $record): void argument
40 $this->client->postDocument($record['formatted']);
H A DGelfHandler.php45 protected function write(array $record): void argument
47 $this->publisher->publish($record['formatted']);
H A DRedisPubSubHandler.php55 protected function write(array $record): void argument
57 $this->redisClient->publish($this->channelKey, $record["formatted"]);
H A DInsightOpsHandler.php72 protected function generateDataStream(array $record): string argument
74 return $this->logToken . ' ' . $record['formatted'];
H A DLogEntriesHandler.php66 protected function generateDataStream(array $record): string argument
68 return $this->logToken . ' ' . $record['formatted'];
H A DAbstractHandler.php51 public function isHandling(array $record): bool argument
53 return $record['level'] >= $this->level;
H A DRotatingFileHandler.php113 protected function write(array $record): void argument
120 if ($this->nextRotation <= $record['datetime']) {
125 parent::write($record);
/plugin/authorstats/
H A Daction.php159 $record = array();
162 $record["timestamp"] = $parts[0];
163 $record["type"] = $parts[2];
164 $record["author"] = $parts[4];
165 $record["date"] = date("Ym", $parts[0]);
167 return $record;
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DFormatterInterface.php26 * @param array $record A record to format
31 public function format(array $record); argument
H A DMongoDBFormatter.php49 public function format(array $record): array argument
52 $res = $this->formatArray($record);
65 foreach ($records as $key => $record) {
66 $formatted[$key] = $this->format($record);
H A DNormalizerFormatter.php51 * @param mixed[] $record
53 public function format(array $record) argument
55 return $this->normalize($record);
63 foreach ($records as $key => $record) {
64 $records[$key] = $this->format($record);
H A DScalarFormatter.php27 public function format(array $record): array argument
30 foreach ($record as $key => $value) {
H A DLineFormatter.php79 public function format(array $record): string argument
81 $vars = parent::format($record);
132 foreach ($records as $record) {
133 $message .= $this->format($record);
/plugin/sqlite/_test/
H A DSQLiteDBTest.php107 $record = [
113 $newrecord = $db->saveRecord('testdata', $record, false);
116 $newrecord = $db->saveRecord('testdata', $record, true);
117 $this->assertEquals($record, $newrecord);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/
H A DErrorLevelActivationStrategy.php42 public function isHandlerActivated(array $record): bool argument
44 return $record['level'] >= $this->actionLevel;
/plugin/airtable/
H A Dstyle.css13 .airtable-record {
18 .airtable-record h3 {
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Test/
H A DTestCase.php68 ->will($this->returnCallback(function ($record) {
69 return $record['message'];
/plugin/quickstats/
H A Daction.php111 $record = $reader->city('138.201.137.132');
112 msg($record->country->isoCode); // 'DE'
113 msg($record->country->name); // 'Germany'
115 $record = $reader->city($ip);
116 msg($record->country->isoCode); // 'NL'
117 msg($record->country->name); // 'Netherlands'
548 $record = $reader->city($ip);
549 … return (array('code'=>$record->country->isoCode,'name'=>$record->country->name));
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/ext/
H A Dmaxminddb.c83 get_record(INTERNAL_FUNCTION_PARAMETERS, zval *record, int *prefix_len);
192 zval *record, *z_prefix_len; in PHP_METHOD() local
195 record = &_record; in PHP_METHOD()
198 ALLOC_INIT_ZVAL(record); in PHP_METHOD()
203 get_record(INTERNAL_FUNCTION_PARAM_PASSTHRU, record, &prefix_len); in PHP_METHOD()
206 add_next_index_zval(return_value, record); in PHP_METHOD()
213 get_record(INTERNAL_FUNCTION_PARAMETERS, zval *record, int *prefix_len) { in get_record() argument
292 ZVAL_NULL(record); in get_record()
314 handle_entry_data_list(entry_data_list, record TSRMLS_CC); in get_record()

123456789