Home
last modified time | relevance | path

Searched refs:WORD_COUNT (Results 1 – 5 of 5) sorted by relevance

/plugin/combo/db/combo/
H A Dupdate0007.sql4 alter table PAGES add column WORD_COUNT INTEGER;
10 create index if not exists WORD_COUNT ON PAGES (WORD_COUNT);
H A Dupdate0022.sql21 WORD_COUNT INTEGER, field
37 … DATE_CREATED, DATE_PUBLISHED, TYPE, LANG, WORD_COUNT, IS_LOW_QUALITY, DATE_START, DATE_END,
53 WORD_COUNT,
90 create index PAGES_WORD_COUNT_IDX on PAGES (WORD_COUNT);
/plugin/combo/renderer/
H A Danalytics.php137 public const WORD_COUNT = 'word_count'; define in renderer_plugin_combo_analytics
271 $statExport[self::WORD_COUNT] = StringUtility::getWordCount($text);
399 $missingWords = $minimalWordCount - $statExport[self::WORD_COUNT];
407 $tooMuchWords = $statExport[self::WORD_COUNT] - $maximalWordCount;
431 $wordCount = $this->stats[self::WORD_COUNT] ?? 0;
/plugin/combo/
H A Dcli.php420 'words' => $statistics[renderer_plugin_combo_analytics::WORD_COUNT],
/plugin/combo/ComboStrap/
H A DDatabasePageRow.php1287 …nAsArray[renderer_plugin_combo_analytics::STATISTICS][renderer_plugin_combo_analytics::WORD_COUNT];