芝麻web文件管理V1.00
编辑当前文件:/home/mybf1/www/pati.bf1.my/wp-content/plugins/spotlight-social-photo-feeds/modules/UserModule.php
get('is_new_with_feeds')) { /** @var ConfigEntry $dateStarted */ $dateStarted = $c->get('config/date_started'); $dateStarted->setValue(time()); } }); } /** @inerhitDoc */ public function getFactories(): array { return [ 'config/date_started' => new Factory([], function () { return new WpOption('sli_date_started', 0, true, WpOption::SANITIZE_INT); }), 'is_new' => new Factory(['config/date_started', '@feeds/cpt'], function (ConfigEntry $dateStarted, PostType $feeds) { return $dateStarted->getValue() === 0 && $feeds->getTotalNum() === 0; } ), 'is_new_with_feeds' => new Factory(['config/date_started', '@feeds/cpt'], function (ConfigEntry $dateStarted, PostType $feeds) { return $dateStarted->getValue() === 0 && $feeds->getTotalNum() > 0; } ), ]; } /** @inerhitDoc */ public function getExtensions(): array { return [ 'config/entries' => new ArrayExtension([ 'dateStarted' => 'config/date_started', ]), ]; } }