.circleci
assets
bin
data
inc
lang
patches
tests
views
admin-pages
base
checkout-forms
customers
edit
display-notes.php
editor-customizer.php
widget-list-table.php
widget-save.php
widget-tabs.php
products
sites
wizard
centered.php
dash.php
edit.php
empty-state.php
filter.php
grid.php
list.php
responsive-table-row.php
settings.php
wizard-body.php
wizard.php
broadcast
checkout
customers
dashboard-statistics
dashboard-widgets
domain
dynamic-styles
email
emails
events
invoice
legacy
limitations
memberships
payments
settings
shortcodes
sites
system-info
taxes
ui
wizards
about.php
admin-notices.php
classes.php
phpcs.xml
.gitignore
.phpcs.xml.dist
LICENSE
composer.json
composer.lock
constants.php
loco.xml
phpunit.xml.dist
readme.txt
sunrise.php
uninstall.php
wp-multisite-waas.php
23 lines
507 B
PHP
23 lines
507 B
PHP
<?php
|
|
/**
|
|
* Save widget view.
|
|
*
|
|
* @since 2.0.0
|
|
*/
|
|
?>
|
|
<?php if (!empty($labels['save_description'])) : ?>
|
|
|
|
<p class="wu-mb-5">
|
|
<?php echo $labels['save_description']; ?>
|
|
</p>
|
|
|
|
<?php endif; ?>
|
|
|
|
<div class="wu-bg-gray-200 wu-p-4 wu--m-3 wu--mt-2 wu-border-t wu-border-l-0 wu-border-r-0 wu-border-b-0 wu-border-gray-400 wu-border-solid">
|
|
|
|
<button type="submit" name="action" value="save" class="button button-primary wu-w-full">
|
|
<?php echo $labels['save_button_label']; ?>
|
|
</button>
|
|
|
|
</div>
|