diff --git a/includes/Flows/Flows.php b/includes/Flows/Flows.php index 4b1c1e1..d74943d 100644 --- a/includes/Flows/Flows.php +++ b/includes/Flows/Flows.php @@ -134,19 +134,23 @@ final class Flows { ), 'sitegen' => array( - 'siteDetails' => array( + 'siteDetails' => array( 'name' => '', 'type' => '', 'style' => '', 'prompt' => '', ), - 'siteLogo' => array( + 'siteLogo' => array( 'id' => 0, 'url' => '', ), - 'experience' => array( + 'experience' => array( 'level' => 0, ), + 'siteGenMetaStatus' => array( + 'currentStatus' => 0, + 'totalCount' => 8, + ), ), ); diff --git a/includes/Services/SiteGenService.php b/includes/Services/SiteGenService.php index 6bd48c1..d3d8d4d 100644 --- a/includes/Services/SiteGenService.php +++ b/includes/Services/SiteGenService.php @@ -28,7 +28,6 @@ public static function is_identifier( $key ) { 'sitemap' => true, 'pluginrecommendation' => true, 'fontpair' => true, - 'keywords' => true, ); return isset( $identifiers[ $key ] ); @@ -59,6 +58,8 @@ public static function is_enabled() { public static function instantiate_site_meta( $site_info, $identifier, $skip_cache = false ) { if ( self::is_identifier( $identifier ) ) { + sleep( 8 ); + return 'Imitate Call'; return SiteGen::generate_site_meta( $site_info, $identifier, $skip_cache ); }