├── vendor ├── freemius │ └── wordpress-sdk │ │ ├── templates │ │ ├── partials │ │ │ └── index.php │ │ ├── index.php │ │ ├── js │ │ │ ├── index.php │ │ │ ├── open-license-activation.php │ │ │ ├── jquery.content-change.php │ │ │ └── style-premium-theme.php │ │ ├── account │ │ │ ├── index.php │ │ │ ├── partials │ │ │ │ ├── index.php │ │ │ │ ├── deactivate-license-button.php │ │ │ │ └── activate-license-button.php │ │ │ └── payments.php │ │ ├── connect │ │ │ ├── index.php │ │ │ ├── permission.php │ │ │ └── permissions-group.php │ │ ├── debug │ │ │ ├── index.php │ │ │ ├── logger.php │ │ │ └── plugins-themes-sync.php │ │ ├── forms │ │ │ ├── index.php │ │ │ ├── deactivation │ │ │ │ ├── index.php │ │ │ │ ├── contact.php │ │ │ │ └── retry-skip.php │ │ │ └── premium-versions-upgrade-metadata.php │ │ ├── plugin-info │ │ │ ├── index.php │ │ │ ├── screenshots.php │ │ │ └── description.php │ │ ├── ajax-loader.php │ │ ├── plugin-icon.php │ │ ├── checkout.php │ │ ├── add-trial-to-pricing.php │ │ ├── api-connectivity-message-js.php │ │ ├── secure-https-header.php │ │ ├── email.php │ │ ├── sticky-admin-notice-js.php │ │ ├── tabs-capture-js.php │ │ ├── gdpr-optin-js.php │ │ ├── admin-notice.php │ │ ├── checkout │ │ │ └── redirect.php │ │ ├── clone-resolution-js.php │ │ └── contact.php │ │ ├── index.php │ │ ├── assets │ │ ├── index.php │ │ ├── css │ │ │ ├── index.php │ │ │ ├── admin │ │ │ │ ├── index.php │ │ │ │ ├── gdpr-optin-notice.css │ │ │ │ ├── plugins.css │ │ │ │ ├── checkout.css │ │ │ │ ├── debug.css │ │ │ │ ├── clone-resolution.css │ │ │ │ ├── affiliation.css │ │ │ │ └── optout.css │ │ │ └── customizer.css │ │ ├── img │ │ │ ├── index.php │ │ │ ├── theme-icon.png │ │ │ └── plugin-icon.png │ │ └── js │ │ │ ├── index.php │ │ │ ├── pricing │ │ │ ├── 178afa6030e76635dbe835e111d2c507.png │ │ │ ├── 27b5a722a5553d9de0170325267fccec.png │ │ │ ├── 4375c4a3ddc6f637c2ab9a2d7220f91e.png │ │ │ ├── 45da596e2b512ffc3bb638baaf0fdc4e.png │ │ │ ├── c03f665db27af43971565560adfba594.png │ │ │ ├── cb5fc4f6ec7ada72e986f6e7dde365bf.png │ │ │ ├── d65812c447b4523b42d59018e1c0bb53.png │ │ │ ├── f3aac72a8e63997d6bb888f816457e9b.png │ │ │ ├── fde48e4609a6ddc11d639fc2421f2afd.png │ │ │ └── freemius-pricing.js.LICENSE.txt │ │ │ ├── jquery.form.js │ │ │ ├── postmessage.js │ │ │ └── nojquery.ba-postmessage.js │ │ ├── includes │ │ ├── index.php │ │ ├── sdk │ │ │ ├── index.php │ │ │ └── Exceptions │ │ │ │ ├── index.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── EmptyArgumentException.php │ │ │ │ ├── ArgumentNotExistException.php │ │ │ │ ├── OAuthException.php │ │ │ │ └── Exception.php │ │ ├── debug │ │ │ ├── index.php │ │ │ ├── debug-bar-start.php │ │ │ └── class-fs-debug-bar-panel.php │ │ ├── entities │ │ │ ├── index.php │ │ │ ├── class-fs-scope-entity.php │ │ │ ├── class-fs-plugin-info.php │ │ │ ├── class-fs-plugin-tag.php │ │ │ ├── class-fs-billing.php │ │ │ ├── class-fs-affiliate.php │ │ │ ├── class-fs-user.php │ │ │ ├── class-fs-plugin-plan.php │ │ │ ├── class-fs-pricing.php │ │ │ └── class-fs-entity.php │ │ ├── managers │ │ │ ├── index.php │ │ │ ├── class-fs-contact-form-manager.php │ │ │ └── class-fs-license-manager.php │ │ ├── customizer │ │ │ ├── index.php │ │ │ └── class-fs-customizer-support-section.php │ │ ├── supplements │ │ │ ├── index.php │ │ │ ├── fs-migration-2.5.1.php │ │ │ ├── fs-essential-functions-1.1.7.1.php │ │ │ └── fs-essential-functions-2.2.1.php │ │ ├── l10n.php │ │ ├── class-fs-hook-snapshot.php │ │ ├── class-fs-user-lock.php │ │ ├── class-fs-security.php │ │ └── class-fs-lock.php │ │ ├── languages │ │ ├── index.php │ │ ├── freemius-ja.mo │ │ ├── freemius-ta.mo │ │ ├── freemius-cs_CZ.mo │ │ ├── freemius-da_DK.mo │ │ ├── freemius-de_DE.mo │ │ ├── freemius-es_ES.mo │ │ ├── freemius-fr_FR.mo │ │ ├── freemius-he_IL.mo │ │ ├── freemius-hu_HU.mo │ │ ├── freemius-it_IT.mo │ │ ├── freemius-nl_NL.mo │ │ ├── freemius-ru_RU.mo │ │ └── freemius-zh_CN.mo │ │ ├── composer.json │ │ └── require.php ├── composer │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── platform_check.php │ ├── LICENSE │ └── autoload_real.php ├── afragen │ ├── singleton │ │ ├── composer.json │ │ ├── LICENSE │ │ ├── README.md │ │ └── Singleton.php │ ├── wp-dismiss-notice │ │ ├── composer.json │ │ ├── LICENSE │ │ ├── README.md │ │ └── js │ │ │ └── dismiss-notice.js │ └── wordpress-plugin-readme-parser │ │ ├── composer.json │ │ └── README.md ├── autoload.php └── erusev │ └── parsedown │ ├── composer.json │ ├── .github │ └── workflows │ │ └── unit-tests.yaml │ └── LICENSE.txt ├── assets ├── banner-772x250.png ├── GitUpdater_Logo.png ├── banner-1544x500.png ├── github-logo.svg └── icon.svg ├── github-updater.php ├── css ├── git-updater.css └── git-updater-settings.css ├── src └── Git_Updater │ ├── Additions │ └── Bootstrap.php │ ├── WP_CLI │ ├── CLI_Common.php │ └── CLI.php │ ├── Ignore.php │ ├── REST │ └── Rest_Upgrader_Skin.php │ ├── Init.php │ ├── API │ └── Zipfile_API.php │ └── Language_Pack.php ├── js ├── ghu-install.js ├── ajax-activate.js └── gu-install-vanilla.js ├── composer.json ├── gu-uninstall.php ├── git-updater.php ├── readme.txt └── README.md /vendor/freemius/wordpress-sdk/templates/partials/index.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/erusev/parsedown'), 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/freemius/wordpress-sdk/templates/ajax-loader.php: -------------------------------------------------------------------------------- 1 | 6 |
7 | -------------------------------------------------------------------------------- /vendor/freemius/wordpress-sdk/assets/css/admin/gdpr-optin-notice.css: -------------------------------------------------------------------------------- 1 | .fs-notice[data-id^=gdpr_optin_actions] .underlined{text-decoration:underline}.fs-notice[data-id^=gdpr_optin_actions] ul .action-description,.fs-notice[data-id^=gdpr_optin_actions] ul .button{vertical-align:middle}.fs-notice[data-id^=gdpr_optin_actions] ul .action-description{display:inline-block;margin-left:3px} -------------------------------------------------------------------------------- /vendor/freemius/wordpress-sdk/includes/sdk/Exceptions/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/dealerdirect/phpcodesniffer-composer-installer/src'), 10 | 'McAskill\\Composer\\' => array($vendorDir . '/mcaskill/composer-exclude-files/src'), 11 | 'Fragen\\Git_Updater\\' => array($baseDir . '/src/Git_Updater'), 12 | ); 13 | -------------------------------------------------------------------------------- /vendor/freemius/wordpress-sdk/assets/js/jquery.form.js: -------------------------------------------------------------------------------- 1 | !function(n){n.extend({form:function(r,e,t){null==t&&(t="POST"),null==e&&(e={});var o=n("