├── assets ├── js │ ├── vue │ │ └── index.php │ ├── index.php │ └── select2 │ │ └── index.php ├── index.php ├── css │ ├── index.php │ └── select2 │ │ └── index.php └── images │ ├── index.php │ ├── favicon.ico │ ├── getpaid-logo.png │ ├── pp-logo-150px.webp │ ├── Quotes-1-768x384.png │ ├── ui-icons_21759b_256x240.png │ ├── ui-icons_333333_256x240.png │ ├── ui-icons_999999_256x240.png │ ├── ui-icons_cc0000_256x240.png │ └── GetPaid.svg ├── includes ├── api │ └── index.php ├── data │ ├── index.php │ ├── sample-payment-form-items.php │ └── eu-states.php ├── admin │ ├── views │ │ └── index.php │ ├── index.php │ └── meta-boxes │ │ └── index.php ├── libraries │ ├── wp-all-import │ │ └── index.php │ └── index.php ├── index.php ├── gateways │ └── index.php ├── payments │ └── index.php ├── reports │ └── index.php ├── geolocation │ └── index.php └── images │ ├── t-image1.png │ └── t-image2.png ├── templates ├── invoice │ ├── index.php │ ├── invoice-type.php │ ├── footer.php │ ├── header.php │ ├── details.php │ └── details-top.php ├── subscriptions │ └── index.php ├── index.php ├── emails │ ├── index.php │ ├── wpinv-email-subscription_active.php │ ├── wpinv-email-renewal_reminder.php │ ├── wpinv-email-subscription_cancelled.php │ ├── wpinv-email-subscription_expired.php │ ├── wpinv-email-subscription_trial.php │ ├── wpinv-email-subscription_complete.php │ ├── wpinv-email-overdue.php │ ├── wpinv-email-new_invoice.php │ ├── wpinv-email-user_invoice.php │ ├── wpinv-email-failed_invoice.php │ ├── wpinv-email-onhold_invoice.php │ ├── wpinv-email-refunded_invoice.php │ ├── wpinv-email-cancelled_invoice.php │ ├── wpinv-email-completed_invoice.php │ ├── wpinv-email-processing_invoice.php │ └── wpinv-email-user_note.php ├── payment-forms │ ├── index.php │ ├── elements │ │ ├── index.php │ │ ├── protected.php │ │ ├── separator.php │ │ ├── paragraph.php │ │ ├── heading.php │ │ ├── total_payable.php │ │ ├── ip_address.php │ │ ├── alert.php │ │ ├── checkbox.php │ │ ├── textarea.php │ │ ├── text.php │ │ ├── time.php │ │ └── email.php │ └── variations │ │ └── index.php ├── payment-forms-admin │ ├── index.php │ ├── edit │ │ ├── index.php │ │ ├── ip_address.php │ │ ├── total_payable.php │ │ ├── gateway_select.php │ │ └── paragraph.php │ └── previews │ │ ├── index.php │ │ ├── separator.php │ │ ├── heading.php │ │ ├── paragraph.php │ │ ├── gateway_select.php │ │ ├── ip_address.php │ │ ├── total_payable.php │ │ ├── pay_button.php │ │ ├── time.php │ │ ├── billing_email.php │ │ ├── date.php │ │ ├── items.php │ │ ├── email.php │ │ ├── text.php │ │ ├── website.php │ │ ├── number.php │ │ ├── textarea.php │ │ ├── checkbox.php │ │ ├── alert.php │ │ ├── discount.php │ │ ├── select.php │ │ ├── radio.php │ │ └── file_upload.php ├── wpinv-payment-processing.php └── frontend-footer.php ├── index.php ├── languages ├── index.php └── invoicing-en_US.mo ├── vendor ├── ayecode │ ├── wp-ayecode-ui │ │ ├── assets-v5 │ │ │ └── scss │ │ │ │ ├── components │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _progress.scss │ │ │ │ ├── _close.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _input-group.scss │ │ │ │ ├── _alert.scss │ │ │ │ ├── _image-swap.scss │ │ │ │ ├── _star-rating.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _overlay.scss │ │ │ │ └── _breadcrumb.scss │ │ │ │ ├── bootstrap-changes.txt │ │ │ │ ├── 1-frameworks │ │ │ │ ├── bootstrap │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ │ ├── _text-truncation.scss │ │ │ │ │ │ ├── _vr.scss │ │ │ │ │ │ ├── _visually-hidden.scss │ │ │ │ │ │ ├── _stretched-link.scss │ │ │ │ │ │ ├── _stacks.scss │ │ │ │ │ │ ├── _color-bg.scss │ │ │ │ │ │ ├── _colored-links.scss │ │ │ │ │ │ ├── _ratio.scss │ │ │ │ │ │ └── _position.scss │ │ │ │ │ ├── mixins │ │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ │ ├── _lists.scss │ │ │ │ │ │ ├── _color-scheme.scss │ │ │ │ │ │ ├── _text-truncate.scss │ │ │ │ │ │ ├── _resize.scss │ │ │ │ │ │ ├── _banner.scss │ │ │ │ │ │ ├── _backdrop.scss │ │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ │ ├── _alert.scss │ │ │ │ │ │ ├── _container.scss │ │ │ │ │ │ ├── _image.scss │ │ │ │ │ │ ├── _box-shadow.scss │ │ │ │ │ │ ├── _reset-text.scss │ │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ │ ├── _deprecate.scss │ │ │ │ │ │ └── _transition.scss │ │ │ │ │ ├── bootstrap-reboot.scss │ │ │ │ │ ├── forms │ │ │ │ │ │ ├── _form-text.scss │ │ │ │ │ │ └── _validation.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── bootstrap-utilities.scss │ │ │ │ │ ├── _helpers.scss │ │ │ │ │ ├── _transitions.scss │ │ │ │ │ └── _grid.scss │ │ │ │ ├── _index.scss │ │ │ │ └── select2 │ │ │ │ │ ├── theme │ │ │ │ │ ├── _include-all.scss │ │ │ │ │ ├── select2-bootstrap-5-theme.scss │ │ │ │ │ └── _single.scss │ │ │ │ │ ├── _single.scss │ │ │ │ │ └── _multiple.scss │ │ │ │ ├── partials │ │ │ │ ├── _icons.scss │ │ │ │ ├── _bs4.scss │ │ │ │ ├── _background_shadow.scss │ │ │ │ ├── _compatibility.scss │ │ │ │ ├── _manual_vendor_prefix.scss │ │ │ │ ├── _background.scss │ │ │ │ ├── _borders.scss │ │ │ │ ├── _alerts.scss │ │ │ │ ├── _hover_content.scss │ │ │ │ ├── _inputs.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _overflow.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── _iconbox.scss │ │ │ │ ├── _animations.scss │ │ │ │ └── _hover_effects.scss │ │ │ │ └── ayecode-ui.scss │ │ └── assets │ │ │ └── scss │ │ │ ├── 1-frameworks │ │ │ ├── bootstrap │ │ │ │ ├── utilities │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _overflow.scss │ │ │ │ │ ├── _interactions.scss │ │ │ │ │ ├── _screenreaders.scss │ │ │ │ │ ├── _visibility.scss │ │ │ │ │ ├── _shadows.scss │ │ │ │ │ ├── _float.scss │ │ │ │ │ ├── _align.scss │ │ │ │ │ ├── _text-rtl.scss │ │ │ │ │ ├── _background.scss │ │ │ │ │ ├── _stretched-link.scss │ │ │ │ │ ├── _sizing.scss │ │ │ │ │ ├── _position.scss │ │ │ │ │ ├── _display.scss │ │ │ │ │ └── _embed.scss │ │ │ │ ├── _media.scss │ │ │ │ ├── mixins │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _size.scss │ │ │ │ │ ├── _lists.scss │ │ │ │ │ ├── _lists-rtl.scss │ │ │ │ │ ├── _text-truncate.scss │ │ │ │ │ ├── _visibility.scss │ │ │ │ │ ├── _resize.scss │ │ │ │ │ ├── _alert.scss │ │ │ │ │ ├── _text-hide.scss │ │ │ │ │ ├── _badge.scss │ │ │ │ │ ├── _nav-divider.scss │ │ │ │ │ ├── _float.scss │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ ├── _text-emphasis.scss │ │ │ │ │ ├── _reset-text.scss │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ ├── _reset-text-rtl.scss │ │ │ │ │ ├── _pagination-rtl.scss │ │ │ │ │ ├── _box-shadow.scss │ │ │ │ │ ├── _deprecate.scss │ │ │ │ │ ├── _transition.scss │ │ │ │ │ ├── _background-variant.scss │ │ │ │ │ ├── _hover.scss │ │ │ │ │ ├── _table-row.scss │ │ │ │ │ └── _screen-reader.scss │ │ │ │ ├── bootstrap-reboot.scss │ │ │ │ ├── _jumbotron.scss │ │ │ │ ├── _transitions.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── bootstrap-reboot-rtl.scss │ │ │ │ ├── _root.scss │ │ │ │ ├── bootstrap-grid.scss │ │ │ │ └── bootstrap-grid-rtl.scss │ │ │ ├── _index.scss │ │ │ ├── _index-rtl.scss │ │ │ └── select2 │ │ │ │ ├── _single.scss │ │ │ │ └── _multiple.scss │ │ │ ├── partials │ │ │ ├── _inputs.scss │ │ │ ├── _background_shadow.scss │ │ │ ├── _compatibility.scss │ │ │ ├── _manual_vendor_prefix.scss │ │ │ ├── _nav.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _alerts.scss │ │ │ ├── _hover_content.scss │ │ │ ├── _badge.scss │ │ │ ├── _iconbox.scss │ │ │ ├── _overflow.scss │ │ │ ├── _index.scss │ │ │ ├── _animations.scss │ │ │ └── _hover_effects.scss │ │ │ ├── ayecode-ui.scss │ │ │ ├── ayecode-ui-rtl.scss │ │ │ ├── bootstrap-changes.txt │ │ │ ├── ayecode-ui-compatibility.scss │ │ │ ├── ayecode-ui-fse.scss │ │ │ └── ayecode-ui-compatibility-rtl.scss │ ├── wp-super-duper │ │ ├── includes │ │ │ └── index.php │ │ ├── icons │ │ │ └── placeholder.png │ │ └── sd-plugin.php │ └── wp-deactivation-survey │ │ └── change-log.txt ├── composer │ ├── autoload_namespaces.php │ ├── installers │ │ ├── src │ │ │ ├── Composer │ │ │ │ └── Installers │ │ │ │ │ ├── ElggInstaller.php │ │ │ │ │ ├── PPIInstaller.php │ │ │ │ │ ├── CiviCrmInstaller.php │ │ │ │ │ ├── KohanaInstaller.php │ │ │ │ │ ├── SyliusInstaller.php │ │ │ │ │ ├── AimeosInstaller.php │ │ │ │ │ ├── AttogramInstaller.php │ │ │ │ │ ├── ItopInstaller.php │ │ │ │ │ ├── LaravelInstaller.php │ │ │ │ │ ├── MakoInstaller.php │ │ │ │ │ ├── FuelphpInstaller.php │ │ │ │ │ ├── MiaoxingInstaller.php │ │ │ │ │ ├── PortoInstaller.php │ │ │ │ │ ├── WolfCMSInstaller.php │ │ │ │ │ ├── MODULEWorkInstaller.php │ │ │ │ │ ├── PuppetInstaller.php │ │ │ │ │ ├── BonefishInstaller.php │ │ │ │ │ ├── DframeInstaller.php │ │ │ │ │ ├── UserFrostingInstaller.php │ │ │ │ │ ├── DecibelInstaller.php │ │ │ │ │ ├── SMFInstaller.php │ │ │ │ │ ├── KodiCMSInstaller.php │ │ │ │ │ ├── PrestashopInstaller.php │ │ │ │ │ ├── ReIndexInstaller.php │ │ │ │ │ ├── VanillaInstaller.php │ │ │ │ │ ├── ClanCatsFrameworkInstaller.php │ │ │ │ │ ├── ChefInstaller.php │ │ │ │ │ ├── LithiumInstaller.php │ │ │ │ │ ├── ZikulaInstaller.php │ │ │ │ │ ├── LavaLiteInstaller.php │ │ │ │ │ ├── EzPlatformInstaller.php │ │ │ │ │ ├── ModxInstaller.php │ │ │ │ │ ├── ZendInstaller.php │ │ │ │ │ ├── PhiftyInstaller.php │ │ │ │ │ ├── Redaxo5Installer.php │ │ │ │ │ ├── KirbyInstaller.php │ │ │ │ │ ├── PhpBBInstaller.php │ │ │ │ │ ├── RedaxoInstaller.php │ │ │ │ │ ├── KnownInstaller.php │ │ │ │ │ ├── FuelInstaller.php │ │ │ │ │ ├── MagentoInstaller.php │ │ │ │ │ ├── AnnotateCmsInstaller.php │ │ │ │ │ ├── ImageCMSInstaller.php │ │ │ │ │ ├── PantheonInstaller.php │ │ │ │ │ ├── EliasisInstaller.php │ │ │ │ │ ├── OsclassInstaller.php │ │ │ │ │ ├── StarbugInstaller.php │ │ │ │ │ ├── CodeIgniterInstaller.php │ │ │ │ │ ├── KanboardInstaller.php │ │ │ │ │ ├── WordPressInstaller.php │ │ │ │ │ ├── Concrete5Installer.php │ │ │ │ │ ├── DolibarrInstaller.php │ │ │ │ │ ├── TheliaInstaller.php │ │ │ │ │ ├── TYPO3CmsInstaller.php │ │ │ │ │ ├── TuskInstaller.php │ │ │ │ │ ├── JoomlaInstaller.php │ │ │ │ │ ├── AglInstaller.php │ │ │ │ │ ├── MODXEvoInstaller.php │ │ │ │ │ ├── RoundcubeInstaller.php │ │ │ │ │ ├── CroogoInstaller.php │ │ │ │ │ ├── PimcoreInstaller.php │ │ │ │ │ ├── ProcessWireInstaller.php │ │ │ │ │ ├── Symfony1Installer.php │ │ │ │ │ ├── MantisBTInstaller.php │ │ │ │ │ ├── Plugin.php │ │ │ │ │ ├── RadPHPInstaller.php │ │ │ │ │ ├── SiteDirectInstaller.php │ │ │ │ │ ├── CockpitInstaller.php │ │ │ │ │ ├── HuradInstaller.php │ │ │ │ │ ├── YawikInstaller.php │ │ │ │ │ ├── OntoWikiInstaller.php │ │ │ │ │ ├── GravInstaller.php │ │ │ │ │ ├── PiwikInstaller.php │ │ │ │ │ ├── PlentymarketsInstaller.php │ │ │ │ │ ├── LanManagementSystemInstaller.php │ │ │ │ │ ├── ExpressionEngineInstaller.php │ │ │ │ │ ├── TaoInstaller.php │ │ │ │ │ ├── WHMCSInstaller.php │ │ │ │ │ ├── MayaInstaller.php │ │ │ │ │ ├── DrupalInstaller.php │ │ │ │ │ ├── CraftInstaller.php │ │ │ │ │ ├── MajimaInstaller.php │ │ │ │ │ └── TastyIgniterInstaller.php │ │ │ └── bootstrap.php │ │ ├── phpstan.neon.dist │ │ └── .github │ │ │ └── workflows │ │ │ └── lint.yml │ ├── autoload_psr4.php │ ├── autoload_files.php │ ├── autoload_classmap.php │ └── platform_check.php ├── maxmind-db │ └── reader │ │ ├── ext │ │ ├── tests │ │ │ ├── 001-load.phpt │ │ │ ├── 003-open-basedir.phpt │ │ │ └── 002-final.phpt │ │ └── php_maxminddb.h │ │ └── src │ │ └── MaxMind │ │ └── Db │ │ └── Reader │ │ ├── InvalidDatabaseException.php │ │ └── Util.php └── autoload.php ├── db-language.php ├── language.php └── .distignore /assets/js/vue/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/api/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/data/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/invoice/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/admin/views/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/subscriptions/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/libraries/wp-all-import/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | * { display: inline-block; } -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/partials/_compatibility.scss: -------------------------------------------------------------------------------- 1 | // flatpicker year picker can sometimes be hidden on some themes. 2 | .flatpickr-month .flatpickr-current-month > * { display: inline-block; } -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/_index-rtl.scss: -------------------------------------------------------------------------------- 1 | @import 'bootstrap/bootstrap-user-variables'; 2 | @import 'bootstrap/bootstrap-rtl'; 3 | @import 'fontawesome-iconpicker/fontawesome-iconpicker'; -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | 2 |

Your purchase is protected.

3 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/components/_progress.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Progress 3 | // -------------------------------------------------- 4 | 5 | 6 | // Light version 7 | 8 | .progress.progress-light { background-color: $progress-light-bg; } 9 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/partials/_manual_vendor_prefix.scss: -------------------------------------------------------------------------------- 1 | /* 2 | SCSS is not using the Autoprefixer so we add what we need manually for now. 3 | */ 4 | .custom-select{ 5 | -webkit-appearance: none; 6 | -moz-appearance: none; 7 | } -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | @mixin size($width, $height: $width) { 4 | width: $width; 5 | height: $height; 6 | @include deprecate("`size()`", "v4.3.0", "v5"); 7 | } 8 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/utilities/_interactions.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @each $value in $user-selects { 4 | .user-select-#{$value} { user-select: $value !important; } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/helpers/_vr.scss: -------------------------------------------------------------------------------- 1 | .vr { 2 | display: inline-block; 3 | align-self: stretch; 4 | width: 1px; 5 | min-height: 1em; 6 | background-color: currentcolor; 7 | opacity: $hr-opacity; 8 | } 9 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/helpers/_visually-hidden.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Visually hidden 3 | // 4 | 5 | .visually-hidden, 6 | .visually-hidden-focusable:not(:focus):not(:focus-within) { 7 | @include visually-hidden(); 8 | } 9 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Screenreaders 3 | // 4 | 5 | .sr-only { 6 | @include sr-only(); 7 | } 8 | 9 | .sr-only-focusable { 10 | @include sr-only-focusable(); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ElggInstaller.php: -------------------------------------------------------------------------------- 1 | 'mod/{$name}/', 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PPIInstaller.php: -------------------------------------------------------------------------------- 1 | 'modules/{$name}/', 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start clearfix 2 | @mixin clearfix() { 3 | &::after { 4 | display: block; 5 | clear: both; 6 | content: ""; 7 | } 8 | } 9 | // scss-docs-end clearfix 10 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/mixins/_lists.scss: -------------------------------------------------------------------------------- 1 | // Lists 2 | 3 | // Unstyled keeps list items block level, just removes default browser padding and list-style 4 | @mixin list-unstyled { 5 | padding-left: 0; 6 | list-style: none; 7 | } 8 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/mixins/_lists.scss: -------------------------------------------------------------------------------- 1 | // Lists 2 | 3 | // Unstyled keeps list items block level, just removes default browser padding and list-style 4 | @mixin list-unstyled() { 5 | padding-left: 0; 6 | list-style: none; 7 | } 8 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php: -------------------------------------------------------------------------------- 1 | 'ext/{$name}/' 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php: -------------------------------------------------------------------------------- 1 | 'modules/{$name}/', 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/SyliusInstaller.php: -------------------------------------------------------------------------------- 1 | 'themes/{$name}/', 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/mixins/_color-scheme.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start mixin-color-scheme 2 | @mixin color-scheme($name) { 3 | @media (prefers-color-scheme: #{$name}) { 4 | @content; 5 | } 6 | } 7 | // scss-docs-end mixin-color-scheme 8 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php: -------------------------------------------------------------------------------- 1 | 'ext/{$name}/', 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php: -------------------------------------------------------------------------------- 1 | 'modules/{$name}/', 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ItopInstaller.php: -------------------------------------------------------------------------------- 1 | 'extensions/{$name}/', 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php: -------------------------------------------------------------------------------- 1 | 'libraries/{$name}/', 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MakoInstaller.php: -------------------------------------------------------------------------------- 1 | 'app/packages/{$name}/', 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- 1 | // Text truncate 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-truncate() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/mixins/_lists-rtl.scss: -------------------------------------------------------------------------------- 1 | // Lists 2 | 3 | // Unstyled keeps list items block level, just removes default browser padding and list-style 4 | @mixin list-unstyled() { 5 | padding-right: 0; //rtl 6 | list-style: none; 7 | } 8 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- 1 | // Text truncate 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-truncate() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php: -------------------------------------------------------------------------------- 1 | 'components/{$name}/', 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MiaoxingInstaller.php: -------------------------------------------------------------------------------- 1 | 'plugins/{$name}/', 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PortoInstaller.php: -------------------------------------------------------------------------------- 1 | 'app/Containers/{$name}/', 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php: -------------------------------------------------------------------------------- 1 | 'wolf/plugins/{$name}/', 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/bootstrap-reboot.scss: -------------------------------------------------------------------------------- 1 | @import "mixins/banner"; 2 | @include bsBanner(Reboot); 3 | 4 | @import "functions"; 5 | @import "variables"; 6 | @import "maps"; 7 | @import "mixins"; 8 | @import "root"; 9 | @import "reboot"; 10 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php: -------------------------------------------------------------------------------- 1 | 'modules/{$name}/', 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php: -------------------------------------------------------------------------------- 1 | 'modules/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php: -------------------------------------------------------------------------------- 1 | 'Packages/{$vendor}/{$name}/' 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/DframeInstaller.php: -------------------------------------------------------------------------------- 1 | 'modules/{$vendor}/{$name}/', 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php: -------------------------------------------------------------------------------- 1 | 'app/sprinkles/{$name}/', 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/mixins/_visibility.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Visibility 4 | 5 | @mixin invisible($visibility) { 6 | visibility: $visibility !important; 7 | @include deprecate("`invisible()`", "v4.3.0", "v5"); 8 | } 9 | -------------------------------------------------------------------------------- /vendor/composer/installers/phpstan.neon.dist: -------------------------------------------------------------------------------- 1 | parameters: 2 | level: 5 3 | paths: 4 | - src 5 | - tests 6 | excludes_analyse: 7 | - tests/Composer/Installers/Test/PolyfillTestCase.php 8 | 9 | includes: 10 | - vendor/phpstan/phpstan-phpunit/extension.neon 11 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php: -------------------------------------------------------------------------------- 1 | 'app/{$name}/', 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /includes/data/sample-payment-form-items.php: -------------------------------------------------------------------------------- 1 | 'Sources/{$name}/', 8 | 'theme' => 'Themes/{$name}/', 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/select2/theme/select2-bootstrap-5-theme.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Select2 v4 Bootstrap 5 theme v1.3.0 3 | */ 4 | 5 | @import "../../bootstrap/functions"; 6 | @import "../../bootstrap/variables"; 7 | @import "../../bootstrap/mixins"; 8 | 9 | @import "include-all"; 10 | -------------------------------------------------------------------------------- /vendor/maxmind-db/reader/ext/tests/001-load.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Check for maxminddb presence 3 | --SKIPIF-- 4 | 7 | --FILE-- 8 | 11 | --EXPECT-- 12 | maxminddb extension is available 13 | -------------------------------------------------------------------------------- /vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php: -------------------------------------------------------------------------------- 1 | 'cms/plugins/{$name}/', 8 | 'media' => 'cms/media/vendor/{$name}/' 9 | ); 10 | } -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php: -------------------------------------------------------------------------------- 1 | 'modules/{$name}/', 8 | 'theme' => 'themes/{$name}/', 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php: -------------------------------------------------------------------------------- 1 | 'themes/{$name}/', 8 | 'plugin' => 'plugins/{$name}/' 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php: -------------------------------------------------------------------------------- 1 | 'plugins/{$name}/', 8 | 'theme' => 'themes/{$name}/', 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/partials/_borders.scss: -------------------------------------------------------------------------------- 1 | // border widths 2 | .border-width-1{ border-width: 1px !important;} 3 | .border-width-2{ border-width: 2px !important;} 4 | .border-width-3{ border-width: 3px !important;} 5 | .border-width-4{ border-width: 4px !important;} 6 | .border-width-5{ border-width: 5px !important;} -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/ayecode-ui-rtl.scss: -------------------------------------------------------------------------------- 1 | // 1- Import bootstrap framework 2 | @import '1-frameworks/index-rtl'; //https://github.com/PerseusTheGreat/bootstrap-4-rtl 3 | @import "main"; 4 | @import "partials/index"; // helpers 5 | 6 | // select2 can't be inside wrapper 7 | @import '1-frameworks/select2/core'; 8 | 9 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/partials/_borders.scss: -------------------------------------------------------------------------------- 1 | // border widths 2 | .border-width-1{ border-width: 1px !important;} 3 | .border-width-2{ border-width: 2px !important;} 4 | .border-width-3{ border-width: 3px !important;} 5 | .border-width-4{ border-width: 4px !important;} 6 | .border-width-5{ border-width: 5px !important;} -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php: -------------------------------------------------------------------------------- 1 | 'CCF/orbit/{$name}/', 8 | 'theme' => 'CCF/app/themes/{$name}/', 9 | ); 10 | } -------------------------------------------------------------------------------- /vendor/maxmind-db/reader/ext/tests/003-open-basedir.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | openbase_dir is followed 3 | --INI-- 4 | open_basedir=/--dne-- 5 | --FILE-- 6 | 11 | --EXPECTREGEX-- 12 | .*open_basedir restriction in effect.* 13 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-deactivation-survey/change-log.txt: -------------------------------------------------------------------------------- 1 | = 1.0.7 - 2023-12-14 = 2 | * Update textdomain - CHANGED 3 | 4 | = 1.0.6 = 5 | * changed remodal data attribute which was causing issue with shareaholic plugin - CHANGED 6 | 7 | = 1.0.4 = 8 | * Added option for difficult to design - ADDED 9 | 10 | = 1.0.3 = 11 | * Initial release -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ChefInstaller.php: -------------------------------------------------------------------------------- 1 | 'Chef/{$vendor}/{$name}/', 8 | 'role' => 'Chef/roles/{$name}/', 9 | ); 10 | } 11 | 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php: -------------------------------------------------------------------------------- 1 | 'libraries/{$name}/', 8 | 'source' => 'libraries/_source/{$name}/', 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php: -------------------------------------------------------------------------------- 1 | 'modules/{$vendor}-{$name}/', 8 | 'theme' => 'themes/{$vendor}-{$name}/' 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/partials/_alerts.scss: -------------------------------------------------------------------------------- 1 | // alert links might be styled the same color as the background 2 | .alert{ 3 | a{ 4 | color: inherit; 5 | text-decoration: underline; 6 | &:hover{ 7 | color: inherit; 8 | text-decoration: underline; 9 | opacity: 0.9; 10 | } 11 | } 12 | 13 | } -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php: -------------------------------------------------------------------------------- 1 | 'packages/{$vendor}/{$name}/', 8 | 'theme' => 'public/themes/{$name}/', 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/partials/_alerts.scss: -------------------------------------------------------------------------------- 1 | // alert links might be styled the same color as the background 2 | .alert{ 3 | a{ 4 | color: inherit; 5 | text-decoration: underline; 6 | &:hover{ 7 | color: inherit; 8 | text-decoration: underline; 9 | opacity: 0.9; 10 | } 11 | } 12 | 13 | } -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/forms/_form-text.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Form text 3 | // 4 | 5 | .form-text { 6 | margin-top: $form-text-margin-top; 7 | @include font-size($form-text-font-size); 8 | font-style: $form-text-font-style; 9 | font-weight: $form-text-font-weight; 10 | color: $form-text-color; 11 | } 12 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/utilities/_shadows.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | .shadow-sm { box-shadow: $box-shadow-sm !important; } 4 | .shadow { box-shadow: $box-shadow !important; } 5 | .shadow-lg { box-shadow: $box-shadow-lg !important; } 6 | .shadow-none { box-shadow: none !important; } 7 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php: -------------------------------------------------------------------------------- 1 | 'web/assets/ezplatform/', 8 | 'assets' => 'web/assets/ezplatform/{$name}/', 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /templates/payment-forms/elements/separator.php: -------------------------------------------------------------------------------- 1 | 12 |
13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ModxInstaller.php: -------------------------------------------------------------------------------- 1 | 'core/packages/{$name}/' 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ZendInstaller.php: -------------------------------------------------------------------------------- 1 | 'library/{$name}/', 8 | 'extra' => 'extras/library/{$name}/', 9 | 'module' => 'module/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/_forms.scss: -------------------------------------------------------------------------------- 1 | @import "forms/labels"; 2 | @import "forms/form-text"; 3 | @import "forms/form-control"; 4 | @import "forms/form-select"; 5 | @import "forms/form-check"; 6 | @import "forms/form-range"; 7 | @import "forms/floating-labels"; 8 | @import "forms/input-group"; 9 | @import "forms/validation"; 10 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/partials/_hover_content.scss: -------------------------------------------------------------------------------- 1 | // buttons 2 | .hover-content{ 3 | display: none; 4 | &.fas{ 5 | display: none; 6 | } 7 | } 8 | 9 | .btn,.badge,.hover-swap{ 10 | &:hover{ 11 | .hover-content{ 12 | display: initial; 13 | } 14 | .hover-content-original{ 15 | display: none; 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php: -------------------------------------------------------------------------------- 1 | 'bundles/{$name}/', 8 | 'library' => 'libraries/{$name}/', 9 | 'framework' => 'frameworks/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/Redaxo5Installer.php: -------------------------------------------------------------------------------- 1 | 'redaxo/src/addons/{$name}/', 8 | 'bestyle-plugin' => 'redaxo/src/addons/be_style/plugins/{$name}/' 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /vendor/maxmind-db/reader/ext/tests/002-final.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Check that Reader class is not final 3 | --SKIPIF-- 4 | 7 | --FILE-- 8 | isFinal()); 11 | ?> 12 | --EXPECT-- 13 | bool(false) 14 | -------------------------------------------------------------------------------- /language.php: -------------------------------------------------------------------------------- 1 | 'site/plugins/{$name}/', 8 | 'field' => 'site/fields/{$name}/', 9 | 'tag' => 'site/tags/{$name}/' 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php: -------------------------------------------------------------------------------- 1 | 'ext/{$vendor}/{$name}/', 8 | 'language' => 'language/{$name}/', 9 | 'style' => 'styles/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php: -------------------------------------------------------------------------------- 1 | 'redaxo/include/addons/{$name}/', 8 | 'bestyle-plugin' => 'redaxo/include/addons/be_style/plugins/{$name}/' 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/mixins/_alert.scss: -------------------------------------------------------------------------------- 1 | @mixin alert-variant($background, $border, $color) { 2 | color: $color; 3 | @include gradient-bg($background); 4 | border-color: $border; 5 | 6 | hr { 7 | border-top-color: darken($border, 5%); 8 | } 9 | 10 | .alert-link { 11 | color: darken($color, 10%); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/KnownInstaller.php: -------------------------------------------------------------------------------- 1 | 'IdnoPlugins/{$name}/', 8 | 'theme' => 'Themes/{$name}/', 9 | 'console' => 'ConsolePlugins/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/helpers/_stretched-link.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Stretched link 3 | // 4 | 5 | .stretched-link { 6 | &::#{$stretched-link-pseudo-element} { 7 | position: absolute; 8 | top: 0; 9 | right: 0; 10 | bottom: 0; 11 | left: 0; 12 | z-index: $stretched-link-z-index; 13 | content: ""; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/mixins/_banner.scss: -------------------------------------------------------------------------------- 1 | @mixin bsBanner($file) { 2 | /*! 3 | * Bootstrap #{$file} v5.2.2 (https://getbootstrap.com/) 4 | * Copyright 2011-2022 The Bootstrap Authors 5 | * Copyright 2011-2022 Twitter, Inc. 6 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 7 | */ 8 | } 9 | 10 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/FuelInstaller.php: -------------------------------------------------------------------------------- 1 | 'fuel/app/modules/{$name}/', 8 | 'package' => 'fuel/packages/{$name}/', 9 | 'theme' => 'fuel/app/themes/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/previews/separator.php: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 | -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/maxmind-db/reader/src/MaxMind/Db'), 10 | 'Composer\\Installers\\' => array($vendorDir . '/composer/installers/src/Composer/Installers'), 11 | ); 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php: -------------------------------------------------------------------------------- 1 | 'app/design/frontend/{$name}/', 8 | 'skin' => 'skin/frontend/default/{$name}/', 9 | 'library' => 'lib/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/bootstrap-utilities.scss: -------------------------------------------------------------------------------- 1 | @import "mixins/banner"; 2 | @include bsBanner(Utilities); 3 | 4 | // Configuration 5 | @import "functions"; 6 | @import "variables"; 7 | @import "maps"; 8 | @import "mixins"; 9 | @import "utilities"; 10 | 11 | // Helpers 12 | @import "helpers"; 13 | 14 | // Utilities 15 | @import "utilities/api"; 16 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/helpers/_stacks.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start stacks 2 | .hstack { 3 | display: flex; 4 | flex-direction: row; 5 | align-items: center; 6 | align-self: stretch; 7 | } 8 | 9 | .vstack { 10 | display: flex; 11 | flex: 1 1 auto; 12 | flex-direction: column; 13 | align-self: stretch; 14 | } 15 | // scss-docs-end stacks 16 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/components/_close.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Close button 3 | // -------------------------------------------------- 4 | 5 | 6 | .btn-close { transition: $btn-close-transition; } 7 | 8 | // Inside modal header 9 | .modal-header .btn-close { 10 | margin: ($modal-header-padding-y * -.25) ($modal-header-padding-x * -.25) ($modal-header-padding-y * -.25) auto; 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php: -------------------------------------------------------------------------------- 1 | 'addons/modules/{$name}/', 8 | 'component' => 'addons/components/{$name}/', 9 | 'service' => 'addons/services/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php: -------------------------------------------------------------------------------- 1 | 'templates/{$name}/', 8 | 'module' => 'application/modules/{$name}/', 9 | 'library' => 'application/libraries/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/_helpers.scss: -------------------------------------------------------------------------------- 1 | @import "helpers/clearfix"; 2 | @import "helpers/color-bg"; 3 | @import "helpers/colored-links"; 4 | @import "helpers/ratio"; 5 | @import "helpers/position"; 6 | @import "helpers/stacks"; 7 | @import "helpers/visually-hidden"; 8 | @import "helpers/stretched-link"; 9 | @import "helpers/text-truncation"; 10 | @import "helpers/vr"; 11 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PantheonInstaller.php: -------------------------------------------------------------------------------- 1 | */ 8 | protected $locations = array( 9 | 'script' => 'web/private/scripts/quicksilver/{$name}', 10 | 'module' => 'web/private/scripts/quicksilver/{$name}', 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php: -------------------------------------------------------------------------------- 1 | 'components/{$name}/', 8 | 'module' => 'modules/{$name}/', 9 | 'plugin' => 'plugins/{$name}/', 10 | 'template' => 'templates/{$name}/', 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php: -------------------------------------------------------------------------------- 1 | 'oc-content/plugins/{$name}/', 10 | 'theme' => 'oc-content/themes/{$name}/', 11 | 'language' => 'oc-content/languages/{$name}/', 12 | ); 13 | 14 | } 15 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/StarbugInstaller.php: -------------------------------------------------------------------------------- 1 | 'modules/{$name}/', 8 | 'theme' => 'themes/{$name}/', 9 | 'custom-module' => 'app/modules/{$name}/', 10 | 'custom-theme' => 'app/themes/{$name}/' 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/previews/heading.php: -------------------------------------------------------------------------------- 1 | 14 | 15 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php: -------------------------------------------------------------------------------- 1 | 'application/libraries/{$name}/', 8 | 'third-party' => 'application/third_party/{$name}/', 9 | 'module' => 'application/modules/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/previews/paragraph.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |

15 | -------------------------------------------------------------------------------- /templates/payment-forms/elements/paragraph.php: -------------------------------------------------------------------------------- 1 | ' . wp_kses_post( trim( $element['text'] ) ) . '

'; 14 | } 15 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php: -------------------------------------------------------------------------------- 1 | 'plugins/{$name}/', 17 | ); 18 | } 19 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/mixins/_text-hide.scss: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | @mixin text-hide($ignore-warning: false) { 3 | // stylelint-disable-next-line font-family-no-missing-generic-family-keyword 4 | font: 0/0 a; 5 | color: transparent; 6 | text-shadow: none; 7 | background-color: transparent; 8 | border: 0; 9 | 10 | @include deprecate("`text-hide()`", "v4.1.0", "v5", $ignore-warning); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php: -------------------------------------------------------------------------------- 1 | 'wp-content/plugins/{$name}/', 8 | 'theme' => 'wp-content/themes/{$name}/', 9 | 'muplugin' => 'wp-content/mu-plugins/{$name}/', 10 | 'dropin' => 'wp-content/{$name}/', 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/mixins/_backdrop.scss: -------------------------------------------------------------------------------- 1 | // Shared between modals and offcanvases 2 | @mixin overlay-backdrop($zindex, $backdrop-bg, $backdrop-opacity) { 3 | position: fixed; 4 | top: 0; 5 | left: 0; 6 | z-index: $zindex; 7 | width: 100vw; 8 | height: 100vh; 9 | background-color: $backdrop-bg; 10 | 11 | // Fade for backdrop 12 | &.fade { opacity: 0; } 13 | &.show { opacity: $backdrop-opacity; } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/partials/_inputs.scss: -------------------------------------------------------------------------------- 1 | .input-group-inside input:not(:placeholder-shown) + .aui-clear-input { 2 | display: block !important; 3 | } 4 | 5 | .input-group-inside .input-group-text, .input-group-append .input-group-text{ 6 | position: absolute; 7 | } 8 | 9 | .input-group-inside { 10 | .input-group-text{ 11 | padding-left: 0.9rem; 12 | padding-right: 0.3rem; 13 | } 14 | .form-control{ 15 | padding-left: 2.1rem; 16 | } 17 | } -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/mixins/_badge.scss: -------------------------------------------------------------------------------- 1 | @mixin badge-variant($bg) { 2 | color: color-yiq($bg); 3 | background-color: $bg; 4 | 5 | @at-root #{selector-unify(&, "a")} { 6 | @include hover-focus() { 7 | color: color-yiq($bg); 8 | background-color: darken($bg, 10%); 9 | } 10 | 11 | &:focus, 12 | &.focus { 13 | outline: 0; 14 | box-shadow: 0 0 0 $badge-focus-width rgba($bg, .5); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php: -------------------------------------------------------------------------------- 1 | 'concrete/', 8 | 'block' => 'application/blocks/{$name}/', 9 | 'package' => 'packages/{$name}/', 10 | 'theme' => 'application/themes/{$name}/', 11 | 'update' => 'updates/{$name}/', 12 | ); 13 | } 14 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php: -------------------------------------------------------------------------------- 1 | 9 | */ 10 | class DolibarrInstaller extends BaseInstaller 11 | { 12 | //TODO: Add support for scripts and themes 13 | protected $locations = array( 14 | 'module' => 'htdocs/custom/{$name}/', 15 | ); 16 | } 17 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | @mixin nav-divider($color: $nav-divider-color, $margin-y: $nav-divider-margin-y, $ignore-warning: false) { 6 | height: 0; 7 | margin: $margin-y 0; 8 | overflow: hidden; 9 | border-top: 1px solid $color; 10 | @include deprecate("The `nav-divider()` mixin", "v4.4.0", "v5", $ignore-warning); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/utilities/_float.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @each $breakpoint in map-keys($grid-breakpoints) { 4 | @include media-breakpoint-up($breakpoint) { 5 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints); 6 | 7 | .float#{$infix}-left { float: left !important; } 8 | .float#{$infix}-right { float: right !important; } 9 | .float#{$infix}-none { float: none !important; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php: -------------------------------------------------------------------------------- 1 | 'local/modules/{$name}/', 8 | 'frontoffice-template' => 'templates/frontOffice/{$name}/', 9 | 'backoffice-template' => 'templates/backOffice/{$name}/', 10 | 'email-template' => 'templates/email/{$name}/', 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /templates/invoice/invoice-type.php: -------------------------------------------------------------------------------- 1 | 13 |

14 | get_invoice_quote_type() ) ), $invoice ) ); ?> 15 |

16 | 17 | 10 | */ 11 | class TYPO3CmsInstaller extends BaseInstaller 12 | { 13 | protected $locations = array( 14 | 'extension' => 'typo3conf/ext/{$name}/', 15 | ); 16 | } 17 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/mixins/_float.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @mixin float-left() { 4 | float: left !important; 5 | @include deprecate("The `float-left` mixin", "v4.3.0", "v5"); 6 | } 7 | @mixin float-right() { 8 | float: right !important; 9 | @include deprecate("The `float-right` mixin", "v4.3.0", "v5"); 10 | } 11 | @mixin float-none() { 12 | float: none !important; 13 | @include deprecate("The `float-none` mixin", "v4.3.0", "v5"); 14 | } 15 | -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/ayecode/wp-ayecode-ui/ayecode-ui-loader.php', 10 | '24583d3588ebda5228dd453cfaa070da' => $vendorDir . '/ayecode/wp-font-awesome-settings/wp-font-awesome-settings.php', 11 | '42671a413efb740d7040437ff2a982cd' => $vendorDir . '/ayecode/wp-super-duper/sd-functions.php', 12 | ); 13 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/mixins/_alert.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start alert-variant-mixin 2 | @mixin alert-variant($background, $border, $color) { 3 | --#{$prefix}alert-color: #{$color}; 4 | --#{$prefix}alert-bg: #{$background}; 5 | --#{$prefix}alert-border-color: #{$border}; 6 | 7 | @if $enable-gradients { 8 | background-image: var(--#{$prefix}gradient); 9 | } 10 | 11 | .alert-link { 12 | color: shade-color($color, 20%); 13 | } 14 | } 15 | // scss-docs-end alert-variant-mixin 16 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/mixins/_container.scss: -------------------------------------------------------------------------------- 1 | // Container mixins 2 | 3 | @mixin make-container($gutter: $container-padding-x) { 4 | --#{$prefix}gutter-x: #{$gutter}; 5 | --#{$prefix}gutter-y: 0; 6 | width: 100%; 7 | padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list 8 | padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list 9 | margin-right: auto; 10 | margin-left: auto; 11 | } 12 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/bootstrap-reboot.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Reboot v4.6.2 (https://getbootstrap.com/) 3 | * Copyright 2011-2022 The Bootstrap Authors 4 | * Copyright 2011-2022 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) 7 | */ 8 | 9 | @import "functions"; 10 | @import "variables"; 11 | @import "mixins"; 12 | @import "reboot"; 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/TuskInstaller.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | class TuskInstaller extends BaseInstaller 8 | { 9 | protected $locations = array( 10 | 'task' => '.tusk/tasks/{$name}/', 11 | 'command' => '.tusk/commands/{$name}/', 12 | 'asset' => 'assets/tusk/{$name}/', 13 | ); 14 | } 15 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/previews/gateway_select.php: -------------------------------------------------------------------------------- 1 | alert( 13 | array( 14 | 'content' => esc_html__( 'The gateway select box will appear here', 'invoicing' ), 15 | 'type' => 'info', 16 | ), 17 | true 18 | ); 19 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/mixins/_image.scss: -------------------------------------------------------------------------------- 1 | // Image Mixins 2 | // - Responsive image 3 | // - Retina image 4 | 5 | 6 | // Responsive image 7 | // 8 | // Keep images from scaling beyond the width of their parents. 9 | 10 | @mixin img-fluid { 11 | // Part 1: Set a maximum relative to the parent 12 | max-width: 100%; 13 | // Part 2: Override the height to auto, otherwise images will be stretched 14 | // when setting a width and height attribute on the img element. 15 | height: auto; 16 | } 17 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/ayecode-ui.scss: -------------------------------------------------------------------------------- 1 | // User variables 2 | @import 'user-variables'; 3 | 4 | // Configuration & utilities 5 | @import 'variables'; 6 | @import 'utilities'; 7 | 8 | // Bootstrap 9 | @import '1-frameworks/index'; 10 | 11 | // Layout & components 12 | @import 'reboot'; 13 | @import 'components'; 14 | 15 | @import "main"; 16 | @import "partials/index"; // helpers 17 | 18 | @import "partials/wp_core"; // WP core 19 | 20 | // select2 can't be inside wrapper 21 | @import '1-frameworks/select2/core'; 22 | 23 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php: -------------------------------------------------------------------------------- 1 | 'components/{$name}/', 8 | 'module' => 'modules/{$name}/', 9 | 'template' => 'templates/{$name}/', 10 | 'plugin' => 'plugins/{$name}/', 11 | 'library' => 'libraries/{$name}/', 12 | ); 13 | 14 | // TODO: Add inflector for mod_ and com_ names 15 | } 16 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/partials/_badge.scss: -------------------------------------------------------------------------------- 1 | // badge branding 2 | 3 | @each $color, $value in $branding-colors { 4 | .badge-#{$color} { 5 | @include badge-variant($value); 6 | } 7 | } 8 | 9 | .badge-instagram { 10 | @include badge-variant($brand-instagram); 11 | background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); 12 | &:hover{ 13 | background: radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); 14 | } 15 | } -------------------------------------------------------------------------------- /templates/payment-forms-admin/previews/ip_address.php: -------------------------------------------------------------------------------- 1 | 13 | {{form_element.text}} 14 | 15 |    16 | 17 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/previews/total_payable.php: -------------------------------------------------------------------------------- 1 | alert( 13 | array( 14 | 'content' => esc_html__( 'The total payable amount will appear here', 'invoicing' ), 15 | 'type' => 'info', 16 | ), 17 | true 18 | ); 19 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/partials/_badge.scss: -------------------------------------------------------------------------------- 1 | // badge branding 2 | 3 | @each $color, $value in $branding-colors { 4 | .badge-#{$color} { 5 | @include badge-variant($value); 6 | } 7 | } 8 | 9 | .badge-instagram { 10 | @include badge-variant($brand-instagram); 11 | background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); 12 | &:hover{ 13 | background: radial-gradient(circle at 30% 134%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); 14 | } 15 | } -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/_jumbotron.scss: -------------------------------------------------------------------------------- 1 | .jumbotron { 2 | padding: $jumbotron-padding ($jumbotron-padding * .5); 3 | margin-bottom: $jumbotron-padding; 4 | color: $jumbotron-color; 5 | background-color: $jumbotron-bg; 6 | @include border-radius($border-radius-lg); 7 | 8 | @include media-breakpoint-up(sm) { 9 | padding: ($jumbotron-padding * 2) $jumbotron-padding; 10 | } 11 | } 12 | 13 | .jumbotron-fluid { 14 | padding-right: 0; 15 | padding-left: 0; 16 | @include border-radius(0); 17 | } 18 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/partials/_iconbox.scss: -------------------------------------------------------------------------------- 1 | // Icons 2 | .iconbox { 3 | border:1px solid; 4 | text-align:center; 5 | display:inline-block; 6 | 7 | &.iconsmall { 8 | width:40px; 9 | height:40px; 10 | line-height:40px; 11 | font-size:1rem; 12 | } 13 | 14 | &.iconmedium { 15 | width:60px; 16 | height:60px; 17 | line-height:60px; 18 | font-size:1.8rem; 19 | } 20 | 21 | &.iconlarge { 22 | width:80px; 23 | height:80px; 24 | line-height:80px; 25 | font-size:2.2rem; 26 | } 27 | } -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/_transitions.scss: -------------------------------------------------------------------------------- 1 | .fade { 2 | @include transition($transition-fade); 3 | 4 | &:not(.show) { 5 | opacity: 0; 6 | } 7 | } 8 | 9 | .collapse { 10 | &:not(.show) { 11 | display: none; 12 | } 13 | } 14 | 15 | .collapsing { 16 | position: relative; 17 | height: 0; 18 | overflow: hidden; 19 | @include transition($transition-collapse); 20 | 21 | &.width { 22 | width: 0; 23 | height: auto; 24 | @include transition($transition-collapse-width); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/partials/_overflow.scss: -------------------------------------------------------------------------------- 1 | .overflow-visible{ 2 | overflow: visible; 3 | } 4 | 5 | // IOS style scroll bars 6 | .scrollbars-ios{ 7 | &::-webkit-scrollbar 8 | { 9 | width: 5px; /* for vertical scrollbars */ 10 | height: 5px; /* for horizontal scrollbars */ 11 | } 12 | 13 | &::-webkit-scrollbar-track 14 | { 15 | background: rgba(128, 128, 128, 0.1); 16 | } 17 | 18 | &::-webkit-scrollbar-thumb 19 | { 20 | background: rgba(128, 128, 128, 0.5); 21 | border-radius: 2px; 22 | } 23 | 24 | } -------------------------------------------------------------------------------- /vendor/composer/installers/src/bootstrap.php: -------------------------------------------------------------------------------- 1 | 1 { 10 | @warn "The keyword 'none' must be used as a single argument."; 11 | } 12 | } 13 | 14 | @if (length($result) > 0) { 15 | box-shadow: $result; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/partials/_overflow.scss: -------------------------------------------------------------------------------- 1 | .overflow-visible{ 2 | overflow: visible; 3 | } 4 | 5 | // IOS style scroll bars 6 | .scrollbars-ios{ 7 | &::-webkit-scrollbar 8 | { 9 | width: 3px; /* for vertical scrollbars */ 10 | height: 3px; /* for horizontal scrollbars */ 11 | } 12 | 13 | &::-webkit-scrollbar-track 14 | { 15 | background: rgba(128, 128, 128, 0.1); 16 | } 17 | 18 | &::-webkit-scrollbar-thumb 19 | { 20 | background: rgba(180, 184, 201, 0.5); 21 | border-radius: 2px; 22 | } 23 | 24 | } -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/helpers/_color-bg.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable function-name-case 2 | 3 | // All-caps `RGBA()` function used because of this Sass bug: https://github.com/sass/node-sass/issues/2251 4 | @each $color, $value in $theme-colors { 5 | $color-rgb: to-rgb($value); 6 | .text-bg-#{$color} { 7 | color: color-contrast($value) if($enable-important-utilities, !important, null); 8 | background-color: RGBA($color-rgb, var(--#{$prefix}bg-opacity, 1)) if($enable-important-utilities, !important, null); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/utilities/_background.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @each $color, $value in $theme-colors { 4 | @include bg-variant(".bg-#{$color}", $value, true); 5 | } 6 | 7 | @if $enable-gradients { 8 | @each $color, $value in $theme-colors { 9 | @include bg-gradient-variant(".bg-gradient-#{$color}", $value, true); 10 | } 11 | } 12 | 13 | .bg-white { 14 | background-color: $white !important; 15 | } 16 | 17 | .bg-transparent { 18 | background-color: transparent !important; 19 | } 20 | -------------------------------------------------------------------------------- /templates/payment-forms/elements/heading.php: -------------------------------------------------------------------------------- 1 | $text" ); 17 | } 18 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/helpers/_colored-links.scss: -------------------------------------------------------------------------------- 1 | @each $color, $value in $theme-colors { 2 | .link-#{$color} { 3 | color: $value !important; // stylelint-disable-line declaration-no-important 4 | 5 | @if $link-shade-percentage != 0 { 6 | &:hover, 7 | &:focus { 8 | color: if(color-contrast($value) == $color-contrast-light, shade-color($value, $link-shade-percentage), tint-color($value, $link-shade-percentage)) !important; // stylelint-disable-line declaration-no-important 9 | } 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /templates/payment-forms/elements/total_payable.php: -------------------------------------------------------------------------------- 1 | 16 |
17 | 18 | 19 |
20 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/partials/_index.scss: -------------------------------------------------------------------------------- 1 | @import "variables"; 2 | @import "iconbox"; 3 | @import "buttons"; 4 | @import "alerts"; 5 | @import "grids"; 6 | @import "borders"; 7 | @import "background_shadow"; 8 | @import "animations"; 9 | @import "hover_content"; 10 | @import "overflow"; 11 | @import "embed"; 12 | @import "compatibility"; 13 | @import "manual_vendor_prefix"; 14 | @import "badge"; 15 | @import "background"; 16 | @import "floating_labels"; 17 | @import "positioning"; 18 | @import "nav"; 19 | @import "switch"; 20 | @import "hover_effects"; 21 | @import "inputs"; -------------------------------------------------------------------------------- /.distignore: -------------------------------------------------------------------------------- 1 | # A set of files you probably don't want in your WordPress.org distribution 2 | /.wordpress-org 3 | /.git 4 | /.github 5 | .distignore 6 | .gitattributes 7 | .editorconfig 8 | .git 9 | .gitignore 10 | .gitlab-ci.yml 11 | .travis.yml 12 | .DS_Store 13 | Thumbs.db 14 | behat.yml 15 | bin 16 | circle.yml 17 | composer.json 18 | composer.lock 19 | Gruntfile.js 20 | package.json 21 | phpunit.xml 22 | phpunit.xml.dist 23 | multisite.xml 24 | multisite.xml.dist 25 | phpcs.ruleset.xml 26 | README.md 27 | wp-cli.local.yml 28 | tests 29 | .github 30 | node_modules 31 | *.sql 32 | *.tar.gz 33 | *.zip -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/helpers/_ratio.scss: -------------------------------------------------------------------------------- 1 | // Credit: Nicolas Gallagher and SUIT CSS. 2 | 3 | .ratio { 4 | position: relative; 5 | width: 100%; 6 | 7 | &::before { 8 | display: block; 9 | padding-top: var(--#{$prefix}aspect-ratio); 10 | content: ""; 11 | } 12 | 13 | > * { 14 | position: absolute; 15 | top: 0; 16 | left: 0; 17 | width: 100%; 18 | height: 100%; 19 | } 20 | } 21 | 22 | @each $key, $ratio in $aspect-ratios { 23 | .ratio-#{$key} { 24 | --#{$prefix}aspect-ratio: #{$ratio}; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/utilities/_stretched-link.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Stretched link 3 | // 4 | 5 | .stretched-link { 6 | &::after { 7 | position: absolute; 8 | top: 0; 9 | right: 0; 10 | bottom: 0; 11 | left: 0; 12 | z-index: 1; 13 | // Just in case `pointer-events: none` is set on a parent 14 | pointer-events: auto; 15 | content: ""; 16 | // IE10 bugfix, see https://stackoverflow.com/questions/16947967/ie10-hover-pseudo-class-doesnt-work-without-background-color 17 | background-color: rgba(0, 0, 0, 0); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /templates/payment-forms/elements/ip_address.php: -------------------------------------------------------------------------------- 1 | 17 |
18 | 19 | 20 |
21 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/forms/_validation.scss: -------------------------------------------------------------------------------- 1 | // Form validation 2 | // 3 | // Provide feedback to users when form field values are valid or invalid. Works 4 | // primarily for client-side validation via scoped `:invalid` and `:valid` 5 | // pseudo-classes but also includes `.is-invalid` and `.is-valid` classes for 6 | // server-side validation. 7 | 8 | // scss-docs-start form-validation-states-loop 9 | @each $state, $data in $form-validation-states { 10 | @include form-validation-state($state, $data...); 11 | } 12 | // scss-docs-end form-validation-states-loop 13 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/mixins/_list-group.scss: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | @mixin list-group-item-variant($state, $background, $color) { 4 | .list-group-item-#{$state} { 5 | color: $color; 6 | background-color: $background; 7 | 8 | &.list-group-item-action { 9 | @include hover-focus() { 10 | color: $color; 11 | background-color: darken($background, 5%); 12 | } 13 | 14 | &.active { 15 | color: $white; 16 | background-color: $color; 17 | border-color: $color; 18 | } 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/ayecode/ayecode-connect-helper/ayecode-connect-helper.php', 10 | 'AyeCode_Deactivation_Survey' => $vendorDir . '/ayecode/wp-deactivation-survey/wp-deactivation-survey.php', 11 | 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', 12 | 'WP_Super_Duper' => $vendorDir . '/ayecode/wp-super-duper/wp-super-duper.php', 13 | ); 14 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/previews/pay_button.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/AglInstaller.php: -------------------------------------------------------------------------------- 1 | 'More/{$name}/', 8 | ); 9 | 10 | /** 11 | * Format package name to CamelCase 12 | */ 13 | public function inflectPackageVars($vars) 14 | { 15 | $vars['name'] = preg_replace_callback('/(?:^|_|-)(.?)/', function ($matches) { 16 | return strtoupper($matches[1]); 17 | }, $vars['name']); 18 | 19 | return $vars; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php: -------------------------------------------------------------------------------- 1 | 'assets/snippets/{$name}/', 11 | 'plugin' => 'assets/plugins/{$name}/', 12 | 'module' => 'assets/modules/{$name}/', 13 | 'template' => 'assets/templates/{$name}/', 14 | 'lib' => 'assets/lib/{$name}/' 15 | ); 16 | } 17 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/previews/time.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 19 | -------------------------------------------------------------------------------- /templates/payment-forms/elements/alert.php: -------------------------------------------------------------------------------- 1 | alert( 17 | array( 18 | 'content' => wp_kses_post( $text ), 19 | 'dismissible' => ! empty( $dismissible ), 20 | 'type' => empty( $class ) ? 'info' : str_replace( 'alert-', '', $class ), 21 | ), 22 | true 23 | ); 24 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php: -------------------------------------------------------------------------------- 1 | 'plugins/{$name}/', 8 | ); 9 | 10 | /** 11 | * Lowercase name and changes the name to a underscores 12 | * 13 | * @param array $vars 14 | * @return array 15 | */ 16 | public function inflectPackageVars($vars) 17 | { 18 | $vars['name'] = strtolower(str_replace('-', '_', $vars['name'])); 19 | 20 | return $vars; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/_transitions.scss: -------------------------------------------------------------------------------- 1 | .fade { 2 | @include transition($transition-fade); 3 | 4 | &:not(.show) { 5 | opacity: 0; 6 | } 7 | } 8 | 9 | // scss-docs-start collapse-classes 10 | .collapse { 11 | &:not(.show) { 12 | display: none; 13 | } 14 | } 15 | 16 | .collapsing { 17 | height: 0; 18 | overflow: hidden; 19 | @include transition($transition-collapse); 20 | 21 | &.collapse-horizontal { 22 | width: 0; 23 | height: auto; 24 | @include transition($transition-collapse-width); 25 | } 26 | } 27 | // scss-docs-end collapse-classes 28 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/bootstrap-changes.txt: -------------------------------------------------------------------------------- 1 | /* 2 | Fix badge hover actions 3 | */ 4 | File _badge.scss 18 5 | File /mixins/_badge.scss 5 6 | FROM 7 | @at-root a#{&} { 8 | TO: 9 | @at-root #{selector-unify(&, "a")} { 10 | 11 | 12 | /* 13 | Fix compile (maybe not needed anymore?) 14 | */ 15 | File _root.scss 5, 9 16 | FROM 17 | --#{$color}: #{$value}; 18 | TO: 19 | #{--#{$color}}: #{$value}; 20 | 21 | 22 | /* 23 | & + & does not work with our wrapper setup 24 | */ 25 | File _list-group.scss 77 26 | File _list-group-rtl.scss 77 27 | FROM 28 | & + & { 29 | TO: 30 | & + .list-group-item { 31 | 32 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/components/_badge.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Badge 3 | // -------------------------------------------------- 4 | 5 | 6 | // Fix badge colors 7 | 8 | .badge.bg-secondary, 9 | .badge.bg-light { 10 | color: $gray-900; 11 | } 12 | 13 | .badge.bg-warning { 14 | color: $white; 15 | } 16 | 17 | 18 | // Badge translucent 19 | 20 | @each $color, $value in $theme-colors { 21 | .badge.bg-faded-#{$color} { 22 | color: $value; 23 | } 24 | } 25 | .badge.bg-faded-secondary { 26 | color: $gray-900; 27 | } 28 | .badge.bg-faded-light { 29 | background-color: rgba($light, .1) !important; 30 | } 31 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Typography 4 | 5 | @mixin text-emphasis-variant($parent, $color, $ignore-warning: false) { 6 | #{$parent} { 7 | color: $color !important; 8 | } 9 | @if $emphasized-link-hover-darken-percentage != 0 { 10 | a#{$parent} { 11 | @include hover-focus() { 12 | color: darken($color, $emphasized-link-hover-darken-percentage) !important; 13 | } 14 | } 15 | } 16 | @include deprecate("`text-emphasis-variant()`", "v4.4.0", "v5", $ignore-warning); 17 | } 18 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/mixins/_reset-text.scss: -------------------------------------------------------------------------------- 1 | @mixin reset-text() { 2 | font-family: $font-family-base; 3 | // We deliberately do NOT reset font-size or word-wrap. 4 | font-style: normal; 5 | font-weight: $font-weight-normal; 6 | line-height: $line-height-base; 7 | text-align: left; // Fallback for where `start` is not supported 8 | text-align: start; 9 | text-decoration: none; 10 | text-shadow: none; 11 | text-transform: none; 12 | letter-spacing: normal; 13 | word-break: normal; 14 | white-space: normal; 15 | word-spacing: normal; 16 | line-break: auto; 17 | } 18 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/mixins/_pagination.scss: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | @mixin pagination-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) { 4 | .page-link { 5 | padding: $padding-y $padding-x; 6 | @include font-size($font-size); 7 | line-height: $line-height; 8 | } 9 | 10 | .page-item { 11 | &:first-child { 12 | .page-link { 13 | @include border-left-radius($border-radius); 14 | } 15 | } 16 | &:last-child { 17 | .page-link { 18 | @include border-right-radius($border-radius); 19 | } 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/mixins/_reset-text-rtl.scss: -------------------------------------------------------------------------------- 1 | @mixin reset-text() { 2 | font-family: $font-family-base; 3 | // We deliberately do NOT reset font-size or word-wrap. 4 | font-style: normal; 5 | font-weight: $font-weight-normal; 6 | line-height: $line-height-base; 7 | text-align: right; // Fallback for where `start` is not supported //rtl 8 | text-align: start; 9 | text-decoration: none; 10 | text-shadow: none; 11 | text-transform: none; 12 | letter-spacing: normal; 13 | word-break: normal; 14 | white-space: normal; 15 | word-spacing: normal; 16 | line-break: auto; 17 | } 18 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/mixins/_reset-text.scss: -------------------------------------------------------------------------------- 1 | @mixin reset-text { 2 | font-family: $font-family-base; 3 | // We deliberately do NOT reset font-size or overflow-wrap / word-wrap. 4 | font-style: normal; 5 | font-weight: $font-weight-normal; 6 | line-height: $line-height-base; 7 | text-align: left; // Fallback for where `start` is not supported 8 | text-align: start; 9 | text-decoration: none; 10 | text-shadow: none; 11 | text-transform: none; 12 | letter-spacing: normal; 13 | word-break: normal; 14 | white-space: normal; 15 | word-spacing: normal; 16 | line-break: auto; 17 | } 18 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/components/_input-group.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Input group 3 | // -------------------------------------------------- 4 | 5 | 6 | // Absolutely positioned addons 7 | 8 | .input-group .position-absolute { 9 | z-index: 5; 10 | & + .form-control, 11 | & + .password-toggle .form-control { 12 | padding-left: 2.5rem; 13 | } 14 | } 15 | 16 | 17 | // Fix checkbox and radio position inside 18 | 19 | .input-group .form-check-input { 20 | margin-top: .5rem; 21 | } 22 | 23 | 24 | // Button addons sizing fix 25 | 26 | .input-group-lg .btn { @extend .btn-lg; } 27 | .input-group-sm .btn { @extend .btn-sm; } 28 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/mixins/_pagination-rtl.scss: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | @mixin pagination-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) { 4 | .page-link { 5 | padding: $padding-y $padding-x; 6 | @include font-size($font-size); 7 | line-height: $line-height; 8 | } 9 | 10 | .page-item { 11 | &:first-child { 12 | .page-link { 13 | @include border-right-radius($border-radius);//rtl 14 | } 15 | } 16 | &:last-child { 17 | .page-link { 18 | @include border-left-radius($border-radius);//rtl 19 | } 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/edit/ip_address.php: -------------------------------------------------------------------------------- 1 | 13 |
14 | 15 | 16 |
17 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/edit/total_payable.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
15 | 16 | 17 |
18 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php: -------------------------------------------------------------------------------- 1 | 'Plugin/{$name}/', 8 | 'theme' => 'View/Themed/{$name}/', 9 | ); 10 | 11 | /** 12 | * Format package name to CamelCase 13 | */ 14 | public function inflectPackageVars($vars) 15 | { 16 | $vars['name'] = strtolower(str_replace(array('-', '_'), ' ', $vars['name'])); 17 | $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); 18 | 19 | return $vars; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/utilities/_sizing.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Width and height 4 | 5 | @each $prop, $abbrev in (width: w, height: h) { 6 | @each $size, $length in $sizes { 7 | .#{$abbrev}-#{$size} { #{$prop}: $length !important; } 8 | } 9 | } 10 | 11 | .mw-100 { max-width: 100% !important; } 12 | .mh-100 { max-height: 100% !important; } 13 | 14 | // Viewport additional helpers 15 | 16 | .min-vw-100 { min-width: 100vw !important; } 17 | .min-vh-100 { min-height: 100vh !important; } 18 | 19 | .vw-100 { width: 100vw !important; } 20 | .vh-100 { height: 100vh !important; } 21 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/edit/gateway_select.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
15 | 16 | 17 |
18 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/previews/billing_email.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 19 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/previews/date.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 20 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- 1 | @import "utilities/align"; 2 | @import "utilities/background"; 3 | @import "utilities/borders"; 4 | @import "utilities/clearfix"; 5 | @import "utilities/display"; 6 | @import "utilities/embed"; 7 | @import "utilities/flex"; 8 | @import "utilities/float"; 9 | @import "utilities/interactions"; 10 | @import "utilities/overflow"; 11 | @import "utilities/position"; 12 | @import "utilities/screenreaders"; 13 | @import "utilities/shadows"; 14 | @import "utilities/sizing"; 15 | @import "utilities/spacing"; 16 | @import "utilities/stretched-link"; 17 | @import "utilities/text"; 18 | @import "utilities/visibility"; 19 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/bootstrap-reboot-rtl.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Reboot v4.6.2 (https://getbootstrap.com/) 3 | * Copyright 2011-2022 The Bootstrap Authors 4 | * Copyright 2011-2022 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) 7 | * RTL-ized by Arash Laylazi (https://github.com/PerseusTheGreat) 8 | * RTL rev. 1 (https://github.com/PerseusTheGreat/bootstrap-rtl) 9 | */ 10 | 11 | @import "functions"; 12 | @import "variables-rtl"; 13 | @import "mixins-rtl"; 14 | @import "reboot-rtl"; 15 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/previews/items.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
15 | 16 |
17 | 18 |
19 | 20 |
21 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/mixins/_list-group.scss: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | // scss-docs-start list-group-mixin 4 | @mixin list-group-item-variant($state, $background, $color) { 5 | .list-group-item-#{$state} { 6 | color: $color; 7 | background-color: $background; 8 | 9 | &.list-group-item-action { 10 | &:hover, 11 | &:focus { 12 | color: $color; 13 | background-color: shade-color($background, 10%); 14 | } 15 | 16 | &.active { 17 | color: $white; 18 | background-color: $color; 19 | border-color: $color; 20 | } 21 | } 22 | } 23 | } 24 | // scss-docs-end list-group-mixin 25 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- 1 | @mixin box-shadow($shadow...) { 2 | @if $enable-shadows { 3 | $result: (); 4 | 5 | @if (length($shadow) == 1) { 6 | // We can pass `@include box-shadow(none);` 7 | $result: $shadow; 8 | } @else { 9 | // Filter to avoid invalid properties for example `box-shadow: none, 1px 1px black;` 10 | @for $i from 1 through length($shadow) { 11 | @if nth($shadow, $i) != "none" { 12 | $result: append($result, nth($shadow, $i), "comma"); 13 | } 14 | } 15 | } 16 | @if (length($result) > 0) { 17 | box-shadow: $result; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php: -------------------------------------------------------------------------------- 1 | 'plugins/{$name}/', 8 | ); 9 | 10 | /** 11 | * Format package name to CamelCase 12 | */ 13 | public function inflectPackageVars($vars) 14 | { 15 | $vars['name'] = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $vars['name'])); 16 | $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']); 17 | $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); 18 | 19 | return $vars; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/utilities/_position.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Common values 4 | @each $position in $positions { 5 | .position-#{$position} { position: $position !important; } 6 | } 7 | 8 | // Shorthand 9 | 10 | .fixed-top { 11 | position: fixed; 12 | top: 0; 13 | right: 0; 14 | left: 0; 15 | z-index: $zindex-fixed; 16 | } 17 | 18 | .fixed-bottom { 19 | position: fixed; 20 | right: 0; 21 | bottom: 0; 22 | left: 0; 23 | z-index: $zindex-fixed; 24 | } 25 | 26 | .sticky-top { 27 | @supports (position: sticky) { 28 | position: sticky; 29 | top: 0; 30 | z-index: $zindex-sticky; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/utilities/_display.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // 4 | // Utilities for common `display` values 5 | // 6 | 7 | @each $breakpoint in map-keys($grid-breakpoints) { 8 | @include media-breakpoint-up($breakpoint) { 9 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints); 10 | 11 | @each $value in $displays { 12 | .d#{$infix}-#{$value} { display: $value !important; } 13 | } 14 | } 15 | } 16 | 17 | 18 | // 19 | // Utilities for toggling `display` in print 20 | // 21 | 22 | @media print { 23 | @each $value in $displays { 24 | .d-print-#{$value} { display: $value !important; } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/_root.scss: -------------------------------------------------------------------------------- 1 | :root { 2 | // Custom variable values only support SassScript inside `#{}`. 3 | @each $color, $value in $colors { 4 | --#{$color}: #{$value}; 5 | } 6 | 7 | @each $color, $value in $theme-colors { 8 | --#{$color}: #{$value}; 9 | } 10 | 11 | @each $bp, $value in $grid-breakpoints { 12 | --breakpoint-#{$bp}: #{$value}; 13 | } 14 | 15 | // Use `inspect` for lists so that quoted items keep the quotes. 16 | // See https://github.com/sass/sass/issues/2383#issuecomment-336349172 17 | --font-family-sans-serif: #{inspect($font-family-sans-serif)}; 18 | --font-family-monospace: #{inspect($font-family-monospace)}; 19 | } 20 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/ayecode-ui-compatibility.scss: -------------------------------------------------------------------------------- 1 | .bsui{ 2 | // 1- Import bootstrap framework 3 | @import '1-frameworks/index'; 4 | @import "main"; 5 | @import "partials/index"; // helpers 6 | } 7 | 8 | @import "partials/wp_core"; // WP core 9 | 10 | // Modal can't be inside wrapper 11 | @import "1-frameworks/bootstrap/functions"; 12 | @import "1-frameworks/bootstrap/variables"; 13 | @import "1-frameworks/bootstrap/mixins"; 14 | @import "1-frameworks/bootstrap/root"; 15 | @import "1-frameworks/bootstrap/modal"; 16 | @import "1-frameworks/bootstrap/tooltip"; 17 | @import "1-frameworks/bootstrap/popover"; 18 | 19 | // select2 can't be inside wrapper 20 | @import '1-frameworks/select2/core'; 21 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ProcessWireInstaller.php: -------------------------------------------------------------------------------- 1 | 'site/modules/{$name}/', 9 | ); 10 | 11 | /** 12 | * Format package name to CamelCase 13 | */ 14 | public function inflectPackageVars($vars) 15 | { 16 | $vars['name'] = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $vars['name'])); 17 | $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']); 18 | $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); 19 | 20 | return $vars; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/previews/email.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 20 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/previews/text.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 20 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/mixins/_deprecate.scss: -------------------------------------------------------------------------------- 1 | // Deprecate mixin 2 | // 3 | // This mixin can be used to deprecate mixins or functions. 4 | // `$enable-deprecation-messages` is a global variable, `$ignore-warning` is a variable that can be passed to 5 | // some deprecated mixins to suppress the warning (for example if the mixin is still be used in the current version of Bootstrap) 6 | @mixin deprecate($name, $deprecate-version, $remove-version, $ignore-warning: false) { 7 | @if ($enable-deprecation-messages != false and $ignore-warning != true) { 8 | @warn "#{$name} has been deprecated as of #{$deprecate-version}. It will be removed entirely in #{$remove-version}."; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/mixins/_deprecate.scss: -------------------------------------------------------------------------------- 1 | // Deprecate mixin 2 | // 3 | // This mixin can be used to deprecate mixins or functions. 4 | // `$enable-deprecation-messages` is a global variable, `$ignore-warning` is a variable that can be passed to 5 | // some deprecated mixins to suppress the warning (for example if the mixin is still be used in the current version of Bootstrap) 6 | @mixin deprecate($name, $deprecate-version, $remove-version, $ignore-warning: false) { 7 | @if ($enable-deprecation-messages != false and $ignore-warning != true) { 8 | @warn "#{$name} has been deprecated as of #{$deprecate-version}. It will be removed entirely in #{$remove-version}."; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/ayecode-ui-fse.scss: -------------------------------------------------------------------------------- 1 | .editor-styles-wrapper{ 2 | // 1- Import bootstrap framework 3 | @import '1-frameworks/index'; 4 | @import "main"; 5 | @import "partials/index"; // helpers 6 | } 7 | 8 | @import "partials/wp_core"; // WP core 9 | 10 | // Modal can't be inside wrapper 11 | @import "1-frameworks/bootstrap/functions"; 12 | @import "1-frameworks/bootstrap/variables"; 13 | @import "1-frameworks/bootstrap/mixins"; 14 | @import "1-frameworks/bootstrap/root"; 15 | @import "1-frameworks/bootstrap/modal"; 16 | @import "1-frameworks/bootstrap/tooltip"; 17 | @import "1-frameworks/bootstrap/popover"; 18 | 19 | // select2 can't be inside wrapper 20 | @import '1-frameworks/select2/core'; 21 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/previews/website.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 20 | -------------------------------------------------------------------------------- /vendor/composer/installers/.github/workflows/lint.yml: -------------------------------------------------------------------------------- 1 | name: "PHP Lint" 2 | 3 | on: 4 | - push 5 | - pull_request 6 | 7 | jobs: 8 | tests: 9 | name: "Lint" 10 | 11 | runs-on: ubuntu-latest 12 | 13 | strategy: 14 | matrix: 15 | php-version: 16 | - "5.3" 17 | - "8.0" 18 | 19 | steps: 20 | - name: "Checkout" 21 | uses: "actions/checkout@v2" 22 | 23 | - name: "Install PHP" 24 | uses: "shivammathur/setup-php@v2" 25 | with: 26 | coverage: "none" 27 | php-version: "${{ matrix.php-version }}" 28 | 29 | - name: "Lint PHP files" 30 | run: "find src/ -type f -name '*.php' -print0 | xargs -0 -L1 -P4 -- php -l -f" 31 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/previews/number.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 20 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/partials/_index.scss: -------------------------------------------------------------------------------- 1 | @import "variables"; 2 | @import "icons"; 3 | @import "iconbox"; 4 | @import "buttons"; 5 | @import "alerts"; 6 | @import "grids"; 7 | @import "borders"; 8 | @import "background_shadow"; 9 | @import "animations"; 10 | @import "hover_content"; 11 | @import "overflow"; 12 | @import "embed"; 13 | @import "compatibility"; 14 | @import "dropdown"; 15 | @import "form-group"; 16 | @import "manual_vendor_prefix"; 17 | //@import "badge"; // now uses bg for coloring 18 | @import "background"; 19 | @import "floating_labels"; 20 | @import "positioning"; 21 | @import "nav"; 22 | @import "navbar"; 23 | @import "switch"; 24 | @import "hover_effects"; 25 | @import "inputs"; 26 | @import "bs4"; 27 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | class Symfony1Installer extends BaseInstaller 10 | { 11 | protected $locations = array( 12 | 'plugin' => 'plugins/{$name}/', 13 | ); 14 | 15 | /** 16 | * Format package name to CamelCase 17 | */ 18 | public function inflectPackageVars($vars) 19 | { 20 | $vars['name'] = preg_replace_callback('/(-[a-z])/', function ($matches) { 21 | return strtoupper($matches[0][1]); 22 | }, $vars['name']); 23 | 24 | return $vars; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/previews/textarea.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 20 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MantisBTInstaller.php: -------------------------------------------------------------------------------- 1 | 'plugins/{$name}/', 10 | ); 11 | 12 | /** 13 | * Format package name to CamelCase 14 | */ 15 | public function inflectPackageVars($vars) 16 | { 17 | $vars['name'] = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $vars['name'])); 18 | $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']); 19 | $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); 20 | 21 | return $vars; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /templates/emails/wpinv-email-subscription_active.php: -------------------------------------------------------------------------------- 1 | get_parent_payment(); 14 | 15 | // Print the email header. 16 | do_action( 'wpinv_email_header', $email_heading, $invoice, $email_type, $sent_to_admin ); 17 | 18 | // Generate the custom message body. 19 | echo wp_kses_post( $message_body ); 20 | 21 | // Print the email footer. 22 | do_action( 'wpinv_email_footer', $invoice, $email_type, $sent_to_admin ); 23 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/previews/checkbox.php: -------------------------------------------------------------------------------- 1 | 13 |
14 | 15 | 16 | * 17 |
18 | 19 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/previews/alert.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 22 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/edit/paragraph.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
15 | 16 | 17 | 18 |
19 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/select2/_single.scss: -------------------------------------------------------------------------------- 1 | .select2-selection--single { 2 | box-sizing: border-box; 3 | 4 | cursor: pointer; 5 | display: block; 6 | 7 | height: 28px; 8 | 9 | user-select: none; 10 | -webkit-user-select: none; 11 | 12 | .select2-selection__rendered { 13 | display: block; 14 | padding-left: 8px; 15 | padding-right: 20px; 16 | 17 | overflow: hidden; 18 | text-overflow: ellipsis; 19 | white-space: nowrap; 20 | } 21 | 22 | .select2-selection__clear { 23 | position: relative; 24 | } 25 | } 26 | 27 | &[dir="rtl"] { 28 | .select2-selection--single { 29 | .select2-selection__rendered { 30 | padding-right: 8px; 31 | padding-left: 20px; 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/select2/_single.scss: -------------------------------------------------------------------------------- 1 | .select2-selection--single { 2 | box-sizing: border-box; 3 | 4 | cursor: pointer; 5 | display: block; 6 | 7 | height: 28px; 8 | 9 | user-select: none; 10 | -webkit-user-select: none; 11 | 12 | .select2-selection__rendered { 13 | display: block; 14 | padding-left: 8px; 15 | padding-right: 20px; 16 | 17 | overflow: hidden; 18 | text-overflow: ellipsis; 19 | white-space: nowrap; 20 | } 21 | 22 | .select2-selection__clear { 23 | position: relative; 24 | } 25 | } 26 | 27 | &[dir="rtl"] { 28 | .select2-selection--single { 29 | .select2-selection__rendered { 30 | padding-right: 8px; 31 | padding-left: 20px; 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/previews/discount.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
15 | 16 | 17 |
18 | 19 | 20 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/_grid.scss: -------------------------------------------------------------------------------- 1 | // Row 2 | // 3 | // Rows contain your columns. 4 | 5 | @if $enable-grid-classes { 6 | .row { 7 | @include make-row(); 8 | 9 | > * { 10 | @include make-col-ready(); 11 | } 12 | } 13 | } 14 | 15 | @if $enable-cssgrid { 16 | .grid { 17 | display: grid; 18 | grid-template-rows: repeat(var(--#{$prefix}rows, 1), 1fr); 19 | grid-template-columns: repeat(var(--#{$prefix}columns, #{$grid-columns}), 1fr); 20 | gap: var(--#{$prefix}gap, #{$grid-gutter-width}); 21 | 22 | @include make-cssgrid(); 23 | } 24 | } 25 | 26 | 27 | // Columns 28 | // 29 | // Common styles for small and large grid columns 30 | 31 | @if $enable-grid-classes { 32 | @include make-grid-columns(); 33 | } 34 | -------------------------------------------------------------------------------- /templates/wpinv-payment-processing.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 | here.', 'invoicing' ) ), 7 | esc_url_raw( remove_query_arg( 'payment-confirm' ) ) 8 | ); 9 | ?> 10 | 11 |

12 | 13 | 21 | 22 |
23 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/ayecode-ui-compatibility-rtl.scss: -------------------------------------------------------------------------------- 1 | .bsui{ 2 | // 1- Import bootstrap framework 3 | @import '1-frameworks/index-rtl'; // https://github.com/PerseusTheGreat/bootstrap-4-rtl 4 | @import "main"; 5 | @import "partials/index"; // helpers 6 | } 7 | 8 | @import "partials/wp_core"; // WP core 9 | 10 | // Modal can't be inside wrapper 11 | @import "1-frameworks/bootstrap/functions"; 12 | @import "1-frameworks/bootstrap/variables-rtl"; 13 | @import "1-frameworks/bootstrap/mixins-rtl"; 14 | @import "1-frameworks/bootstrap/root"; 15 | @import "1-frameworks/bootstrap/modal-rtl"; 16 | @import "1-frameworks/bootstrap/tooltip"; 17 | @import "1-frameworks/bootstrap/popover-rtl"; 18 | 19 | // select2 can't be inside wrapper 20 | @import '1-frameworks/select2/core'; 21 | 22 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/bootstrap-grid.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Grid v4.6.2 (https://getbootstrap.com/) 3 | * Copyright 2011-2022 The Bootstrap Authors 4 | * Copyright 2011-2022 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | */ 7 | 8 | html { 9 | box-sizing: border-box; 10 | -ms-overflow-style: scrollbar; 11 | } 12 | 13 | *, 14 | *::before, 15 | *::after { 16 | box-sizing: inherit; 17 | } 18 | 19 | @import "functions"; 20 | @import "variables"; 21 | 22 | @import "mixins/deprecate"; 23 | @import "mixins/breakpoints"; 24 | @import "mixins/grid-framework"; 25 | @import "mixins/grid"; 26 | 27 | @import "grid"; 28 | @import "utilities/display"; 29 | @import "utilities/flex"; 30 | @import "utilities/spacing"; 31 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/select2/_multiple.scss: -------------------------------------------------------------------------------- 1 | .select2-selection--multiple { 2 | box-sizing: border-box; 3 | 4 | cursor: pointer; 5 | display: block; 6 | 7 | min-height: 32px; 8 | 9 | user-select: none; 10 | -webkit-user-select: none; 11 | 12 | .select2-selection__rendered { 13 | display: inline-block; 14 | overflow: hidden; 15 | padding-left: 8px; 16 | text-overflow: ellipsis; 17 | white-space: nowrap; 18 | } 19 | } 20 | 21 | .select2-search--inline { 22 | float: left; 23 | 24 | .select2-search__field { 25 | box-sizing: border-box; 26 | border: none; 27 | font-size: 100%; 28 | margin-top: 5px; 29 | padding: 0; 30 | 31 | &::-webkit-search-cancel-button { 32 | -webkit-appearance: none; 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/previews/select.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 22 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/select2/_multiple.scss: -------------------------------------------------------------------------------- 1 | .select2-selection--multiple { 2 | box-sizing: border-box; 3 | 4 | cursor: pointer; 5 | display: block; 6 | 7 | min-height: 32px; 8 | 9 | user-select: none; 10 | -webkit-user-select: none; 11 | 12 | .select2-selection__rendered { 13 | display: inline-block; 14 | overflow: hidden; 15 | padding-left: 8px; 16 | text-overflow: ellipsis; 17 | white-space: nowrap; 18 | } 19 | } 20 | 21 | .select2-search--inline { 22 | float: left; 23 | 24 | .select2-search__field { 25 | box-sizing: border-box; 26 | border: none; 27 | font-size: 100%; 28 | margin-top: 5px; 29 | padding: 0; 30 | 31 | &::-webkit-search-cancel-button { 32 | -webkit-appearance: none; 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/partials/_iconbox.scss: -------------------------------------------------------------------------------- 1 | // Icons 2 | .iconbox { 3 | border:1px solid; 4 | text-align:center; 5 | display:inline-block; 6 | 7 | &.iconextrasmall { 8 | width:32px; 9 | height:32px; 10 | line-height:32px; 11 | font-size:0.9rem; 12 | } 13 | 14 | &.iconsmall { 15 | width:40px; 16 | height:40px; 17 | line-height:40px; 18 | font-size:1rem; 19 | } 20 | 21 | &.iconsmallmedium { 22 | width:48px; 23 | height:48px; 24 | line-height:48px; 25 | font-size:1.4rem; 26 | } 27 | 28 | &.iconmedium { 29 | width:60px; 30 | height:60px; 31 | line-height:60px; 32 | font-size:1.8rem; 33 | } 34 | 35 | &.iconlarge { 36 | width:80px; 37 | height:80px; 38 | line-height:80px; 39 | font-size:2.2rem; 40 | } 41 | } -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/Plugin.php: -------------------------------------------------------------------------------- 1 | installer = new Installer($io, $composer); 16 | $composer->getInstallationManager()->addInstaller($this->installer); 17 | } 18 | 19 | public function deactivate(Composer $composer, IOInterface $io) 20 | { 21 | $composer->getInstallationManager()->removeInstaller($this->installer); 22 | } 23 | 24 | public function uninstall(Composer $composer, IOInterface $io) 25 | { 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php: -------------------------------------------------------------------------------- 1 | 'src/{$name}/' 8 | ); 9 | 10 | /** 11 | * Format package name to CamelCase 12 | */ 13 | public function inflectPackageVars($vars) 14 | { 15 | $nameParts = explode('/', $vars['name']); 16 | foreach ($nameParts as &$value) { 17 | $value = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $value)); 18 | $value = str_replace(array('-', '_'), ' ', $value); 19 | $value = str_replace(' ', '', ucwords($value)); 20 | } 21 | $vars['name'] = implode('/', $nameParts); 22 | return $vars; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php: -------------------------------------------------------------------------------- 1 | 'modules/{$vendor}/{$name}/', 9 | 'plugin' => 'plugins/{$vendor}/{$name}/' 10 | ); 11 | 12 | public function inflectPackageVars($vars) 13 | { 14 | return $this->parseVars($vars); 15 | } 16 | 17 | protected function parseVars($vars) 18 | { 19 | $vars['vendor'] = strtolower($vars['vendor']) == 'sitedirect' ? 'SiteDirect' : $vars['vendor']; 20 | $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']); 21 | $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); 22 | 23 | return $vars; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /templates/invoice/footer.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
15 |
16 | 17 | 18 |
19 | 20 |
21 | 22 | 23 | 26 | 27 |
28 |
29 | 30 | 1 { 8 | @each $value in $transition { 9 | @if $value == null or $value == none { 10 | @warn "The keyword 'none' or 'null' must be used as a single argument."; 11 | } 12 | } 13 | } 14 | 15 | @if $enable-transitions { 16 | @if nth($transition, 1) != null { 17 | transition: $transition; 18 | } 19 | 20 | @if $enable-reduced-motion and nth($transition, 1) != null and nth($transition, 1) != none { 21 | @media (prefers-reduced-motion: reduce) { 22 | transition: none; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 15 | 16 | * 17 | 18 | 19 |
20 | 21 | 22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/bootstrap/helpers/_position.scss: -------------------------------------------------------------------------------- 1 | // Shorthand 2 | 3 | .fixed-top { 4 | position: fixed; 5 | top: 0; 6 | right: 0; 7 | left: 0; 8 | z-index: $zindex-fixed; 9 | } 10 | 11 | .fixed-bottom { 12 | position: fixed; 13 | right: 0; 14 | bottom: 0; 15 | left: 0; 16 | z-index: $zindex-fixed; 17 | } 18 | 19 | // Responsive sticky top and bottom 20 | @each $breakpoint in map-keys($grid-breakpoints) { 21 | @include media-breakpoint-up($breakpoint) { 22 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints); 23 | 24 | .sticky#{$infix}-top { 25 | position: sticky; 26 | top: 0; 27 | z-index: $zindex-sticky; 28 | } 29 | 30 | .sticky#{$infix}-bottom { 31 | position: sticky; 32 | bottom: 0; 33 | z-index: $zindex-sticky; 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php: -------------------------------------------------------------------------------- 1 | 'cockpit/modules/addons/{$name}/', 8 | ); 9 | 10 | /** 11 | * Format module name. 12 | * 13 | * Strip `module-` prefix from package name. 14 | * 15 | * {@inheritDoc} 16 | */ 17 | public function inflectPackageVars($vars) 18 | { 19 | if ($vars['type'] == 'cockpit-module') { 20 | return $this->inflectModuleVars($vars); 21 | } 22 | 23 | return $vars; 24 | } 25 | 26 | public function inflectModuleVars($vars) 27 | { 28 | $vars['name'] = ucfirst(preg_replace('/cockpit-/i', '', $vars['name'])); 29 | 30 | return $vars; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/HuradInstaller.php: -------------------------------------------------------------------------------- 1 | 'plugins/{$name}/', 8 | 'theme' => 'plugins/{$name}/', 9 | ); 10 | 11 | /** 12 | * Format package name to CamelCase 13 | */ 14 | public function inflectPackageVars($vars) 15 | { 16 | $nameParts = explode('/', $vars['name']); 17 | foreach ($nameParts as &$value) { 18 | $value = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $value)); 19 | $value = str_replace(array('-', '_'), ' ', $value); 20 | $value = str_replace(' ', '', ucwords($value)); 21 | } 22 | $vars['name'] = implode('/', $nameParts); 23 | return $vars; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/mixins/_transition.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable property-disallowed-list 2 | @mixin transition($transition...) { 3 | @if length($transition) == 0 { 4 | $transition: $transition-base; 5 | } 6 | 7 | @if length($transition) > 1 { 8 | @each $value in $transition { 9 | @if $value == null or $value == none { 10 | @warn "The keyword 'none' or 'null' must be used as a single argument."; 11 | } 12 | } 13 | } 14 | 15 | @if $enable-transitions { 16 | @if nth($transition, 1) != null { 17 | transition: $transition; 18 | } 19 | 20 | @if $enable-prefers-reduced-motion-media-query and nth($transition, 1) != null and nth($transition, 1) != none { 21 | @media (prefers-reduced-motion: reduce) { 22 | transition: none; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/YawikInstaller.php: -------------------------------------------------------------------------------- 1 | 'module/{$name}/', 16 | ); 17 | 18 | /** 19 | * Format package name to CamelCase 20 | * @param array $vars 21 | * 22 | * @return array 23 | */ 24 | public function inflectPackageVars($vars) 25 | { 26 | $vars['name'] = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $vars['name'])); 27 | $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']); 28 | $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); 29 | 30 | return $vars; 31 | } 32 | } -------------------------------------------------------------------------------- /templates/invoice/header.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
15 |
16 |
17 | 18 |
19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 |
27 |
28 |
29 | 30 | get_parent_payment(); 14 | 15 | // Print the email header. 16 | do_action( 'wpinv_email_header', $email_heading, $invoice, $email_type, $sent_to_admin ); 17 | 18 | // Generate the custom message body. 19 | echo wp_kses_post( $message_body ); 20 | 21 | // Print the billing details. 22 | do_action( 'wpinv_email_billing_details', $invoice, $email_type, $sent_to_admin ); 23 | 24 | // Print the email footer. 25 | do_action( 'wpinv_email_footer', $invoice, $email_type, $sent_to_admin ); 26 | -------------------------------------------------------------------------------- /templates/emails/wpinv-email-subscription_cancelled.php: -------------------------------------------------------------------------------- 1 | get_parent_payment(); 14 | 15 | // Print the email header. 16 | do_action( 'wpinv_email_header', $email_heading, $invoice, $email_type, $sent_to_admin ); 17 | 18 | // Generate the custom message body. 19 | echo wp_kses_post( $message_body ); 20 | 21 | // Print the billing details. 22 | do_action( 'wpinv_email_billing_details', $invoice, $email_type, $sent_to_admin ); 23 | 24 | // Print the email footer. 25 | do_action( 'wpinv_email_footer', $invoice, $email_type, $sent_to_admin ); 26 | -------------------------------------------------------------------------------- /templates/emails/wpinv-email-subscription_expired.php: -------------------------------------------------------------------------------- 1 | get_parent_payment(); 14 | 15 | // Print the email header. 16 | do_action( 'wpinv_email_header', $email_heading, $invoice, $email_type, $sent_to_admin ); 17 | 18 | // Generate the custom message body. 19 | echo wp_kses_post( $message_body ); 20 | 21 | // Print the billing details. 22 | do_action( 'wpinv_email_billing_details', $invoice, $email_type, $sent_to_admin ); 23 | 24 | // Print the email footer. 25 | do_action( 'wpinv_email_footer', $invoice, $email_type, $sent_to_admin ); 26 | -------------------------------------------------------------------------------- /templates/emails/wpinv-email-subscription_trial.php: -------------------------------------------------------------------------------- 1 | get_parent_payment(); 14 | 15 | // Print the email header. 16 | do_action( 'wpinv_email_header', $email_heading, $invoice, $email_type, $sent_to_admin ); 17 | 18 | // Generate the custom message body. 19 | echo wp_kses_post( $message_body ); 20 | 21 | // Print the billing details. 22 | do_action( 'wpinv_email_billing_details', $invoice, $email_type, $sent_to_admin ); 23 | 24 | // Print the email footer. 25 | do_action( 'wpinv_email_footer', $invoice, $email_type, $sent_to_admin ); 26 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/partials/_animations.scss: -------------------------------------------------------------------------------- 1 | @-webkit-keyframes bsui_shimmer { 2 | 0%{background-position:-400px} 3 | 100%{background-position:400px} 4 | } 5 | @-moz-keyframes bsui_shimmer { 6 | 0%{background-position:-400px} 7 | 100%{background-position:400px} 8 | } 9 | @keyframes bsui_shimmer { 10 | 0%{background-position:-400px} 11 | 100%{background-position:400px} 12 | } 13 | 14 | 15 | .bg-loading { 16 | background: #f6f7f8; 17 | background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%); 18 | background-repeat: no-repeat; 19 | background-size: 800px 104px; 20 | display: inline-block; 21 | position: relative; 22 | -webkit-animation: bsui_shimmer 1s linear infinite forwards; 23 | -moz-animation: bsui_shimmer 1s linear infinite forwards; 24 | animation: bsui_shimmer 1s linear infinite forwards; 25 | } -------------------------------------------------------------------------------- /templates/emails/wpinv-email-subscription_complete.php: -------------------------------------------------------------------------------- 1 | get_parent_payment(); 14 | 15 | // Print the email header. 16 | do_action( 'wpinv_email_header', $email_heading, $invoice, $email_type, $sent_to_admin ); 17 | 18 | // Generate the custom message body. 19 | echo wp_kses_post( $message_body ); 20 | 21 | // Print the billing details. 22 | do_action( 'wpinv_email_billing_details', $invoice, $email_type, $sent_to_admin ); 23 | 24 | // Print the email footer. 25 | do_action( 'wpinv_email_footer', $invoice, $email_type, $sent_to_admin ); 26 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/components/_alert.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Alert 3 | // -------------------------------------------------- 4 | 5 | 6 | // Icons and dividers 7 | 8 | .alert { 9 | [class^='fi-'], [class*=' fi-'] { 10 | margin-top: .175rem; 11 | } 12 | hr { color: rgba($black, .1); } 13 | } 14 | 15 | 16 | // Secondary / light alert 17 | 18 | .alert-secondary { 19 | border-color: $gray-400; 20 | background-color: $secondary; 21 | } 22 | .alert-secondary, 23 | .alert-light { 24 | color: $gray-800; 25 | .alert-link { color: $gray-900; } 26 | } 27 | 28 | 29 | // Dark alert 30 | 31 | .alert-dark { 32 | border-color: $dark; 33 | background-color: $dark; 34 | color: $white; 35 | .alert-link { color: $white; } 36 | } 37 | 38 | 39 | // Dismissible alert 40 | 41 | .alert-dismissible .btn-close { 42 | padding-top: $alert-padding-y * 1.5; 43 | } 44 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/components/_image-swap.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Image swap utility 3 | // ---------------------------------------------------------- 4 | 5 | 6 | .swap-image { 7 | display: inline-block; 8 | position: relative; 9 | user-select: none; 10 | 11 | .swap-from, 12 | .swap-to { 13 | display: block; 14 | transition: opacity .3s ease-in-out; 15 | } 16 | 17 | .swap-to { 18 | position: absolute; 19 | top: 0; 20 | left: 0; 21 | opacity: 0; 22 | z-index: 0; 23 | } 24 | 25 | &:hover, &.active { 26 | .swap-from { opacity: 0; } 27 | .swap-to { opacity: 1; } 28 | } 29 | } 30 | 31 | 32 | // Inside card 33 | 34 | .card:hover > .swap-image, 35 | .card.card-active > .swap-image { 36 | .swap-from, 37 | .swap-to { transition-duration: .25s; } 38 | .swap-from { opacity: 0; } 39 | .swap-to { opacity: 1; } 40 | } 41 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/components/_star-rating.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Star rating 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base styles 7 | 8 | .star-rating { 9 | display: inline-block; 10 | white-space: nowrap; 11 | } 12 | 13 | .star-rating-icon { 14 | display: inline-block; 15 | margin-right: .125rem; 16 | color: $star-rating-icon-color; 17 | font-size: $star-rating-icon-size; 18 | 19 | &.active { 20 | color: $star-rating-icon-active-color; 21 | } 22 | } 23 | 24 | 25 | // Light version 26 | 27 | .text-light, 28 | .text-white { 29 | .star-rating-icon { 30 | color: $star-rating-light-icon-color; 31 | &.active { 32 | color: $star-rating-icon-active-color; 33 | } 34 | } 35 | } 36 | 37 | 38 | // Sizing 39 | 40 | .star-rating-sm .star-rating-icon { 41 | font-size: $star-rating-sm-icon-size; 42 | } 43 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/components/_tables.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Tables 3 | // -------------------------------------------------- 4 | 5 | .table:not(.table-dark) { 6 | thead:not(.thead-dark) th, 7 | tbody th { 8 | color: $table-th-color !important; 9 | } 10 | td { color: $table-color !important; } 11 | } 12 | .table-dark td { 13 | color: $table-dark-color; 14 | } 15 | .table-secondary, 16 | .table-secondary > th, 17 | .table-secondary > td { 18 | background-color: $secondary; 19 | } 20 | // .table > :not(:last-child) > :last-child > * { 21 | // border-bottom-color: darken($table-border-color, 15%); 22 | // } 23 | .table.table-dark > :not(:last-child) > :last-child > * { 24 | border-bottom-color: rgba($white, .5); 25 | } 26 | 27 | // Remove highlight border color between thead, tbody and tfoot. 28 | .table > :not(:first-child) { 29 | border-top: 0; 30 | } 31 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/partials/_animations.scss: -------------------------------------------------------------------------------- 1 | @-webkit-keyframes bsui_shimmer { 2 | 0%{background-position:-400px} 3 | 100%{background-position:400px} 4 | } 5 | @-moz-keyframes bsui_shimmer { 6 | 0%{background-position:-400px} 7 | 100%{background-position:400px} 8 | } 9 | @keyframes bsui_shimmer { 10 | 0%{background-position:-400px} 11 | 100%{background-position:400px} 12 | } 13 | 14 | 15 | .bg-loading { 16 | background: #f6f7f8; 17 | background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%); 18 | background-repeat: no-repeat; 19 | background-size: 800px 104px; 20 | display: inline-block; 21 | position: relative; 22 | -webkit-animation: bsui_shimmer 1s linear infinite forwards; 23 | -moz-animation: bsui_shimmer 1s linear infinite forwards; 24 | animation: bsui_shimmer 1s linear infinite forwards; 25 | } -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php: -------------------------------------------------------------------------------- 1 | 'extensions/{$name}/', 8 | 'theme' => 'extensions/themes/{$name}/', 9 | 'translation' => 'extensions/translations/{$name}/', 10 | ); 11 | 12 | /** 13 | * Format package name to lower case and remove ".ontowiki" suffix 14 | */ 15 | public function inflectPackageVars($vars) 16 | { 17 | $vars['name'] = strtolower($vars['name']); 18 | $vars['name'] = preg_replace('/.ontowiki$/', '', $vars['name']); 19 | $vars['name'] = preg_replace('/-theme$/', '', $vars['name']); 20 | $vars['name'] = preg_replace('/-translation$/', '', $vars['name']); 21 | 22 | return $vars; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/GravInstaller.php: -------------------------------------------------------------------------------- 1 | 'user/plugins/{$name}/', 8 | 'theme' => 'user/themes/{$name}/', 9 | ); 10 | 11 | /** 12 | * Format package name 13 | * 14 | * @param array $vars 15 | * 16 | * @return array 17 | */ 18 | public function inflectPackageVars($vars) 19 | { 20 | $restrictedWords = implode('|', array_keys($this->locations)); 21 | 22 | $vars['name'] = strtolower($vars['name']); 23 | $vars['name'] = preg_replace('/^(?:grav-)?(?:(?:'.$restrictedWords.')-)?(.*?)(?:-(?:'.$restrictedWords.'))?$/ui', 24 | '$1', 25 | $vars['name'] 26 | ); 27 | 28 | return $vars; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php: -------------------------------------------------------------------------------- 1 | 'plugins/{$name}/', 16 | ); 17 | 18 | /** 19 | * Format package name to CamelCase 20 | * @param array $vars 21 | * 22 | * @return array 23 | */ 24 | public function inflectPackageVars($vars) 25 | { 26 | $vars['name'] = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $vars['name'])); 27 | $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']); 28 | $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); 29 | 30 | return $vars; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php: -------------------------------------------------------------------------------- 1 | '{$name}/' 8 | ); 9 | 10 | /** 11 | * Remove hyphen, "plugin" and format to camelcase 12 | * @param array $vars 13 | * 14 | * @return array 15 | */ 16 | public function inflectPackageVars($vars) 17 | { 18 | $vars['name'] = explode("-", $vars['name']); 19 | foreach ($vars['name'] as $key => $name) { 20 | $vars['name'][$key] = ucfirst($vars['name'][$key]); 21 | if (strcasecmp($name, "Plugin") == 0) { 22 | unset($vars['name'][$key]); 23 | } 24 | } 25 | $vars['name'] = implode("",$vars['name']); 26 | 27 | return $vars; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/components/_overlay.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Overlay 3 | // -------------------------------------------------- 4 | 5 | 6 | // Image overlay 7 | 8 | .img-overlay, 9 | .img-gradient-overlay { 10 | position: absolute; 11 | display: block; 12 | top: 0; 13 | left: 0; 14 | width: 100%; 15 | height: 100%; 16 | transition: opacity .25s ease-in-out; 17 | background-color: $gray-900; 18 | opacity: .5; 19 | z-index: 1; 20 | } 21 | .img-gradient-overlay { 22 | background: rgba($gray-900, .5); 23 | background: linear-gradient(180deg, rgba($gray-900, 0) 0%, rgba($gray-900, 0.1) 26.56%, rgba($gray-900, 0.28) 42.71%, rgba($gray-900, 0.48) 56.77%, rgba($gray-900, 0.68) 72.4%, rgba($gray-900, 0.85) 86.98%, rgba($gray-900, 0.94) 100%); 24 | opacity: 1; 25 | } 26 | 27 | 28 | // Content overlay 29 | 30 | .content-overlay { 31 | position: relative; 32 | z-index: 5; 33 | } 34 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php: -------------------------------------------------------------------------------- 1 | 'plugins/{$name}/', 10 | 'template' => 'templates/{$name}/', 11 | 'document-template' => 'documents/templates/{$name}/', 12 | 'userpanel-module' => 'userpanel/modules/{$name}/', 13 | ); 14 | 15 | /** 16 | * Format package name to CamelCase 17 | */ 18 | public function inflectPackageVars($vars) 19 | { 20 | $vars['name'] = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $vars['name'])); 21 | $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']); 22 | $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); 23 | 24 | return $vars; 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php: -------------------------------------------------------------------------------- 1 | 'system/expressionengine/third_party/{$name}/', 13 | 'theme' => 'themes/third_party/{$name}/', 14 | ); 15 | 16 | private $ee3Locations = array( 17 | 'addon' => 'system/user/addons/{$name}/', 18 | 'theme' => 'themes/user/{$name}/', 19 | ); 20 | 21 | public function getInstallPath(PackageInterface $package, $frameworkType = '') 22 | { 23 | 24 | $version = "{$frameworkType}Locations"; 25 | $this->locations = $this->$version; 26 | 27 | return parent::getInstallPath($package, $frameworkType); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /templates/invoice/details.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 15 | 16 |
17 |
18 | 19 |
20 | 21 |
22 | 23 |
24 | 25 |
26 | 27 |
28 |
29 | 30 | 31 | 32 | *"; 17 | } 18 | 19 | aui()->input( 20 | array( 21 | 'type' => 'checkbox', 22 | 'name' => esc_attr( $id ), 23 | 'id' => esc_attr( $element_id ), 24 | 'required' => ! empty( $required ), 25 | 'label' => $label, 26 | 'value' => esc_attr__( 'Yes', 'invoicing' ), 27 | 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), 28 | 'class' => $label_class 29 | ), 30 | true 31 | ); 32 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/TaoInstaller.php: -------------------------------------------------------------------------------- 1 | '{$name}' 13 | ); 14 | 15 | public function inflectPackageVars($vars) 16 | { 17 | $extra = $this->package->getExtra(); 18 | 19 | if (array_key_exists(self::EXTRA_TAO_EXTENSION_NAME, $extra)) { 20 | $vars['name'] = $extra[self::EXTRA_TAO_EXTENSION_NAME]; 21 | return $vars; 22 | } 23 | 24 | $vars['name'] = str_replace('extension-', '', $vars['name']); 25 | $vars['name'] = str_replace('-', ' ', $vars['name']); 26 | $vars['name'] = lcfirst(str_replace(' ', '', ucwords($vars['name']))); 27 | 28 | return $vars; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php: -------------------------------------------------------------------------------- 1 | 'modules/addons/{$vendor}_{$name}/', 9 | 'fraud' => 'modules/fraud/{$vendor}_{$name}/', 10 | 'gateways' => 'modules/gateways/{$vendor}_{$name}/', 11 | 'notifications' => 'modules/notifications/{$vendor}_{$name}/', 12 | 'registrars' => 'modules/registrars/{$vendor}_{$name}/', 13 | 'reports' => 'modules/reports/{$vendor}_{$name}/', 14 | 'security' => 'modules/security/{$vendor}_{$name}/', 15 | 'servers' => 'modules/servers/{$vendor}_{$name}/', 16 | 'social' => 'modules/social/{$vendor}_{$name}/', 17 | 'support' => 'modules/support/{$vendor}_{$name}/', 18 | 'templates' => 'templates/{$vendor}_{$name}/', 19 | 'includes' => 'includes/{$vendor}_{$name}/' 20 | ); 21 | } 22 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/bootstrap-grid-rtl.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Grid v4.6.2 (https://getbootstrap.com/) 3 | * Copyright 2011-2022 The Bootstrap Authors 4 | * Copyright 2011-2022 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | * RTL-ized by Arash Laylazi (https://github.com/PerseusTheGreat) 7 | * RTL rev. 1 (https://github.com/PerseusTheGreat/bootstrap-rtl) 8 | */ 9 | 10 | html { 11 | box-sizing: border-box; 12 | -ms-overflow-style: scrollbar; 13 | direction: rtl; //rtl 14 | } 15 | 16 | *, 17 | *::before, 18 | *::after { 19 | box-sizing: inherit; 20 | } 21 | 22 | @import "functions"; 23 | @import "variables-rtl"; 24 | 25 | @import "mixins/deprecate"; 26 | @import "mixins/breakpoints"; 27 | @import "mixins/grid-framework"; 28 | @import "mixins/grid-rtl"; 29 | 30 | @import "grid"; 31 | @import "utilities/display"; 32 | @import "utilities/flex"; 33 | @import "utilities/spacing"; 34 | -------------------------------------------------------------------------------- /templates/invoice/details-top.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 15 | 16 |
17 |
18 |
19 | 20 |
21 | 22 |
23 | 24 |
25 |
26 |
27 | 28 | 29 | 30 | a { 24 | color: $breadcrumb-color; 25 | text-decoration: none; 26 | &:hover { 27 | color: $breadcrumb-hover-color; 28 | } 29 | } 30 | } 31 | 32 | 33 | // Light version 34 | 35 | .breadcrumb-light .breadcrumb-item { 36 | > a { 37 | color: $breadcrumb-light-color; 38 | &:hover { 39 | color: $breadcrumb-light-hover-color; 40 | } 41 | } 42 | &.active { color: $breadcrumb-light-active-color; } 43 | + .breadcrumb-item::before { 44 | color: $breadcrumb-light-divider-color; 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/mixins/_hover.scss: -------------------------------------------------------------------------------- 1 | // Hover mixin and `$enable-hover-media-query` are deprecated. 2 | // 3 | // Originally added during our alphas and maintained during betas, this mixin was 4 | // designed to prevent `:hover` stickiness on iOS-an issue where hover styles 5 | // would persist after initial touch. 6 | // 7 | // For backward compatibility, we've kept these mixins and updated them to 8 | // always return their regular pseudo-classes instead of a shimmed media query. 9 | // 10 | // Issue: https://github.com/twbs/bootstrap/issues/25195 11 | 12 | @mixin hover() { 13 | &:hover { @content; } 14 | } 15 | 16 | @mixin hover-focus() { 17 | &:hover, 18 | &:focus { 19 | @content; 20 | } 21 | } 22 | 23 | @mixin plain-hover-focus() { 24 | &, 25 | &:hover, 26 | &:focus { 27 | @content; 28 | } 29 | } 30 | 31 | @mixin hover-focus-active() { 32 | &:hover, 33 | &:focus, 34 | &:active { 35 | @content; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MayaInstaller.php: -------------------------------------------------------------------------------- 1 | 'modules/{$name}/', 8 | ); 9 | 10 | /** 11 | * Format package name. 12 | * 13 | * For package type maya-module, cut off a trailing '-module' if present. 14 | * 15 | */ 16 | public function inflectPackageVars($vars) 17 | { 18 | if ($vars['type'] === 'maya-module') { 19 | return $this->inflectModuleVars($vars); 20 | } 21 | 22 | return $vars; 23 | } 24 | 25 | protected function inflectModuleVars($vars) 26 | { 27 | $vars['name'] = preg_replace('/-module$/', '', $vars['name']); 28 | $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']); 29 | $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); 30 | 31 | return $vars; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /vendor/maxmind-db/reader/ext/php_maxminddb.h: -------------------------------------------------------------------------------- 1 | /* MaxMind, Inc., licenses this file to you under the Apache License, Version 2 | * 2.0 (the "License"); you may not use this file except in compliance with 3 | * the License. You may obtain a copy of the License at 4 | * 5 | * http://www.apache.org/licenses/LICENSE-2.0 6 | * 7 | * Unless required by applicable law or agreed to in writing, software 8 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 9 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 10 | * License for the specific language governing permissions and limitations 11 | * under the License. 12 | */ 13 | 14 | #include 15 | 16 | #ifndef PHP_MAXMINDDB_H 17 | #define PHP_MAXMINDDB_H 1 18 | #define PHP_MAXMINDDB_VERSION "1.6.0" 19 | #define PHP_MAXMINDDB_EXTNAME "maxminddb" 20 | 21 | extern zend_module_entry maxminddb_module_entry; 22 | #define phpext_maxminddb_ptr &maxminddb_module_entry 23 | 24 | #endif 25 | -------------------------------------------------------------------------------- /templates/emails/wpinv-email-new_invoice.php: -------------------------------------------------------------------------------- 1 | 'core/', 8 | 'module' => 'modules/{$name}/', 9 | 'theme' => 'themes/{$name}/', 10 | 'library' => 'libraries/{$name}/', 11 | 'profile' => 'profiles/{$name}/', 12 | 'database-driver' => 'drivers/lib/Drupal/Driver/Database/{$name}/', 13 | 'drush' => 'drush/{$name}/', 14 | 'custom-theme' => 'themes/custom/{$name}/', 15 | 'custom-module' => 'modules/custom/{$name}/', 16 | 'custom-profile' => 'profiles/custom/{$name}/', 17 | 'drupal-multisite' => 'sites/{$name}/', 18 | 'console' => 'console/{$name}/', 19 | 'console-language' => 'console/language/{$name}/', 20 | 'config' => 'config/sync/', 21 | ); 22 | } 23 | -------------------------------------------------------------------------------- /templates/emails/wpinv-email-refunded_invoice.php: -------------------------------------------------------------------------------- 1 | 'craft/plugins/{$name}/', 14 | ); 15 | 16 | /** 17 | * Strip `craft-` prefix and/or `-plugin` suffix from package names 18 | * 19 | * @param array $vars 20 | * 21 | * @return array 22 | */ 23 | final public function inflectPackageVars($vars) 24 | { 25 | return $this->inflectPluginVars($vars); 26 | } 27 | 28 | private function inflectPluginVars($vars) 29 | { 30 | $vars['name'] = preg_replace('/-' . self::NAME_SUFFIX . '$/i', '', $vars['name']); 31 | $vars['name'] = preg_replace('/^' . self::NAME_PREFIX . '-/i', '', $vars['name']); 32 | 33 | return $vars; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /templates/emails/wpinv-email-cancelled_invoice.php: -------------------------------------------------------------------------------- 1 | th, 9 | > td { 10 | background-color: $background; 11 | } 12 | 13 | @if $border != null { 14 | th, 15 | td, 16 | thead th, 17 | tbody + tbody { 18 | border-color: $border; 19 | } 20 | } 21 | } 22 | 23 | // Hover states for `.table-hover` 24 | // Note: this is not available for cells or rows within `thead` or `tfoot`. 25 | .table-hover { 26 | $hover-background: darken($background, 5%); 27 | 28 | .table-#{$state} { 29 | @include hover() { 30 | background-color: $hover-background; 31 | 32 | > td, 33 | > th { 34 | background-color: $hover-background; 35 | } 36 | } 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /vendor/composer/platform_check.php: -------------------------------------------------------------------------------- 1 | = 50600)) { 8 | $issues[] = 'Your Composer dependencies require a PHP version ">= 5.6.0". You are running ' . PHP_VERSION . '.'; 9 | } 10 | 11 | if ($issues) { 12 | if (!headers_sent()) { 13 | header('HTTP/1.1 500 Internal Server Error'); 14 | } 15 | if (!ini_get('display_errors')) { 16 | if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { 17 | fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL); 18 | } elseif (!headers_sent()) { 19 | echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL; 20 | } 21 | } 22 | throw new \RuntimeException( 23 | 'Composer detected issues in your platform: ' . implode(' ', $issues) 24 | ); 25 | } 26 | -------------------------------------------------------------------------------- /templates/payment-forms-admin/previews/file_upload.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 15 |
16 |
17 | 18 | 19 |
20 | 21 |
22 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/mixins/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Only display content to screen readers 2 | // 3 | // See: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/ 4 | // See: https://kittygiraudel.com/2016/10/13/css-hide-and-seek/ 5 | 6 | @mixin sr-only() { 7 | position: absolute; 8 | width: 1px; 9 | height: 1px; 10 | padding: 0; 11 | margin: -1px; // Fix for https://github.com/twbs/bootstrap/issues/25686 12 | overflow: hidden; 13 | clip: rect(0, 0, 0, 0); 14 | white-space: nowrap; 15 | border: 0; 16 | } 17 | 18 | // Use in conjunction with .sr-only to only display content when it's focused. 19 | // 20 | // Useful for "Skip to main content" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 21 | // 22 | // Credit: HTML5 Boilerplate 23 | 24 | @mixin sr-only-focusable() { 25 | &:active, 26 | &:focus { 27 | position: static; 28 | width: auto; 29 | height: auto; 30 | overflow: visible; 31 | clip: auto; 32 | white-space: normal; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /assets/images/GetPaid.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-super-duper/sd-plugin.php: -------------------------------------------------------------------------------- 1 | 'plugins/{$name}/', 12 | ); 13 | 14 | /** 15 | * Transforms the names 16 | * @param array $vars 17 | * @return array 18 | */ 19 | public function inflectPackageVars($vars) 20 | { 21 | return $this->correctPluginName($vars); 22 | } 23 | 24 | /** 25 | * Change hyphenated names to camelcase 26 | * @param array $vars 27 | * @return array 28 | */ 29 | private function correctPluginName($vars) 30 | { 31 | $camelCasedName = preg_replace_callback('/(-[a-z])/', function ($matches) { 32 | return strtoupper($matches[0][1]); 33 | }, $vars['name']); 34 | $vars['name'] = ucfirst($camelCasedName); 35 | return $vars; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php: -------------------------------------------------------------------------------- 1 | 'extensions/{$vendor}/{$name}/', 9 | 'theme' => 'themes/{$name}/', 10 | ); 11 | 12 | /** 13 | * Format package name. 14 | * 15 | * Cut off leading 'ti-ext-' or 'ti-theme-' if present. 16 | * Strip vendor name of characters that is not alphanumeric or an underscore 17 | * 18 | */ 19 | public function inflectPackageVars($vars) 20 | { 21 | if ($vars['type'] === 'tastyigniter-extension') { 22 | $vars['vendor'] = preg_replace('/[^a-z0-9_]/i', '', $vars['vendor']); 23 | $vars['name'] = preg_replace('/^ti-ext-/', '', $vars['name']); 24 | } 25 | 26 | if ($vars['type'] === 'tastyigniter-theme') { 27 | $vars['name'] = preg_replace('/^ti-theme-/', '', $vars['name']); 28 | } 29 | 30 | return $vars; 31 | } 32 | } -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/partials/_hover_effects.scss: -------------------------------------------------------------------------------- 1 | $transition-all: all ease .3s !default; /* Animation */ 2 | 3 | .hover-zoom{ 4 | transition: transform .2s; /* Animation */ 5 | &:hover{ 6 | transform: scale(1.2); 7 | } 8 | } 9 | 10 | .hover-shadow{ 11 | transition: $transition-all; 12 | &:hover{ 13 | box-shadow: $box-shadow !important; 14 | } 15 | } 16 | 17 | .hover-move-up{ 18 | top: 0; 19 | position: relative; 20 | transition: $transition-all; 21 | &:hover{ 22 | top: -10px !important; 23 | } 24 | } 25 | 26 | .hover-move-down{ 27 | bottom: 0; 28 | position: relative; 29 | transition: $transition-all; 30 | &:hover{ 31 | bottom: -10px !important; 32 | } 33 | } 34 | 35 | .hover-move-left{ 36 | left: 0; 37 | position: relative; 38 | transition: $transition-all; 39 | &:hover{ 40 | left: -10px !important; 41 | } 42 | } 43 | 44 | .hover-move-right{ 45 | right: 0; 46 | position: relative; 47 | transition: $transition-all; 48 | &:hover{ 49 | right: -10px !important; 50 | } 51 | } 52 | 53 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets/scss/1-frameworks/bootstrap/utilities/_embed.scss: -------------------------------------------------------------------------------- 1 | // Credit: Nicolas Gallagher and SUIT CSS. 2 | 3 | .embed-responsive { 4 | position: relative; 5 | display: block; 6 | width: 100%; 7 | padding: 0; 8 | overflow: hidden; 9 | 10 | &::before { 11 | display: block; 12 | content: ""; 13 | } 14 | 15 | .embed-responsive-item, 16 | iframe, 17 | embed, 18 | object, 19 | video { 20 | position: absolute; 21 | top: 0; 22 | bottom: 0; 23 | left: 0; 24 | width: 100%; 25 | height: 100%; 26 | border: 0; 27 | } 28 | } 29 | 30 | @each $embed-responsive-aspect-ratio in $embed-responsive-aspect-ratios { 31 | $embed-responsive-aspect-ratio-x: nth($embed-responsive-aspect-ratio, 1); 32 | $embed-responsive-aspect-ratio-y: nth($embed-responsive-aspect-ratio, 2); 33 | 34 | .embed-responsive-#{$embed-responsive-aspect-ratio-x}by#{$embed-responsive-aspect-ratio-y} { 35 | &::before { 36 | padding-top: percentage(divide($embed-responsive-aspect-ratio-y, $embed-responsive-aspect-ratio-x)); 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /templates/payment-forms/elements/textarea.php: -------------------------------------------------------------------------------- 1 | *"; 17 | } 18 | 19 | aui()->textarea( 20 | array( 21 | 'name' => esc_attr( $id ), 22 | 'id' => esc_attr( $element_id ), 23 | 'placeholder' => empty( $placeholder ) ? '' : esc_attr( $placeholder ), 24 | 'required' => ! empty( $required ), 25 | 'label' => $label, 26 | 'label_type' => 'vertical', 27 | 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), 28 | 'class' => $label_class, 29 | 'value' => $query_value, 30 | ), 31 | true 32 | ); 33 | -------------------------------------------------------------------------------- /templates/payment-forms/elements/text.php: -------------------------------------------------------------------------------- 1 | *"; 17 | } 18 | 19 | aui()->input( 20 | array( 21 | 'name' => esc_attr( $id ), 22 | 'id' => esc_attr( $element_id ), 23 | 'placeholder' => empty( $placeholder ) ? '' : esc_attr( $placeholder ), 24 | 'required' => ! empty( $required ), 25 | 'label' => $label, 26 | 'label_type' => 'vertical', 27 | 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), 28 | 'class' => esc_attr( $label_class ), 29 | 'value' => $query_value, 30 | ), 31 | true 32 | ); 33 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/1-frameworks/select2/theme/_single.scss: -------------------------------------------------------------------------------- 1 | .select2-container--bootstrap-5 { 2 | .select2-selection--single { 3 | padding: $s2bs5-padding-y $s2bs5-indicator-padding $s2bs5-padding-y $s2bs5-padding-x; 4 | background-image: escape-svg($s2bs5-indicator); 5 | background-repeat: no-repeat; 6 | background-position: $s2bs5-bg-position; 7 | background-size: $s2bs5-bg-size; 8 | 9 | // Rendered view 10 | .select2-selection__rendered { 11 | padding: 0; 12 | font-weight: $s2bs5-font-weight; 13 | line-height: $s2bs5-line-height; 14 | color: $s2bs5-color; 15 | 16 | // Placeholder 17 | .select2-selection__placeholder { 18 | font-weight: $s2bs5-font-weight; 19 | line-height: $s2bs5-line-height; 20 | color: $s2bs5-placeholder-color; 21 | } 22 | 23 | // Disable arrow 24 | .select2-selection__arrow { 25 | display: none; 26 | } 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /templates/frontend-footer.php: -------------------------------------------------------------------------------- 1 | 14 | 15 |
16 | 30 |
31 | -------------------------------------------------------------------------------- /templates/emails/wpinv-email-user_note.php: -------------------------------------------------------------------------------- 1 | *"; 17 | } 18 | 19 | aui()->input( 20 | array( 21 | 'name' => esc_attr( $id ), 22 | 'id' => esc_attr( $element_id ), 23 | 'placeholder' => empty( $placeholder ) ? '' : esc_attr( $placeholder ), 24 | 'required' => ! empty( $required ), 25 | 'label' => $label, 26 | 'label_type' => 'vertical', 27 | 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), 28 | 'type' => 'time', 29 | 'class' => $label_class, 30 | 'value' => $query_value, 31 | ), 32 | true 33 | ); 34 | -------------------------------------------------------------------------------- /vendor/ayecode/wp-ayecode-ui/assets-v5/scss/partials/_hover_effects.scss: -------------------------------------------------------------------------------- 1 | $transition-all: all ease .3s !default; /* Animation */ 2 | 3 | .transition-all{ 4 | transition: $transition-all; 5 | } 6 | .hover-zoom{ 7 | transition: transform .2s; /* Animation */ 8 | &:hover{ 9 | transform: scale(1.2); 10 | } 11 | } 12 | 13 | .hover-shadow{ 14 | transition: $transition-all; 15 | &:hover{ 16 | box-shadow: $box-shadow !important; 17 | } 18 | } 19 | 20 | .hover-move-up{ 21 | top: 0; 22 | position: relative; 23 | transition: $transition-all; 24 | &:hover{ 25 | top: -10px !important; 26 | } 27 | } 28 | 29 | .hover-move-down{ 30 | bottom: 0; 31 | position: relative; 32 | transition: $transition-all; 33 | &:hover{ 34 | bottom: -10px !important; 35 | } 36 | } 37 | 38 | .hover-move-left{ 39 | left: 0; 40 | position: relative; 41 | transition: $transition-all; 42 | &:hover{ 43 | left: -10px !important; 44 | } 45 | } 46 | 47 | .hover-move-right{ 48 | right: 0; 49 | position: relative; 50 | transition: $transition-all; 51 | &:hover{ 52 | right: -10px !important; 53 | } 54 | } 55 | 56 | -------------------------------------------------------------------------------- /templates/payment-forms/elements/email.php: -------------------------------------------------------------------------------- 1 | *"; 17 | } 18 | 19 | aui()->input( 20 | array( 21 | 'name' => esc_attr( $id ), 22 | 'id' => esc_attr( $element_id ), 23 | 'placeholder' => empty( $placeholder ) ? '' : esc_attr( $placeholder ), 24 | 'required' => ! empty( $required ), 25 | 'label' => $label, 26 | 'label_type' => 'vertical', 27 | 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), 28 | 'type' => 'email', 29 | 'class' => $label_class, 30 | 'value' => $query_value, 31 | ), 32 | true 33 | ); 34 | --------------------------------------------------------------------------------