. * */ namespace Vvveb\Controller\Posts; use Vvveb\Controller\Listing; #[\AllowDynamicProperties] class Index extends Listing { public static $defaultOptions = [ 'page' => ['url', 1], 'post_id' => 'url', 'language_id' => null, 'source' => 'autocomplete', 'type' => 'post', 'site_id' => null, 'start' => null, 'limit' => ['url', 8], 'order_by' => 'post_id', 'direction' => 'desc', 'status' => 'publish', 'excerpt_limit' => 200, 'comment_count' => 1, 'comment_status' => 1, 'taxonomy_item_id' => NULL, 'taxonomy_item_slug' => NULL, 'search' => NULL, 'like' => NULL, 'admin_id' => NULL, //archive 'month' => NULL, 'year' => NULL, 'image_size' => 'medium', 'categories' => null, 'tags' => null, 'taxonomy' => null, 'username' => null, ]; protected $type = 'post'; }