Remove AntKeywords, minor formatting changes

This commit is contained in:
Belle Aerni 2023-05-13 13:08:33 -07:00
parent 95c2774222
commit d03ec564f6
4 changed files with 7 additions and 44 deletions

View file

@ -1,37 +0,0 @@
<?php
namespace AntCMS;
use AntCMS\AntCache;
use AntCMS\AntConfig;
use DonatelloZa\RakePlus\RakePlus;
class AntKeywords
{
/**
* @return string
*/
public function generateKeywords(string $content = '', int $count = 15)
{
$antCache = new AntCache();
$cacheKey = $antCache->createCacheKey($content, 'keywords');
if (!AntConfig::currentConfig('generateKeywords')) {
return '';
}
if ($antCache->isCached($cacheKey)) {
$cachedKeywords = $antCache->getCache($cacheKey);
if ($cachedKeywords !== false && !empty($cachedKeywords)) {
return $cachedKeywords;
}
}
$keywords = RakePlus::create($content, 'en_US', $count)->keywords();
$keywords = implode(",", $keywords);
$antCache->setCache($cacheKey, $keywords);
return $keywords;
}
}