_partials
1 day ago
setup
2 weeks ago
staging-site
1 year ago
wordpress-com
3 months ago
confirm-delete.php
2 weeks ago
free-version.php
1 day ago
index.php
4 months ago
listing.php
1 day ago
setup.php
1 day ago
staging-site-list-item.php
1 day ago
index.php
30 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * This views is used in staging site feature. The inner content of this view is changes according to the step of the staging site feature. |
| 5 | * @see src/views/clone/index.php |
| 6 | */ |
| 7 | |
| 8 | use WPStaging\Core\WPStaging; |
| 9 | use WPStaging\Framework\Notices\CliIntegrationNotice; |
| 10 | |
| 11 | // Show CLI integration notice (includes modal when banner is visible) |
| 12 | $cliNotice = WPStaging::make(CliIntegrationNotice::class); |
| 13 | $cliNotice->maybeShowCliNotice(); |
| 14 | |
| 15 | // When banner is dismissed but dock CTA should be shown, render modal separately |
| 16 | $cliNotice->maybeRenderCliModalForDockCta(); |
| 17 | |
| 18 | ?> |
| 19 | |
| 20 | <div id="wpstg-workflow"> |
| 21 | <div class="wpstg-staging-listing-skeleton wpstg-animate-pulse wpstg-py-4"> |
| 22 | <div class="wpstg-space-y-3"> |
| 23 | <div class="wpstg-h-4 wpstg-bg-gray-200 wpstg-rounded wpstg-w-1/4 dark:wpstg-bg-gray-700"></div> |
| 24 | <div class="wpstg-h-3 wpstg-bg-gray-200 wpstg-rounded wpstg-w-full dark:wpstg-bg-gray-700"></div> |
| 25 | <div class="wpstg-h-3 wpstg-bg-gray-200 wpstg-rounded wpstg-w-5/6 dark:wpstg-bg-gray-700"></div> |
| 26 | <div class="wpstg-h-3 wpstg-bg-gray-200 wpstg-rounded wpstg-w-4/5 dark:wpstg-bg-gray-700"></div> |
| 27 | </div> |
| 28 | </div> |
| 29 | </div> |
| 30 |