├── languages └── ppdb-online.pot ├── index.php ├── admin ├── index.php ├── partials │ └── ppdb-online-admin-display.php ├── css │ ├── sort_asc.png │ ├── sort_both.png │ ├── sort_desc.png │ ├── sort_asc_disabled.png │ ├── sort_desc_disabled.png │ └── ppdb-online-admin.css └── js │ └── ppdb-online-admin.js ├── public ├── index.php ├── css │ ├── ppdb-online-public.css │ ├── sort_asc.png │ ├── sort_both.png │ ├── sort_desc.png │ ├── sort_asc_disabled.png │ └── sort_desc_disabled.png └── js │ └── ppdb-online-public.js ├── includes ├── index.php └── class-ppdb-online-deactivator.php ├── vendor ├── htmlburger │ └── carbon-fields │ │ ├── .nvmrc │ │ ├── .browserlistrc │ │ ├── .huskyrc.js │ │ ├── .lintstagedrc.js │ │ ├── .postcssrc.js │ │ ├── packages │ │ ├── blocks │ │ │ ├── fields │ │ │ │ ├── map │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.scss │ │ │ │ ├── oembed │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.scss │ │ │ │ ├── radio │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.scss │ │ │ │ ├── select │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.scss │ │ │ │ ├── set │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.scss │ │ │ │ ├── text │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.scss │ │ │ │ ├── block-preview │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.scss │ │ │ │ ├── multiselect │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.scss │ │ │ │ ├── radio-image │ │ │ │ │ └── index.js │ │ │ │ ├── separator │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.scss │ │ │ │ ├── textarea │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.scss │ │ │ │ ├── hidden │ │ │ │ │ └── index.js │ │ │ │ ├── sidebar │ │ │ │ │ └── index.js │ │ │ │ ├── footer-scripts │ │ │ │ │ └── index.js │ │ │ │ ├── header-scripts │ │ │ │ │ └── index.js │ │ │ │ ├── file │ │ │ │ │ ├── style.scss │ │ │ │ │ └── index.js │ │ │ │ ├── image │ │ │ │ │ └── index.js │ │ │ │ └── media-gallery │ │ │ │ │ └── index.js │ │ │ ├── components │ │ │ │ ├── field │ │ │ │ │ └── index.js │ │ │ │ └── not-supported-field │ │ │ │ │ └── index.js │ │ │ ├── utils │ │ │ │ └── transform-fields-to-attributes.js │ │ │ └── store │ │ │ │ ├── index.js │ │ │ │ ├── selectors.js │ │ │ │ └── actions.js │ │ ├── metaboxes │ │ │ ├── containers │ │ │ │ ├── user-meta │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.scss │ │ │ │ ├── registry.js │ │ │ │ ├── theme-options │ │ │ │ │ └── style.scss │ │ │ │ ├── hooks.js │ │ │ │ ├── widget │ │ │ │ │ └── style.scss │ │ │ │ └── root-registry.js │ │ │ ├── fields │ │ │ │ ├── multiselect │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.scss │ │ │ │ ├── radio │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.scss │ │ │ │ ├── datetime │ │ │ │ │ └── index.js │ │ │ │ ├── sidebar │ │ │ │ │ └── index.js │ │ │ │ ├── file │ │ │ │ │ └── index.js │ │ │ │ ├── image │ │ │ │ │ └── index.js │ │ │ │ └── media-gallery │ │ │ │ │ └── index.js │ │ │ ├── lib │ │ │ │ └── constants.js │ │ │ ├── monitors │ │ │ │ ├── conditional-display │ │ │ │ │ ├── conditions │ │ │ │ │ │ ├── boolean.js │ │ │ │ │ │ ├── post-ancestor-id.js │ │ │ │ │ │ ├── term-parent-id.js │ │ │ │ │ │ └── post-template.js │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── get-parent-id-from-option.js │ │ │ │ │ │ └── get-level-from-option.js │ │ │ │ │ ├── comparers │ │ │ │ │ │ ├── contain.js │ │ │ │ │ │ ├── equality.js │ │ │ │ │ │ ├── scalar.js │ │ │ │ │ │ ├── any-equality.js │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ └── any-contain.js │ │ │ │ │ └── index.js │ │ │ │ └── revisions-flag │ │ │ │ │ └── index.js │ │ │ ├── utils │ │ │ │ ├── is-gutenberg.js │ │ │ │ ├── urldecode.js │ │ │ │ ├── strip-compact-input-prefix.js │ │ │ │ └── from-event-pattern.js │ │ │ ├── components │ │ │ │ └── field │ │ │ │ │ └── index.js │ │ │ ├── hocs │ │ │ │ └── with-container │ │ │ │ │ └── index.js │ │ │ └── store │ │ │ │ ├── helpers.js │ │ │ │ └── index.js │ │ └── core │ │ │ ├── components │ │ │ ├── disabled │ │ │ │ └── context.js │ │ │ └── no-options │ │ │ │ └── index.js │ │ │ ├── registry │ │ │ └── fields.js │ │ │ ├── fields │ │ │ ├── select │ │ │ │ └── style.scss │ │ │ ├── text │ │ │ │ └── style.scss │ │ │ ├── separator │ │ │ │ ├── style.scss │ │ │ │ └── index.js │ │ │ ├── textarea │ │ │ │ └── style.scss │ │ │ ├── checkbox │ │ │ │ └── style.scss │ │ │ ├── date │ │ │ │ └── index.js │ │ │ ├── html │ │ │ │ └── index.js │ │ │ ├── time │ │ │ │ └── index.js │ │ │ ├── oembed │ │ │ │ └── style.scss │ │ │ ├── block-preview │ │ │ │ └── index.js │ │ │ ├── set │ │ │ │ └── style.scss │ │ │ ├── map │ │ │ │ └── style.scss │ │ │ ├── radio-image │ │ │ │ ├── index.js │ │ │ │ └── style.scss │ │ │ ├── complex │ │ │ │ └── placeholder.js │ │ │ ├── hidden │ │ │ │ └── index.js │ │ │ ├── datetime │ │ │ │ └── style.scss │ │ │ └── color │ │ │ │ └── style.scss │ │ │ ├── store │ │ │ ├── index.js │ │ │ └── selectors.js │ │ │ ├── utils │ │ │ ├── unique-id.js │ │ │ ├── api-fetch.js │ │ │ ├── fetch-attachments-data.js │ │ │ └── from-selector.js │ │ │ └── hocs │ │ │ ├── with-props │ │ │ └── index.js │ │ │ └── with-validation │ │ │ └── required.js │ │ ├── templates │ │ └── Container │ │ │ ├── post_meta.php │ │ │ ├── network.php │ │ │ ├── comment_meta.php │ │ │ ├── theme_options.php │ │ │ ├── nav_menu_item.php │ │ │ ├── user_meta.php │ │ │ ├── widget.php │ │ │ └── term_meta.php │ │ ├── languages │ │ ├── carbon-fields-ca.mo │ │ ├── carbon-fields-el.mo │ │ ├── carbon-fields-fi.mo │ │ ├── carbon-fields-uk.mo │ │ ├── carbon-fields-bg_BG.mo │ │ ├── carbon-fields-da_DK.mo │ │ ├── carbon-fields-de_DE.mo │ │ ├── carbon-fields-es_ES.mo │ │ ├── carbon-fields-fa_IR.mo │ │ ├── carbon-fields-fr_FR.mo │ │ ├── carbon-fields-he_IL.mo │ │ ├── carbon-fields-it_IT.mo │ │ ├── carbon-fields-nl_NL.mo │ │ ├── carbon-fields-pl_PL.mo │ │ ├── carbon-fields-pt_BR.mo │ │ ├── carbon-fields-pt_PT.mo │ │ ├── carbon-fields-ru_RU.mo │ │ ├── carbon-fields-sv_SE.mo │ │ ├── carbon-fields-ui-ca.mo │ │ ├── carbon-fields-ui-el.mo │ │ ├── carbon-fields-ui-en.mo │ │ ├── carbon-fields-ui-uk.mo │ │ ├── carbon-fields-zh_CN.mo │ │ ├── carbon-fields-ui-bg_BG.mo │ │ ├── carbon-fields-ui-es_ES.mo │ │ ├── carbon-fields-ui-fr_FR.mo │ │ ├── carbon-fields-ui-ru_RU.mo │ │ └── carbon-fields-de_DE_formal.mo │ │ ├── core │ │ ├── Field │ │ │ ├── Broken_Field.php │ │ │ ├── Radio_Field.php │ │ │ ├── Radio_Image_Field.php │ │ │ ├── Image_Field.php │ │ │ ├── Text_Field.php │ │ │ ├── Header_Scripts_Field.php │ │ │ ├── Footer_Scripts_Field.php │ │ │ ├── Date_Time_Field.php │ │ │ ├── OEmbed_Field.php │ │ │ ├── Separator_Field.php │ │ │ └── Time_Field.php │ │ ├── Widget.php │ │ ├── Container │ │ │ ├── Fulfillable │ │ │ │ └── Fulfillable.php │ │ │ ├── Condition │ │ │ │ ├── Boolean_Condition.php │ │ │ │ ├── Current_User_Capability_Condition.php │ │ │ │ ├── Post_ID_Condition.php │ │ │ │ ├── User_ID_Condition.php │ │ │ │ ├── Blog_ID_Condition.php │ │ │ │ ├── Post_Type_Condition.php │ │ │ │ ├── Term_Taxonomy_Condition.php │ │ │ │ ├── Current_User_ID_Condition.php │ │ │ │ ├── Current_User_Role_Condition.php │ │ │ │ ├── Post_Parent_ID_Condition.php │ │ │ │ ├── Comparer │ │ │ │ │ ├── Equality_Comparer.php │ │ │ │ │ ├── Any_Equality_Comparer.php │ │ │ │ │ └── Comparer.php │ │ │ │ ├── Post_Ancestor_ID_Condition.php │ │ │ │ ├── Post_Format_Condition.php │ │ │ │ ├── Post_Level_Condition.php │ │ │ │ ├── User_Role_Condition.php │ │ │ │ ├── Post_Template_Condition.php │ │ │ │ └── Term_Level_Condition.php │ │ │ └── Broken_Container.php │ │ ├── Block.php │ │ ├── Datastore │ │ │ ├── Empty_Datastore.php │ │ │ ├── Network_Datastore.php │ │ │ ├── Datastore_Holder_Interface.php │ │ │ ├── User_Meta_Datastore.php │ │ │ ├── Post_Meta_Datastore.php │ │ │ └── Comment_Meta_Datastore.php │ │ ├── Event │ │ │ ├── SingleEventListener.php │ │ │ ├── Listener.php │ │ │ └── PersistentListener.php │ │ ├── Libraries │ │ │ └── Sidebar_Manager │ │ │ │ └── assets │ │ │ │ └── css │ │ │ │ └── app.css │ │ └── Helper │ │ │ └── Color.php │ │ ├── webpack.config.js │ │ ├── bin │ │ ├── paths.js │ │ └── webpack.vendor.js │ │ ├── assets │ │ └── styles │ │ │ ├── _fonts.scss │ │ │ └── _variables.scss │ │ ├── ISSUE_TEMPLATE.md │ │ ├── .editorconfig │ │ └── .babelrc.js ├── psr │ ├── http-factory │ │ ├── .gitignore │ │ ├── .pullapprove.yml │ │ ├── src │ │ │ ├── UriFactoryInterface.php │ │ │ ├── RequestFactoryInterface.php │ │ │ └── ResponseFactoryInterface.php │ │ ├── README.md │ │ └── composer.json │ ├── log │ │ ├── Psr │ │ │ └── Log │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── Test │ │ │ │ └── DummyTest.php │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ ├── LogLevel.php │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ └── NullLogger.php │ │ └── composer.json │ ├── http-client │ │ ├── src │ │ │ ├── ClientExceptionInterface.php │ │ │ ├── ClientInterface.php │ │ │ ├── RequestExceptionInterface.php │ │ │ └── NetworkExceptionInterface.php │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ └── composer.json │ └── http-message │ │ ├── README.md │ │ └── composer.json ├── symfony │ └── deprecation-contracts │ │ ├── .gitignore │ │ └── CHANGELOG.md ├── pusher │ └── pusher-php-server │ │ ├── composer.phar │ │ └── src │ │ ├── PusherException.php │ │ ├── ApiErrorException.php │ │ ├── Webhook.php │ │ └── PusherInstance.php ├── paragonie │ ├── sodium_compat │ │ ├── namespaced │ │ │ ├── File.php │ │ │ ├── Compat.php │ │ │ ├── Crypto.php │ │ │ └── Core │ │ │ │ ├── Util.php │ │ │ │ ├── X25519.php │ │ │ │ ├── BLAKE2b.php │ │ │ │ ├── ChaCha20.php │ │ │ │ ├── Ed25519.php │ │ │ │ ├── HSalsa20.php │ │ │ │ ├── Poly1305.php │ │ │ │ ├── Salsa20.php │ │ │ │ ├── SipHash.php │ │ │ │ ├── Xsalsa20.php │ │ │ │ ├── Curve25519.php │ │ │ │ ├── HChaCha20.php │ │ │ │ ├── XChaCha20.php │ │ │ │ ├── ChaCha20 │ │ │ │ ├── Ctx.php │ │ │ │ └── IetfCtx.php │ │ │ │ ├── Curve25519 │ │ │ │ ├── Fe.php │ │ │ │ ├── H.php │ │ │ │ └── Ge │ │ │ │ │ ├── P2.php │ │ │ │ │ ├── P3.php │ │ │ │ │ ├── P1p1.php │ │ │ │ │ ├── Cached.php │ │ │ │ │ └── Precomp.php │ │ │ │ └── Poly1305 │ │ │ │ └── State.php │ │ ├── src │ │ │ ├── SodiumException.php │ │ │ ├── Core │ │ │ │ └── Curve25519 │ │ │ │ │ └── README.md │ │ │ └── Core32 │ │ │ │ ├── Curve25519 │ │ │ │ └── README.md │ │ │ │ └── Util.php │ │ └── LICENSE │ └── random_compat │ │ ├── build-phar.sh │ │ ├── dist │ │ ├── random_compat.phar.pubkey │ │ └── random_compat.phar.pubkey.asc │ │ ├── psalm-autoload.php │ │ └── psalm.xml ├── guzzlehttp │ ├── guzzle │ │ └── src │ │ │ ├── Exception │ │ │ ├── TooManyRedirectsException.php │ │ │ ├── TransferException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── GuzzleException.php │ │ │ ├── ClientException.php │ │ │ └── ServerException.php │ │ │ ├── functions_include.php │ │ │ ├── BodySummarizerInterface.php │ │ │ ├── MessageFormatterInterface.php │ │ │ ├── BodySummarizer.php │ │ │ └── Handler │ │ │ └── CurlFactoryInterface.php │ ├── promises │ │ └── src │ │ │ ├── functions_include.php │ │ │ ├── CancellationException.php │ │ │ ├── PromisorInterface.php │ │ │ ├── AggregateException.php │ │ │ └── TaskQueueInterface.php │ └── psr7 │ │ └── src │ │ ├── Exception │ │ └── MalformedUriException.php │ │ ├── NoSeekStream.php │ │ └── Rfc7230.php ├── 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 │ │ │ │ ├── PortoInstaller.php │ │ │ │ ├── WolfCMSInstaller.php │ │ │ │ ├── MODULEWorkInstaller.php │ │ │ │ ├── PuppetInstaller.php │ │ │ │ ├── BonefishInstaller.php │ │ │ │ ├── DframeInstaller.php │ │ │ │ ├── UserFrostingInstaller.php │ │ │ │ ├── DecibelInstaller.php │ │ │ │ ├── SMFInstaller.php │ │ │ │ ├── KodiCMSInstaller.php │ │ │ │ ├── PrestashopInstaller.php │ │ │ │ ├── ReIndexInstaller.php │ │ │ │ ├── TaoInstaller.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 │ │ │ │ ├── EliasisInstaller.php │ │ │ │ ├── OsclassInstaller.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 │ │ │ │ ├── Symfony1Installer.php │ │ │ │ ├── MantisBTInstaller.php │ │ │ │ ├── MauticInstaller.php │ │ │ │ ├── Plugin.php │ │ │ │ ├── RadPHPInstaller.php │ │ │ │ ├── SiteDirectInstaller.php │ │ │ │ ├── HuradInstaller.php │ │ │ │ ├── YawikInstaller.php │ │ │ │ ├── OntoWikiInstaller.php │ │ │ │ ├── GravInstaller.php │ │ │ │ ├── PiwikInstaller.php │ │ │ │ ├── PlentymarketsInstaller.php │ │ │ │ ├── CockpitInstaller.php │ │ │ │ ├── LanManagementSystemInstaller.php │ │ │ │ ├── ExpressionEngineInstaller.php │ │ │ │ ├── WHMCSInstaller.php │ │ │ │ └── MayaInstaller.php │ │ │ └── bootstrap.php │ ├── autoload_classmap.php │ ├── autoload_files.php │ └── autoload_psr4.php ├── ralouphie │ └── getallheaders │ │ └── composer.json └── autoload.php ├── Register.png ├── home_ppdb.png ├── Data_Pendaftar.png ├── Bukti_Pendaftaran.png └── core └── Libraries └── Plugin_Update_Warning └── assets └── css └── app.css /languages/ppdb-online.pot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | get_id(); ?>"> 2 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/fields/block-preview/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Internal dependencies. 3 | */ 4 | import './style.scss'; -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/fields/multiselect/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Internal dependencies. 3 | */ 4 | import './style.scss'; 5 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/fields/radio-image/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Internal dependencies. 3 | */ 4 | import './style.scss'; 5 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/fields/separator/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Internal dependencies. 3 | */ 4 | import './style.scss'; 5 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/fields/textarea/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Internal dependencies. 3 | */ 4 | import './style.scss'; 5 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/containers/user-meta/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Internal dependencies. 3 | */ 4 | import './style.scss'; 5 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/fields/multiselect/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Internal dependencies. 3 | */ 4 | import './style.scss'; 5 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/fields/radio/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * The internal dependencies. 3 | */ 4 | import './style.scss'; 5 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/templates/Container/network.php: -------------------------------------------------------------------------------- 1 | get_id(); ?>"> 2 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/templates/Container/theme_options.php: -------------------------------------------------------------------------------- 1 | 'mod/{$name}/', 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PPIInstaller.php: -------------------------------------------------------------------------------- 1 | 'modules/{$name}/', 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /vendor/psr/http-client/src/ClientExceptionInterface.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/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/composer/installers/src/Composer/Installers/FuelphpInstaller.php: -------------------------------------------------------------------------------- 1 | 'components/{$name}/', 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /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/guzzlehttp/promises/src/CancellationException.php: -------------------------------------------------------------------------------- 1 | 'modules/{$name}/', 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php: -------------------------------------------------------------------------------- 1 | 'modules/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/paragonie/random_compat/dist/random_compat.phar.pubkey: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEEd+wCqJDrx5B4OldM0dQE0ZMX+lx1ZWm 3 | pui0SUqD4G29L3NGsz9UhJ/0HjBdbnkhIK5xviT0X5vtjacF6ajgcCArbTB+ds+p 4 | +h7Q084NuSuIpNb6YPfoUFgC/CL9kAoc 5 | -----END PUBLIC KEY----- 6 | -------------------------------------------------------------------------------- /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/htmlburger/carbon-fields/packages/core/registry/fields.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Internal dependencies. 3 | */ 4 | import { createRegistry } from './'; 5 | 6 | export const { 7 | registerFieldType, 8 | getFieldType 9 | } = createRegistry( 'field', [ 10 | 'metabox', 11 | 'block' 12 | ] ); 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php: -------------------------------------------------------------------------------- 1 | 'app/{$name}/', 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/composer/InstalledVersions.php', 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/SMFInstaller.php: -------------------------------------------------------------------------------- 1 | 'Sources/{$name}/', 8 | 'theme' => 'Themes/{$name}/', 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/templates/Container/nav_menu_item.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/bin/paths.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | const path = require( 'path' ); 5 | 6 | module.exports = { 7 | classicBuildPath: path.resolve( __dirname, '..', 'build', 'classic' ), 8 | gutenbergBuildPath: path.resolve( __dirname, '..', 'build', 'gutenberg' ), 9 | }; 10 | -------------------------------------------------------------------------------- /vendor/paragonie/random_compat/psalm-autoload.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/TaoInstaller.php: -------------------------------------------------------------------------------- 1 | '{$name}' 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php: -------------------------------------------------------------------------------- 1 | 'plugins/{$name}/', 8 | 'theme' => 'themes/{$name}/', 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/lib/constants.js: -------------------------------------------------------------------------------- 1 | export const PAGE_NOW_WIDGETS = 'widgets.php'; 2 | export const PAGE_NOW_CUSTOMIZE = 'customize.php'; 3 | 4 | export const CARBON_FIELDS_CONTAINER_ID_PREFIX = 'carbon_fields_container_'; 5 | export const CARBON_FIELDS_CONTAINER_WIDGET_ID_PREFIX = 'carbon_fields_'; 6 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php: -------------------------------------------------------------------------------- 1 | 'CCF/orbit/{$name}/', 8 | 'theme' => 'CCF/app/themes/{$name}/', 9 | ); 10 | } -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/monitors/conditional-display/conditions/boolean.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Internal dependencies. 3 | */ 4 | import base from './base'; 5 | 6 | export default { 7 | ...base, 8 | 9 | /** 10 | * @inheritdoc 11 | */ 12 | getEnvironmentValue() { 13 | return true; 14 | } 15 | }; 16 | -------------------------------------------------------------------------------- /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/composer/installers/src/Composer/Installers/LavaLiteInstaller.php: -------------------------------------------------------------------------------- 1 | 'packages/{$vendor}/{$name}/', 8 | 'theme' => 'public/themes/{$name}/', 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/fields/separator/style.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Separator 3 | ========================================================================== */ 4 | 5 | .cf-separator { 6 | .block-editor & h3 { 7 | margin: 0; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/fields/set/style.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Set 3 | ========================================================================== */ 4 | 5 | .cf-set__list { 6 | .wp-block & { 7 | list-style: none outside none; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/core/fields/select/style.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Select 3 | ========================================================================== */ 4 | 5 | .cf-select__input { 6 | display: block; 7 | width: 100%; 8 | margin: 0; 9 | } 10 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/containers/registry.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { createRegistry } from '@carbon-fields/core'; 5 | 6 | export const { 7 | registerContainerType, 8 | getContainerType 9 | } = createRegistry( 'container', [ 10 | 'classic', 11 | 'gutenberg' 12 | ] ); 13 | 14 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/BodySummarizerInterface.php: -------------------------------------------------------------------------------- 1 | 'web/assets/ezplatform/', 8 | 'assets' => 'web/assets/ezplatform/{$name}/', 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/components/field/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Carbon Fields dependencies. 3 | */ 4 | import { Field, withFilters } from '@carbon-fields/core'; 5 | 6 | /** 7 | * Internal dependencies. 8 | */ 9 | import './style.scss'; 10 | 11 | export default withFilters( 'carbon-fields.field-wrapper.block' )( Field ); 12 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/core/fields/separator/style.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Separator 3 | ========================================================================== */ 4 | 5 | .cf-separator .cf-field__head { 6 | .cf-container-term-meta & { 7 | display: none; 8 | } 9 | } -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ModxInstaller.php: -------------------------------------------------------------------------------- 1 | 'core/packages/{$name}/' 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Container/Fulfillable/Fulfillable.php: -------------------------------------------------------------------------------- 1 | 'library/{$name}/', 8 | 'extra' => 'extras/library/{$name}/', 9 | 'module' => 'module/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/PromisorInterface.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/htmlburger/carbon-fields/packages/metaboxes/utils/is-gutenberg.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { isUndefined } from 'lodash'; 5 | 6 | /** 7 | * Returns true if Gutenberg is presented. 8 | * 9 | * @return {boolean} 10 | */ 11 | export default function isGutenberg() { 12 | return ! isUndefined( window._wpLoadBlockEditor ); 13 | } 14 | -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/Test/DummyTest.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/htmlburger/carbon-fields/templates/Container/user_meta.php: -------------------------------------------------------------------------------- 1 |

title; ?>

2 | 3 | 4 | 5 | 6 | 7 | 10 | 11 | 12 |
8 |
9 |
13 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/KnownInstaller.php: -------------------------------------------------------------------------------- 1 | 'IdnoPlugins/{$name}/', 8 | 'theme' => 'Themes/{$name}/', 9 | 'console' => 'ConsolePlugins/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/htmlburger/carbon-fields/packages/core/fields/checkbox/style.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Checkbox 3 | ========================================================================== */ 4 | 5 | .cf-checkbox__input { 6 | .cf-field & { 7 | margin-top: 0; 8 | } 9 | } 10 | 11 | .cf-checkbox__label { 12 | font-size: 13px; 13 | } 14 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/templates/Container/widget.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | has_fields() ) : ?> 4 | 5 | 6 |
7 | -------------------------------------------------------------------------------- /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/htmlburger/carbon-fields/assets/styles/_fonts.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Fonts 3 | ========================================================================== */ 4 | 5 | $wp-font: -apple-system, BlinkMacSystemFont,"Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell,"Helvetica Neue", sans-serif; 6 | $wp-font-size: 13px; 7 | $wp-line-height: 1.4; 8 | -------------------------------------------------------------------------------- /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/psr/log/Psr/Log/LoggerAwareInterface.php: -------------------------------------------------------------------------------- 1 | 'application/libraries/{$name}/', 8 | 'third-party' => 'application/third_party/{$name}/', 9 | 'module' => 'application/modules/{$name}/', 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/fields/hidden/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { addFilter } from '@wordpress/hooks'; 5 | 6 | /** 7 | * The internal dependencies. 8 | */ 9 | import NotSupportedField from '../../components/not-supported-field'; 10 | 11 | addFilter( 'carbon-fields.hidden.block', 'carbon-fields/blocks', () => ( props ) => ); 12 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/fields/sidebar/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { addFilter } from '@wordpress/hooks'; 5 | 6 | /** 7 | * The internal dependencies. 8 | */ 9 | import NotSupportedField from '../../components/not-supported-field'; 10 | 11 | addFilter( 'carbon-fields.sidebar.block', 'carbon-fields/blocks', () => ( props ) => ); 12 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/monitors/conditional-display/utils/get-parent-id-from-option.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Extracts the id of the post/term parent from an option. 3 | * 4 | * @param {Object} option 5 | * @return {number} 6 | */ 7 | export default function getParentIdFromOption( option ) { 8 | const value = parseInt( option.value, 10 ); 9 | 10 | return ( ! isNaN( value ) && value >= 0 ) ? value : 0; 11 | } 12 | -------------------------------------------------------------------------------- /vendor/psr/http-message/README.md: -------------------------------------------------------------------------------- 1 | PSR Http Message 2 | ================ 3 | 4 | This repository holds all interfaces/classes/traits related to 5 | [PSR-7](http://www.php-fig.org/psr/psr-7/). 6 | 7 | Note that this is not a HTTP message implementation of its own. It is merely an 8 | interface that describes a HTTP message. See the specification for more details. 9 | 10 | Usage 11 | ----- 12 | 13 | We'll certainly need some stuff in here. -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/fields/text/style.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Text 3 | ========================================================================== */ 4 | 5 | .cf-text__input { 6 | .wp-block .cf-field & { 7 | border-color: $wp-color-gray-light-500; 8 | border-radius: 0; 9 | 10 | &:focus { 11 | box-shadow: none; 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php: -------------------------------------------------------------------------------- 1 | 'plugins/{$name}/', 17 | ); 18 | } 19 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/fields/select/style.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Select 3 | ========================================================================== */ 4 | 5 | .cf-select__input { 6 | .wp-block .cf-field & { 7 | border-color: $wp-color-gray-light-500; 8 | border-radius: 0; 9 | 10 | &:focus { 11 | box-shadow: none; 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/psr/http-factory/src/UriFactoryInterface.php: -------------------------------------------------------------------------------- 1 | ( props ) => ); 12 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/fields/header-scripts/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { addFilter } from '@wordpress/hooks'; 5 | 6 | /** 7 | * The internal dependencies. 8 | */ 9 | import NotSupportedField from '../../components/not-supported-field'; 10 | 11 | addFilter( 'carbon-fields.header_scripts.block', 'carbon-fields/blocks', () => ( props ) => ); 12 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/utils/transform-fields-to-attributes.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Transforms the fields to an attributes set. 3 | * 4 | * @param {Object[]} fields 5 | * @return {Object} 6 | */ 7 | export default function transformFieldsToAttributes( fields ) { 8 | return fields.reduce( ( attributes, field ) => { 9 | return { 10 | ...attributes, 11 | [ field.base_name ]: field.default_value 12 | }; 13 | }, {} ); 14 | } 15 | -------------------------------------------------------------------------------- /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/htmlburger/carbon-fields/core/Block.php: -------------------------------------------------------------------------------- 1 | ( props ) => ( 8 | 12 | ) ); 13 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/core/components/no-options/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * The external dependencies. 3 | */ 4 | import { __ } from '@wordpress/i18n'; 5 | 6 | /** 7 | * Render a notice to inform the user that the field doesn't have 8 | * any options. 9 | * 10 | * @return {React.Element} 11 | */ 12 | const NoOptions = () => ( 13 | 14 | { __( 'No options.', 'carbon-fields-ui' ) } 15 | 16 | ); 17 | 18 | export default NoOptions; 19 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/containers/theme-options/style.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Theme Options 3 | ========================================================================== */ 4 | 5 | #postbox-container-1.fixed { 6 | .carbon-theme-options #post-body.columns-2 &, 7 | .carbon-network #post-body.columns-2 & { 8 | position: fixed; right: 0; margin-right: 20px; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/fields/sidebar/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { withDispatch } from '@wordpress/data'; 5 | import { addFilter } from '@wordpress/hooks'; 6 | 7 | addFilter( 'carbon-fields.sidebar.metabox', 'carbon-fields/metaboxes', withDispatch( ( dispatch ) => { 8 | const { receiveSidebar } = dispatch( 'carbon-fields/metaboxes' ); 9 | 10 | return { 11 | onAdded: receiveSidebar 12 | }; 13 | } ) ); 14 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Field/Text_Field.php: -------------------------------------------------------------------------------- 1 | { 13 | return { 14 | ...props, 15 | buttonText: __( 'Select Date', 'carbon-fields-ui' ) 16 | }; 17 | } )( DatetimeField ); 18 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/templates/Container/term_meta.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 |
16 | 17 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/store/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { registerStore } from '@wordpress/data'; 5 | 6 | /** 7 | * Internal dependencies. 8 | */ 9 | import reducer from './reducer'; 10 | import * as actions from './actions'; 11 | import * as selectors from './selectors'; 12 | 13 | /** 14 | * Register the store. 15 | */ 16 | registerStore( 'carbon-fields/blocks', { 17 | reducer, 18 | actions, 19 | selectors 20 | } ); 21 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/core/store/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { registerStore } from '@wordpress/data'; 5 | 6 | /** 7 | * Internal dependencies. 8 | */ 9 | import reducer from './reducer'; 10 | import * as actions from './actions'; 11 | import * as selectors from './selectors'; 12 | 13 | /** 14 | * Registers the store. 15 | */ 16 | registerStore( 'carbon-fields/core', { 17 | reducer, 18 | actions, 19 | selectors 20 | } ); 21 | -------------------------------------------------------------------------------- /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/htmlburger/carbon-fields/packages/core/fields/html/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { RawHTML } from '@wordpress/element'; 5 | 6 | /** 7 | * Renders the field. 8 | * 9 | * @param {Object} props 10 | * @param {Object} props.field 11 | * @return {Object} 12 | */ 13 | function HtmlField( { field } ) { 14 | return ( 15 | 16 | { field.html } 17 | 18 | ); 19 | } 20 | 21 | export default HtmlField; 22 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/core/fields/time/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { __ } from '@wordpress/i18n'; 5 | 6 | /** 7 | * Internal dependencies. 8 | */ 9 | import withProps from '../../hocs/with-props'; 10 | import DatetimeField from '../datetime'; 11 | 12 | export default withProps( ( props ) => { 13 | return { 14 | ...props, 15 | icon: 'clock', 16 | buttonText: __( 'Select Time', 'carbon-fields-ui' ) 17 | }; 18 | } )( DatetimeField ); 19 | -------------------------------------------------------------------------------- /vendor/psr/http-factory/README.md: -------------------------------------------------------------------------------- 1 | HTTP Factories 2 | ============== 3 | 4 | This repository holds all interfaces related to [PSR-17 (HTTP Message Factories)][psr-17]. 5 | Please refer to the specification for a description. 6 | 7 | You can find implementations of the specification by looking for packages providing the 8 | [psr/http-factory-implementation](https://packagist.org/providers/psr/http-factory-implementation) virtual package. 9 | 10 | [psr-17]: https://www.php-fig.org/psr/psr-17/ 11 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/AggregateException.php: -------------------------------------------------------------------------------- 1 | 10 | */ 11 | class TYPO3CmsInstaller extends BaseInstaller 12 | { 13 | protected $locations = array( 14 | 'extension' => 'typo3conf/ext/{$name}/', 15 | ); 16 | } 17 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/fields/map/style.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Map 3 | ========================================================================== */ 4 | 5 | .cf-map__canvas { 6 | .edit-post-sidebar & { 7 | border-color: $gb-dark-gray-150; 8 | border-top-width: 1px; 9 | margin-top: $size-base; 10 | } 11 | 12 | .block-editor .cf-map__search:focus-within ~ & { 13 | border-color: $wp-color-medium-blue; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/core/fields/separator/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { Component } from '@wordpress/element'; 5 | 6 | /** 7 | * Internal dependencies. 8 | */ 9 | import './style.scss'; 10 | 11 | class SeparatorField extends Component { 12 | /** 13 | * Renders the component. 14 | * 15 | * @return {Object} 16 | */ 17 | render() { 18 | return ( 19 |

{ this.props.field.label }

20 | ); 21 | } 22 | } 23 | 24 | export default SeparatorField; 25 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/fields/oembed/style.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | oEmbed 3 | ========================================================================== */ 4 | 5 | .cf-oembed__preview { 6 | .edit-post-sidebar & { 7 | border-color: $gb-dark-gray-150; 8 | border-top-width: 1px; 9 | margin-top: $size-base; 10 | } 11 | 12 | .block-editor .cf-oembed:focus-within & { 13 | border-color: $wp-color-medium-blue; 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/core/fields/oembed/style.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | oEmbed 3 | ========================================================================== */ 4 | 5 | .cf-oembed__preview { 6 | padding: 12px; 7 | border-width: 0 1px 1px; 8 | border-style: solid; 9 | border-color: $wp-color-gray-light-500; 10 | } 11 | 12 | .cf-oembed__frame { 13 | display: block; 14 | width: 100%; 15 | max-width: 600px; 16 | margin: 0 auto; 17 | } 18 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/monitors/conditional-display/utils/get-level-from-option.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Extracts the level from an option. 3 | * 4 | * @param {Object} option 5 | * @return {number} 6 | */ 7 | export default function getLevelFromOption( option ) { 8 | let level = 0; 9 | 10 | if ( option.className ) { 11 | const matches = option.className.match( /^level-(\d+)/ ); 12 | 13 | if ( matches ) { 14 | level = parseInt( matches[ 1 ], 10 ) + 1; 15 | } 16 | } 17 | 18 | return level; 19 | } 20 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/htmlburger/carbon-fields/packages/metaboxes/components/field/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { compose } from '@wordpress/compose'; 5 | 6 | /** 7 | * Carbon Fields dependencies. 8 | */ 9 | import { Field, withFilters } from '@carbon-fields/core'; 10 | 11 | /** 12 | * Internal dependencies. 13 | */ 14 | import './style.scss'; 15 | import withField from '../../hocs/with-field'; 16 | 17 | export default compose( 18 | withField, 19 | withFilters( 'carbon-fields.field-wrapper.metabox' ) 20 | )( Field ); 21 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/fields/textarea/style.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Textarea 3 | ========================================================================== */ 4 | 5 | .cf-textarea__input { 6 | .wp-block .cf-field & { 7 | border-color: $wp-color-gray-light-500; 8 | border-radius: 0; 9 | transition: border-color $transition-base; 10 | 11 | &:focus { 12 | border-color: $wp-color-medium-blue; 13 | box-shadow: none; 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/utils/strip-compact-input-prefix.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Removes the prefix used to compact the input of Carbon Fields. 3 | * 4 | * @param {string} str 5 | * @return {string} 6 | */ 7 | export default function stripCompactInputPrefix( str ) { 8 | const { compactInput, compactInputKey } = window.cf.config; 9 | 10 | if ( ! compactInput || str.indexOf( compactInputKey ) !== 0 ) { 11 | return str; 12 | } 13 | 14 | return str.replace( new RegExp( `^${ compactInputKey }\\[(.+?)\\]` ), '$1' ); 15 | } 16 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/core/fields/block-preview/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { RawHTML } from '@wordpress/element'; 5 | 6 | /** 7 | * Renders the field. 8 | * 9 | * @param {Object} props 10 | * @param {Object} props.field 11 | * @return {Object} 12 | */ 13 | function BlockPreviewField( { field } ) { 14 | return ( 15 | 16 | { field.html } 17 | 18 | ); 19 | } 20 | 21 | export default BlockPreviewField; 22 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/bootstrap.php: -------------------------------------------------------------------------------- 1 | logger = $logger; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/core/fields/set/style.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Set 3 | ========================================================================== */ 4 | 5 | .cf-set__list { 6 | margin: 0; 7 | } 8 | 9 | .cf-set__list-item { 10 | &:last-child { 11 | margin-bottom: 0; 12 | } 13 | } 14 | 15 | .cf-set__input { 16 | .cf-field & { 17 | margin-top: 0; 18 | } 19 | } 20 | 21 | .cf-set__label { 22 | .cf-container-term-meta & { 23 | display: inline; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/components/not-supported-field/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * The external dependencies. 3 | */ 4 | import { __, sprintf } from '@wordpress/i18n'; 5 | 6 | /** 7 | * Render a notice to inform the user that the field doesn't have 8 | * any options. 9 | * 10 | * @return {React.Element} 11 | */ 12 | const NotSupportedField = ( { type } ) => ( 13 | 14 | { sprintf( __( `Field of type '%s' is not supported in Gutenberg.`, 'carbon-fields-ui' ), [ type ] ) } 15 | 16 | ); 17 | 18 | export default NotSupportedField; 19 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/core/fields/map/style.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Map 3 | ========================================================================== */ 4 | 5 | .cf-map__search { 6 | position: relative; 7 | z-index: 1; 8 | } 9 | 10 | .cf-map__canvas { 11 | position: relative; 12 | z-index: 0; 13 | height: 300px; 14 | border-width: 0 1px 1px; 15 | border-style: solid; 16 | border-color: $wp-color-gray-light-500; 17 | background-color: $wp-color-gray-light-200; 18 | } 19 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/core/fields/radio-image/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Internal dependencies. 3 | */ 4 | import withProps from '../../hocs/with-props'; 5 | import RadioField from '../radio'; 6 | import './style.scss'; 7 | 8 | export default withProps( ( props ) => { 9 | return { 10 | ...props, 11 | field: { 12 | ...props.field, 13 | options: props.field.options.map( ( option ) => ( { 14 | ...option, 15 | label: ( ) 16 | } ) ) 17 | } 18 | }; 19 | } )( RadioField ); 20 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/fields/multiselect/style.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Multiselect 3 | ========================================================================== */ 4 | 5 | .cf-multiselect__control { 6 | .postbox & { 7 | border-color: #ddd; 8 | box-shadow: 0 1px 2px transparentize($color-black, 0.93) inset; 9 | } 10 | 11 | .postbox &--is-focused, 12 | .postbox &--is-focused:hover { 13 | box-shadow: 0 0 2px transparentize($wp-color-blue, 0.2); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Container/Condition/Boolean_Condition.php: -------------------------------------------------------------------------------- 1 | compare( 18 | true, 19 | $this->get_comparison_operator(), 20 | $this->get_value() 21 | ); 22 | } 23 | } -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/fields/file/style.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | File 3 | ========================================================================== */ 4 | 5 | .cf-file__inner { 6 | .edit-post-sidebar & { 7 | border-color: $gb-dark-gray-150; 8 | } 9 | } 10 | 11 | .cf-file__content { 12 | .edit-post-sidebar & { 13 | border-color: $gb-dark-gray-150; 14 | } 15 | } 16 | 17 | .cf-file__name { 18 | .edit-post-sidebar & { 19 | border-color: $gb-dark-gray-150; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/core/fields/complex/placeholder.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Renders the empty state of the field. 3 | * 4 | * @param {Object} props 5 | * @param {string} props.label 6 | * @param {Object} props.children 7 | * @return {Object} 8 | */ 9 | function ComplexPlaceholder( { label, children } ) { 10 | return ( 11 |
12 |

13 | { label } 14 |

15 | 16 | { children } 17 |
18 | ); 19 | } 20 | 21 | export default ComplexPlaceholder; 22 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## Version 2 | 3 | - Carbon Fields: 4 | - WordPress: 5 | - PHP: 6 | 7 | ## Expected Behavior 8 | _Please enter the expected behavior here_ 9 | 10 | ## Actual Behavior 11 | _Please enter the actual, unexpected behavior here_ 12 | 13 | ## Container definition 14 | ```php 15 | // Please add your entire container defintion here so issues 16 | // are easy to reproduce 17 | ``` 18 | 19 | ## Steps to Reproduce the Problem 20 | 21 | 1. 22 | 1. 23 | 1. 24 | 25 | ## Comments 26 | _Please add any other comments here_ 27 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/core/utils/unique-id.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import generate from 'nanoid/generate'; 5 | 6 | /** 7 | * Alphabet that doesn't contain `-`. 8 | * 9 | * @borrows https://github.com/ai/nanoid/blob/master/index.browser.js#L16 10 | */ 11 | const ALPHABET = 'Uint8ArdomValuesObj012345679BCDEFGHIJKLMNPQRSTWXYZ_cfghkpqvwxyz'; 12 | 13 | /** 14 | * Generates an unique identifier. 15 | * 16 | * @return {string} 17 | */ 18 | export default function uniqueId() { 19 | return `cf-${ generate( ALPHABET, 21 ) }`; 20 | } 21 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/core/utils/api-fetch.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { __ } from '@wordpress/i18n'; 5 | 6 | export default ( url, method, data = null ) => { 7 | return new Promise( ( resolve, reject ) => { 8 | const request = window.jQuery.ajax( { 9 | url: url, 10 | type: method, 11 | data: data 12 | } ); 13 | 14 | request.done( ( response ) => { 15 | resolve( response ); 16 | } ); 17 | 18 | request.fail( () => { 19 | reject( __( 'An error occured.', 'carbon-fields-ui' ) ); 20 | } ); 21 | } ); 22 | }; 23 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/monitors/conditional-display/comparers/contain.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Internal dependencies. 3 | */ 4 | import base from './base'; 5 | 6 | export default { 7 | ...base, 8 | 9 | /** 10 | * @inheritdoc 11 | */ 12 | operators: [ 'IN', 'NOT IN' ], 13 | 14 | /** 15 | * @inheritdoc 16 | */ 17 | evaluate( a, operator, b ) { 18 | switch ( operator ) { 19 | case 'IN': 20 | return b.indexOf( a ) > -1; 21 | case 'NOT IN': 22 | return b.indexOf( a ) === -1; 23 | default: 24 | return false; 25 | } 26 | } 27 | }; 28 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/TaskQueueInterface.php: -------------------------------------------------------------------------------- 1 | getCode()}) {$this->getMessage()}"; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Field/Header_Scripts_Field.php: -------------------------------------------------------------------------------- 1 | compare( 19 | $post_id, 20 | $this->get_comparison_operator(), 21 | $this->get_value() 22 | ); 23 | } 24 | } -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Container/Condition/User_ID_Condition.php: -------------------------------------------------------------------------------- 1 | compare( 19 | $user_id, 20 | $this->get_comparison_operator(), 21 | $this->get_value() 22 | ); 23 | } 24 | } -------------------------------------------------------------------------------- /vendor/pusher/pusher-php-server/src/Webhook.php: -------------------------------------------------------------------------------- 1 | time_ms = $time_ms; 15 | $this->events = $events; 16 | } 17 | 18 | public function get_events(): array 19 | { 20 | return $this->events; 21 | } 22 | 23 | public function get_time_ms(): int 24 | { 25 | return $this->time_ms; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/fields/image/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { addFilter } from '@wordpress/hooks'; 5 | import { __ } from '@wordpress/i18n'; 6 | 7 | addFilter( 'carbon-fields.image.block', 'carbon-fields/blocks', ( OriginalImageField ) => ( props ) => { 8 | return ( 9 | 15 | ); 16 | } ); 17 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/fields/file/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { addFilter } from '@wordpress/hooks'; 5 | import { __ } from '@wordpress/i18n'; 6 | 7 | addFilter( 'carbon-fields.file.metabox', 'carbon-fields/metaboxes', ( OriginalFileField ) => ( props ) => { 8 | return ( 9 | 15 | ); 16 | } ); 17 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Datastore/Empty_Datastore.php: -------------------------------------------------------------------------------- 1 | { 9 | return class WithPropsComponent extends Component { 10 | render() { 11 | return ( 12 | 16 | ); 17 | } 18 | }; 19 | }, 'withProps' ); 20 | } 21 | -------------------------------------------------------------------------------- /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/htmlburger/carbon-fields/.editorconfig: -------------------------------------------------------------------------------- 1 | # This file is for unifying the coding style for different editors and IDEs 2 | # editorconfig.org 3 | 4 | # WordPress Coding Standards 5 | # https://make.wordpress.org/core/handbook/coding-standards/ 6 | 7 | root = true 8 | 9 | [*] 10 | charset = utf-8 11 | end_of_line = lf 12 | insert_final_newline = true 13 | trim_trailing_whitespace = true 14 | indent_style = tab 15 | indent_size = 4 16 | 17 | [{package.json,*.yml}] 18 | indent_style = space 19 | indent_size = 2 20 | 21 | [composer.json] 22 | indent_style = space 23 | 24 | [*.md] 25 | trim_trailing_whitespace = false 26 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Container/Condition/Blog_ID_Condition.php: -------------------------------------------------------------------------------- 1 | compare( 19 | $blog_id, 20 | $this->get_comparison_operator(), 21 | $this->get_value() 22 | ); 23 | } 24 | } -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Container/Condition/Post_Type_Condition.php: -------------------------------------------------------------------------------- 1 | compare( 19 | $post_type, 20 | $this->get_comparison_operator(), 21 | $this->get_value() 22 | ); 23 | } 24 | } -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/fields/image/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { addFilter } from '@wordpress/hooks'; 5 | import { __ } from '@wordpress/i18n'; 6 | 7 | addFilter( 'carbon-fields.image.metabox', 'carbon-fields/metaboxes', ( OriginalImageField ) => ( props ) => { 8 | return ( 9 | 15 | ); 16 | } ); 17 | -------------------------------------------------------------------------------- /vendor/psr/http-client/README.md: -------------------------------------------------------------------------------- 1 | HTTP Client 2 | =========== 3 | 4 | This repository holds all the common code related to [PSR-18 (HTTP Client)][psr-url]. 5 | 6 | Note that this is not a HTTP Client implementation of its own. It is merely abstractions that describe the components of a HTTP Client. 7 | 8 | The installable [package][package-url] and [implementations][implementation-url] are listed on Packagist. 9 | 10 | [psr-url]: http://www.php-fig.org/psr/psr-18 11 | [package-url]: https://packagist.org/packages/psr/http-client 12 | [implementation-url]: https://packagist.org/providers/psr/http-client-implementation 13 | -------------------------------------------------------------------------------- /vendor/ralouphie/getallheaders/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ralouphie/getallheaders", 3 | "description": "A polyfill for getallheaders.", 4 | "license": "MIT", 5 | "authors": [ 6 | { 7 | "name": "Ralph Khattar", 8 | "email": "ralph.khattar@gmail.com" 9 | } 10 | ], 11 | "require": { 12 | "php": ">=5.6" 13 | }, 14 | "require-dev": { 15 | "phpunit/phpunit": "^5 || ^6.5", 16 | "php-coveralls/php-coveralls": "^2.1" 17 | }, 18 | "autoload": { 19 | "files": ["src/getallheaders.php"] 20 | }, 21 | "autoload-dev": { 22 | "psr-4": { 23 | "getallheaders\\Tests\\": "tests/" 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/core/hocs/with-validation/required.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { __ } from '@wordpress/i18n'; 5 | import { isObject, isEmpty } from 'lodash'; 6 | 7 | /** 8 | * Validates the given value. 9 | * 10 | * @param {mixed} value 11 | * @return {?string} 12 | */ 13 | export default function required( value ) { 14 | const isObjectValue = isObject( value ); 15 | 16 | if ( ( isObjectValue && ! isEmpty( value ) ) || ( ! isObjectValue && !! value ) ) { 17 | return null; 18 | } 19 | 20 | return __( 'This field is required.', 'carbon-fields-ui' ); 21 | } 22 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/core/store/selectors.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Returns the validation error for the specified field. 3 | * 4 | * @param {Object} state 5 | * @param {string} fieldId 6 | * @return {mixed} 7 | */ 8 | export function getValidationError( state, fieldId ) { 9 | return state.validation[ fieldId ] || null; 10 | } 11 | 12 | /** 13 | * Returns whether the field is visible. 14 | * 15 | * @param {Object} state 16 | * @param {string} fieldId 17 | * @return {boolean} 18 | */ 19 | export function isFieldVisible( state, fieldId ) { 20 | return state.hiddenFields.indexOf( fieldId ) === -1; 21 | } 22 | -------------------------------------------------------------------------------- /vendor/psr/http-client/src/ClientInterface.php: -------------------------------------------------------------------------------- 1 | compare( 19 | $taxonomy, 20 | $this->get_comparison_operator(), 21 | $this->get_value() 22 | ); 23 | } 24 | } -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Event/SingleEventListener.php: -------------------------------------------------------------------------------- 1 | called; 19 | } 20 | 21 | /** 22 | * {@inheritDoc} 23 | */ 24 | public function notify() { 25 | $this->called = true; 26 | return call_user_func_array( array( $this, 'parent::notify' ), func_get_args() ); 27 | } 28 | } -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Libraries/Sidebar_Manager/assets/css/app.css: -------------------------------------------------------------------------------- 1 | /* ------------------------------------------------------------ *\ 2 | Remove Sidebar Button 3 | \* ------------------------------------------------------------ */ 4 | 5 | .carbon-btn-remove-sidebar { position: absolute; top: 10px; right: 33px; padding: 0; margin: 0; font-size: 0; line-height: 0; text-decoration: none; color: #c00; opacity: 0.7; } 6 | .carbon-btn-remove-sidebar:hover { color: $color-darkred-font; opacity: 1; } 7 | .carbon-btn-remove-sidebar:before { content: '\f182'; display: block; font-family: 'dashicons'; font-size: 20px; line-height: 1; } 8 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/fields/block-preview/style.scss: -------------------------------------------------------------------------------- 1 | /* ------------------------------------------------------------ *\ 2 | Block Preview iFrame 3 | \* ------------------------------------------------------------ */ 4 | 5 | body.block-editor-iframe__body { 6 | .cf-block-preview { 7 | display: block; 8 | } 9 | 10 | // Hide all other fields except the HTML fields with preview 11 | // Also check if there is preview field at all or just show all fields 12 | .cf-block__fields:has(.cf-block-preview) .cf-field:not(.cf-block-preview) { 13 | display: none; 14 | } 15 | } -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Field/Footer_Scripts_Field.php: -------------------------------------------------------------------------------- 1 | 27 | ); 28 | } 29 | } 30 | 31 | export default HiddenField; 32 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/monitors/conditional-display/comparers/scalar.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Internal dependencies. 3 | */ 4 | import base from './base'; 5 | 6 | export default { 7 | ...base, 8 | 9 | /** 10 | * @inheritdoc 11 | */ 12 | operators: [ '>', '>=', '<', '<=' ], 13 | 14 | /** 15 | * @inheritdoc 16 | */ 17 | evaluate( a, operator, b ) { 18 | switch ( operator ) { 19 | case '>': 20 | return a > b; 21 | case '>=': 22 | return a >= b; 23 | case '<': 24 | return a < b; 25 | case '<=': 26 | return a <= b; 27 | default: 28 | return false; 29 | } 30 | } 31 | }; 32 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Container/Condition/Current_User_ID_Condition.php: -------------------------------------------------------------------------------- 1 | compare( 19 | $user_id, 20 | $this->get_comparison_operator(), 21 | $this->get_value() 22 | ); 23 | } 24 | } -------------------------------------------------------------------------------- /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/htmlburger/carbon-fields/packages/blocks/fields/multiselect/style.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Multiselect 3 | ========================================================================== */ 4 | 5 | .cf-multiselect__control { 6 | .wp-block & { 7 | border-radius: 0; 8 | } 9 | 10 | .edit-post-sidebar &, 11 | .edit-post-sidebar &:hover { 12 | border-color: $gb-dark-gray-150; 13 | } 14 | 15 | .edit-post-sidebar &--is-focused, 16 | .edit-post-sidebar &--is-focused:hover { 17 | border-color: $wp-color-medium-blue; 18 | box-shadow: 0 0 0 1px $wp-color-medium-blue; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Datastore/Network_Datastore.php: -------------------------------------------------------------------------------- 1 | sitemeta; 24 | } 25 | 26 | /** 27 | * {@inheritDoc} 28 | */ 29 | public function get_table_field_name() { 30 | return 'site_id'; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/monitors/conditional-display/comparers/any-equality.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { includes } from 'lodash'; 5 | 6 | /** 7 | * Internal dependencies. 8 | */ 9 | import base from './base'; 10 | 11 | export default { 12 | ...base, 13 | 14 | /** 15 | * @inheritdoc 16 | */ 17 | operators: [ '=', '!=' ], 18 | 19 | /** 20 | * @inheritdoc 21 | */ 22 | evaluate( a, operator, b ) { 23 | switch ( operator ) { 24 | case '=': 25 | return includes( a, b ); 26 | case '!=': 27 | return ! includes( a, b ); 28 | default: 29 | return false; 30 | } 31 | } 32 | }; 33 | 34 | -------------------------------------------------------------------------------- /vendor/psr/http-factory/src/ResponseFactoryInterface.php: -------------------------------------------------------------------------------- 1 | ( props ) => { 13 | return ( 14 | 20 | ); 21 | } ); 22 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/MessageFormatterInterface.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/htmlburger/carbon-fields/core/Container/Condition/Current_User_Role_Condition.php: -------------------------------------------------------------------------------- 1 | 17 | */ 18 | protected function get_user_roles( $environment ) { 19 | $user = wp_get_current_user(); 20 | $roles = $user ? $user->roles : array(); 21 | return $roles; 22 | } 23 | } -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Event/Listener.php: -------------------------------------------------------------------------------- 1 | -1; 17 | }, 18 | 19 | /** 20 | * Performs the comparison. 21 | * 22 | * @param {mixed} a 23 | * @param {string} operator 24 | * @param {mixed} b 25 | * @return {boolean} 26 | */ 27 | evaluate() { 28 | return false; 29 | } 30 | }; 31 | -------------------------------------------------------------------------------- /vendor/psr/log/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "psr/log", 3 | "description": "Common interface for logging libraries", 4 | "keywords": ["psr", "psr-3", "log"], 5 | "homepage": "https://github.com/php-fig/log", 6 | "license": "MIT", 7 | "authors": [ 8 | { 9 | "name": "PHP-FIG", 10 | "homepage": "https://www.php-fig.org/" 11 | } 12 | ], 13 | "require": { 14 | "php": ">=5.3.0" 15 | }, 16 | "autoload": { 17 | "psr-4": { 18 | "Psr\\Log\\": "Psr/Log/" 19 | } 20 | }, 21 | "extra": { 22 | "branch-alias": { 23 | "dev-master": "1.1.x-dev" 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Field/Date_Time_Field.php: -------------------------------------------------------------------------------- 1 | true, 15 | 'enableTime' => true, 16 | 'enableSeconds' => true, 17 | ); 18 | 19 | /** 20 | * {@inheritDoc} 21 | */ 22 | protected $storage_format = 'Y-m-d H:i:s'; 23 | 24 | /** 25 | * {@inheritDoc} 26 | */ 27 | protected $input_format_php = 'Y-m-d g:i:s A'; 28 | 29 | /** 30 | * {@inheritDoc} 31 | */ 32 | protected $input_format_js = 'Y-m-d h:i:S K'; 33 | } 34 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/monitors/conditional-display/comparers/any-contain.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { intersection } from 'lodash'; 5 | 6 | /** 7 | * Internal dependencies. 8 | */ 9 | import base from './base'; 10 | 11 | export default { 12 | ...base, 13 | 14 | /** 15 | * @inheritdoc 16 | */ 17 | operators: [ 'IN', 'NOT IN' ], 18 | 19 | /** 20 | * @inheritdoc 21 | */ 22 | evaluate( a, operator, b ) { 23 | switch ( operator ) { 24 | case 'IN': 25 | return intersection( a, b ).length > 0; 26 | case 'NOT IN': 27 | return intersection( a, b ).length === 0; 28 | default: 29 | return false; 30 | } 31 | } 32 | }; 33 | -------------------------------------------------------------------------------- /vendor/paragonie/random_compat/psalm.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Container/Condition/Post_Parent_ID_Condition.php: -------------------------------------------------------------------------------- 1 | post_parent ) : 0; 19 | 20 | return $this->compare( 21 | $post_parent_id, 22 | $this->get_comparison_operator(), 23 | $this->get_value() 24 | ); 25 | } 26 | } -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/fields/radio/style.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Radio 3 | ========================================================================== */ 4 | 5 | .cf-radio__label { 6 | .inside .cf-radio-image .cf-radio__input:focus ~ & { 7 | box-shadow: 0 0 2px transparentize($wp-color-medium-blue, 0.2); 8 | } 9 | } 10 | 11 | .cf-radio-image__image { 12 | .inside & { 13 | border: 1px solid $wp-color-gray-light-800; 14 | } 15 | 16 | .inside .cf-radio__input:focus ~ .cf-radio__label &, 17 | .inside .cf-radio__input:checked ~ .cf-radio__label & { 18 | outline: 4px solid $wp-color-medium-blue; 19 | } 20 | } 21 | 22 | -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php', 10 | 'c964ee0ededf28c96ebd9db5099ef910' => $vendorDir . '/guzzlehttp/promises/src/functions_include.php', 11 | '6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php', 12 | '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php', 13 | '3109cb1a231dcd04bee1f9f620d46975' => $vendorDir . '/paragonie/sodium_compat/autoload.php', 14 | ); 15 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/monitors/revisions-flag/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { withSelect } from '@wordpress/data'; 5 | 6 | /** 7 | * Renders the input used to notify the backend about the changes. 8 | * 9 | * @param {Object} props 10 | * @param {boolean} props.isDirty 11 | * @return {mixed} 12 | */ 13 | function RevisionsFlag( props ) { 14 | return ( 15 | 21 | ); 22 | } 23 | 24 | export default withSelect( ( select ) => ( { 25 | isDirty: select( 'carbon-fields/metaboxes' ).isDirty() 26 | } ) )( RevisionsFlag ); 27 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/fields/media-gallery/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { addFilter } from '@wordpress/hooks'; 5 | import { __ } from '@wordpress/i18n'; 6 | 7 | /** 8 | * Internal dependencies. 9 | */ 10 | import './style.scss'; 11 | 12 | addFilter( 'carbon-fields.media_gallery.block', 'carbon-fields/blocks', ( OriginalMediaGalleryField ) => ( props ) => { 13 | return ( 14 | 20 | ); 21 | } ); 22 | -------------------------------------------------------------------------------- /vendor/psr/http-client/src/RequestExceptionInterface.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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/core/utils/fetch-attachments-data.js: -------------------------------------------------------------------------------- 1 | /** 2 | * The external dependencies. 3 | */ 4 | import { __ } from '@wordpress/i18n'; 5 | 6 | export default ( attachments ) => { 7 | return new Promise( ( resolve, reject ) => { 8 | // eslint-disable-next-line 9 | let result = wp.media.ajax( { 10 | data: { 11 | action: 'query-attachments', 12 | query: { 13 | post__in: attachments, 14 | posts_per_page: attachments.length 15 | } 16 | } 17 | } ); 18 | 19 | result.done( ( response ) => { 20 | resolve( response ); 21 | } ); 22 | 23 | result.fail( () => { 24 | reject( __( 'An error occurred while trying to fetch files data.', 'carbon-fields-ui' ) ); 25 | } ); 26 | } ); 27 | }; 28 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/core/utils/from-selector.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { subscribe } from '@wordpress/data'; 5 | 6 | /** 7 | * Creates a callbag listenable source from a store's selector. 8 | * 9 | * @param {Function} selector 10 | * @param {...mixed} args 11 | * @return {Function} 12 | */ 13 | export default function fromSelector( selector, ...args ) { 14 | return function( start, sink ) { 15 | if ( start !== 0 ) { 16 | return; 17 | } 18 | 19 | const unsubscribe = subscribe( () => sink( 1, selector( ...args ) ) ); 20 | 21 | sink( 0, ( type ) => { 22 | if ( type === 2 ) { 23 | unsubscribe(); 24 | } 25 | } ); 26 | 27 | sink( 1, selector( ...args ) ); 28 | }; 29 | } 30 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/fields/media-gallery/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { addFilter } from '@wordpress/hooks'; 5 | import { __ } from '@wordpress/i18n'; 6 | 7 | /** 8 | * The internal dependencies. 9 | */ 10 | import './style.scss'; 11 | 12 | addFilter( 'carbon-fields.media_gallery.metabox', 'carbon-fields/metaboxes', ( OriginalMediaGalleryField ) => ( props ) => { 13 | return ( 14 | 20 | ); 21 | } ); 22 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/containers/hooks.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { compose } from '@wordpress/compose'; 5 | import { addFilter } from '@wordpress/hooks'; 6 | 7 | /** 8 | * Carbon Fields dependencies. 9 | */ 10 | import { withFilters } from '@carbon-fields/core'; 11 | 12 | /** 13 | * Internal dependencies. 14 | */ 15 | import withContainer from '../hocs/with-container'; 16 | 17 | /** 18 | * Extends the containers with necessary hooks. 19 | */ 20 | addFilter( 'carbon-fields.register-container-type', 'carbon-fields/metaboxes', ( type, context, component ) => { 21 | return compose( 22 | withContainer, 23 | withFilters( `carbon-fields.${ type }.${ context }` ) 24 | )( component ); 25 | } ); 26 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Container/Broken_Container.php: -------------------------------------------------------------------------------- 1 | { 15 | const applyWithSelect = withSelect( ( select, { id } ) => { 16 | const container = select( 'carbon-fields/metaboxes' ).getContainerById( id ); 17 | 18 | return { 19 | container 20 | }; 21 | } ); 22 | 23 | return applyWithSelect( Component ); 24 | }, 'withContainer' ); 25 | -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MauticInstaller.php: -------------------------------------------------------------------------------- 1 | 'plugins/{$name}/', 8 | 'theme' => 'themes/{$name}/', 9 | ); 10 | 11 | /** 12 | * Format package name of mautic-plugins to CamelCase 13 | */ 14 | public function inflectPackageVars($vars) 15 | { 16 | if ($vars['type'] == 'mautic-plugin') { 17 | $vars['name'] = preg_replace_callback('/(-[a-z])/', function ($matches) { 18 | return strtoupper($matches[0][1]); 19 | }, ucfirst($vars['name'])); 20 | } 21 | 22 | return $vars; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /vendor/psr/http-message/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "psr/http-message", 3 | "description": "Common interface for HTTP messages", 4 | "keywords": ["psr", "psr-7", "http", "http-message", "request", "response"], 5 | "homepage": "https://github.com/php-fig/http-message", 6 | "license": "MIT", 7 | "authors": [ 8 | { 9 | "name": "PHP-FIG", 10 | "homepage": "http://www.php-fig.org/" 11 | } 12 | ], 13 | "require": { 14 | "php": ">=5.3.0" 15 | }, 16 | "autoload": { 17 | "psr-4": { 18 | "Psr\\Http\\Message\\": "src/" 19 | } 20 | }, 21 | "extra": { 22 | "branch-alias": { 23 | "dev-master": "1.0.x-dev" 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/store/selectors.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Get the container by a given block name. 3 | * 4 | * @param {Object} state 5 | * @param {string} blockName 6 | * @return {Object} 7 | */ 8 | export function getContainerDefinitionByBlockName( state, blockName ) { 9 | return state.containerDefinitionsByBlockName[ 10 | blockName.replace( 'carbon-fields/', '' ) 11 | ] || {}; 12 | } 13 | 14 | /** 15 | * Get the fields by a given block name. 16 | * 17 | * @param {Object} state 18 | * @param {string} blockName 19 | * @return {Object[]} 20 | */ 21 | export function getFieldDefinitionsByBlockName( state, blockName ) { 22 | return state.fieldDefinitionsByBlockName[ 23 | blockName.replace( 'carbon-fields/', '' ) 24 | ] || []; 25 | } 26 | -------------------------------------------------------------------------------- /vendor/psr/http-client/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "psr/http-client", 3 | "description": "Common interface for HTTP clients", 4 | "keywords": ["psr", "psr-18", "http", "http-client"], 5 | "homepage": "https://github.com/php-fig/http-client", 6 | "license": "MIT", 7 | "authors": [ 8 | { 9 | "name": "PHP-FIG", 10 | "homepage": "http://www.php-fig.org/" 11 | } 12 | ], 13 | "require": { 14 | "php": "^7.0 || ^8.0", 15 | "psr/http-message": "^1.0" 16 | }, 17 | "autoload": { 18 | "psr-4": { 19 | "Psr\\Http\\Client\\": "src/" 20 | } 21 | }, 22 | "extra": { 23 | "branch-alias": { 24 | "dev-master": "1.0.x-dev" 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/blocks/store/actions.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Returns an action object used to setup the definitions state when first opening an editor. 3 | * 4 | * @param {Object} definitions 5 | * @return {Object} 6 | */ 7 | export function setupContainerDefinitions( definitions ) { 8 | return { 9 | type: 'SETUP_CONTAINER_DEFINITIONS', 10 | payload: { 11 | definitions 12 | } 13 | }; 14 | } 15 | 16 | /** 17 | * Returns an action object used to setup the definitions state when first opening an editor. 18 | * 19 | * @param {Object} definitions 20 | * @return {Object} 21 | */ 22 | export function setupFieldDefinitions( definitions ) { 23 | return { 24 | type: 'SETUP_FIELD_DEFINITIONS', 25 | payload: { 26 | definitions 27 | } 28 | }; 29 | } 30 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/containers/widget/style.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Widget 3 | ========================================================================== */ 4 | 5 | .cf-container-widget { 6 | margin-bottom: 13px; 7 | 8 | .cf-field { 9 | margin: 1em 0 0; 10 | padding: 0; 11 | border-width: 0; 12 | } 13 | 14 | .cf-field + .cf-field { 15 | border-top-width: 0; 16 | } 17 | 18 | .cf-complex__group-body { 19 | border-width: 1px 1px 1px 1px; 20 | margin-top: 0; 21 | } 22 | 23 | .cf-complex__group-body .cf-field { 24 | padding: 12px; 25 | } 26 | 27 | .cf-complex__group-body .cf-field + .cf-field { 28 | border-width: 1px 0 0 0; 29 | padding-top: 1em; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/core/fields/datetime/style.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | DateTime 3 | ========================================================================== */ 4 | 5 | @import '~flatpickr/dist/flatpickr.min.css'; 6 | 7 | .cf-datetime__inner { 8 | display: flex; 9 | align-items: stretch; 10 | flex-wrap: wrap; 11 | margin-top: -5px; 12 | 13 | &::before { 14 | display: none; 15 | } 16 | } 17 | 18 | .cf-datetime__input { 19 | flex: 1; 20 | margin: 5px 6px 0 0; 21 | } 22 | 23 | .wp-core-ui .button.cf-datetime__button { 24 | margin-top: 5px; 25 | } 26 | 27 | .cf-datetime__button { 28 | flex: 0 0 auto; 29 | 30 | .cf-field & { 31 | margin-bottom: 0; 32 | box-shadow: none; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/BodySummarizer.php: -------------------------------------------------------------------------------- 1 | truncateAt = $truncateAt; 17 | } 18 | 19 | /** 20 | * Returns a summarized message body. 21 | */ 22 | public function summarize(MessageInterface $message): ?string 23 | { 24 | return $this->truncateAt === null 25 | ? \GuzzleHttp\Psr7\Message::bodySummary($message) 26 | : \GuzzleHttp\Psr7\Message::bodySummary($message, $this->truncateAt); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Rfc7230.php: -------------------------------------------------------------------------------- 1 | @,;:\\\"/[\]?={}\x01-\x20\x7F]++):[ \t]*+((?:[ \t]*+[\x21-\x7E\x80-\xFF]++)*+)[ \t]*+\r?\n)m"; 22 | public const HEADER_FOLD_REGEX = "(\r?\n[ \t]++)"; 23 | } 24 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Datastore/Datastore_Holder_Interface.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | protected $supported_comparison_operators = array( '=', '!=' ); 13 | 14 | /** 15 | * Check if comparison is true for $a and $b 16 | * 17 | * @param mixed $a 18 | * @param string $comparison_operator 19 | * @param mixed $b 20 | * @return bool 21 | */ 22 | public function is_correct( $a, $comparison_operator, $b ) { 23 | switch ( $comparison_operator ) { 24 | case '=': 25 | return $a == $b; 26 | case '!=': 27 | return $a != $b; 28 | } 29 | return false; 30 | } 31 | } -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/utils/from-event-pattern.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import create from 'callbag-create'; 5 | 6 | /** 7 | * Callbag source factory from `addHandler` and `removeHandler` pair. 8 | * 9 | * @see https://github.com/Andarist/callbag-from-event-pattern 10 | * @param {Function} addHandler 11 | * @param {Function} removeHandler 12 | * @param {Function} argsTransformer 13 | * @return {Function} 14 | */ 15 | export default function fromEventPattern( addHandler, removeHandler, argsTransformer = ( ...args ) => args ) { 16 | return create( ( sink ) => { 17 | const handler = ( ...args ) => sink( 1, argsTransformer( ...args ) ); 18 | 19 | addHandler( handler ); 20 | 21 | return () => removeHandler( handler ); 22 | } ); 23 | } 24 | -------------------------------------------------------------------------------- /vendor/pusher/pusher-php-server/src/PusherInstance.php: -------------------------------------------------------------------------------- 1 | item.term_object.term_id ); 23 | } else if ( isPlainObject( value ) ) { 24 | value = value.term_object.term_id; 25 | } 26 | 27 | return this.firstComparerIsCorrect( this.getEnvironmentValue( definition, values ), compare, value ); 28 | } 29 | }; 30 | -------------------------------------------------------------------------------- /includes/class-ppdb-online-deactivator.php: -------------------------------------------------------------------------------- 1 | 22 | */ 23 | class Ppdb_Online_Deactivator { 24 | 25 | /** 26 | * Short Description. (use period) 27 | * 28 | * Long Description. 29 | * 30 | * @since 1.0.0 31 | */ 32 | public static function deactivate() { 33 | 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.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/htmlburger/carbon-fields/packages/metaboxes/store/helpers.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { assign, endsWith } from 'lodash'; 5 | 6 | /** 7 | * Internal dependencies. 8 | */ 9 | import flattenField from '../utils/flatten-field'; 10 | 11 | /** 12 | * Transform the shape of the given state to be more Redux friendly. 13 | * 14 | * @param {Object} state 15 | * @return {Object} 16 | */ 17 | export function normalizePreloadedState( state ) { 18 | const fields = []; 19 | const containers = state 20 | .filter( ( { id } ) => ! endsWith( id, '__i__' ) ) 21 | .map( ( container ) => { 22 | return assign( {}, container, { 23 | fields: container.fields.map( ( field ) => flattenField( field, container.id, fields ) ) 24 | } ); 25 | } ); 26 | 27 | return { containers, fields }; 28 | } 29 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Container/Condition/Comparer/Any_Equality_Comparer.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | protected $supported_comparison_operators = array( '=', '!=' ); 13 | 14 | /** 15 | * Check if comparison is true for $a and $b 16 | * 17 | * @param mixed $a 18 | * @param string $comparison_operator 19 | * @param mixed $b 20 | * @return bool 21 | */ 22 | public function is_correct( $a, $comparison_operator, $b ) { 23 | switch ( $comparison_operator ) { 24 | case '=': 25 | return in_array( $b, $a ); 26 | case '!=': 27 | return ! in_array( $b, $a ); 28 | } 29 | return false; 30 | } 31 | } -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Event/PersistentListener.php: -------------------------------------------------------------------------------- 1 | callable; 19 | } 20 | 21 | /** 22 | * {@inheritDoc} 23 | */ 24 | public function set_callable( $callable ) { 25 | $this->callable = $callable; 26 | } 27 | 28 | /** 29 | * {@inheritDoc} 30 | */ 31 | public function is_valid() { 32 | return true; 33 | } 34 | 35 | /** 36 | * {@inheritDoc} 37 | */ 38 | public function notify() { 39 | return call_user_func_array( $this->callable, func_get_args() ); 40 | } 41 | } -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Datastore/User_Meta_Datastore.php: -------------------------------------------------------------------------------- 1 | usermeta; 29 | } 30 | 31 | /** 32 | * Retrieve the meta table field name to query by. 33 | * 34 | * @return string 35 | */ 36 | public function get_table_field_name() { 37 | return 'user_id'; 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Datastore/Post_Meta_Datastore.php: -------------------------------------------------------------------------------- 1 | postmeta; 29 | } 30 | 31 | /** 32 | * Retrieve the meta table field name to query by. 33 | * 34 | * @return string 35 | */ 36 | public function get_table_field_name() { 37 | return 'post_id'; 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/assets/styles/_variables.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Variables 3 | ========================================================================== */ 4 | 5 | $transition-base: .1s linear; 6 | $size-base: 4px; 7 | 8 | /* ========================================================================== 9 | WordPress Variables 10 | ========================================================================== */ 11 | 12 | $wp-radius-round: 3px; 13 | 14 | /* ========================================================================== 15 | Gutenberg Variables - https://github.com/WordPress/gutenberg/blob/master/assets/stylesheets/_variables.scss 16 | ========================================================================== */ 17 | 18 | $gb-radius-round-rectangle: 4px; 19 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Datastore/Comment_Meta_Datastore.php: -------------------------------------------------------------------------------- 1 | commentmeta; 29 | } 30 | 31 | /** 32 | * Retrieve the meta table field name to query by. 33 | * 34 | * @return string 35 | */ 36 | public function get_table_field_name() { 37 | return 'comment_id'; 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /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/psr/log/Psr/Log/NullLogger.php: -------------------------------------------------------------------------------- 1 | logger) { }` 11 | * blocks. 12 | */ 13 | class NullLogger extends AbstractLogger 14 | { 15 | /** 16 | * Logs with an arbitrary level. 17 | * 18 | * @param mixed $level 19 | * @param string $message 20 | * @param array $context 21 | * 22 | * @return void 23 | * 24 | * @throws \Psr\Log\InvalidArgumentException 25 | */ 26 | public function log($level, $message, array $context = array()) 27 | { 28 | // noop 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /vendor/psr/http-factory/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "psr/http-factory", 3 | "description": "Common interfaces for PSR-7 HTTP message factories", 4 | "keywords": [ 5 | "psr", 6 | "psr-7", 7 | "psr-17", 8 | "http", 9 | "factory", 10 | "message", 11 | "request", 12 | "response" 13 | ], 14 | "license": "MIT", 15 | "authors": [ 16 | { 17 | "name": "PHP-FIG", 18 | "homepage": "http://www.php-fig.org/" 19 | } 20 | ], 21 | "require": { 22 | "php": ">=7.0.0", 23 | "psr/http-message": "^1.0" 24 | }, 25 | "autoload": { 26 | "psr-4": { 27 | "Psr\\Http\\Message\\": "src/" 28 | } 29 | }, 30 | "extra": { 31 | "branch-alias": { 32 | "dev-master": "1.0.x-dev" 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /vendor/autoload.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/htmlburger/carbon-fields/packages/metaboxes/monitors/conditional-display/conditions/post-template.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { isArray } from 'lodash'; 5 | 6 | /** 7 | * Internal dependencies. 8 | */ 9 | import base from './base'; 10 | 11 | export default { 12 | ...base, 13 | 14 | /** 15 | * @inheritdoc 16 | */ 17 | isFulfiled( definition, values ) { 18 | definition = { ...definition }; 19 | 20 | // In Gutenberg for the "Default" template is used an empty string. 21 | if ( definition.value === 'default' ) { 22 | definition.value = ''; 23 | } else if ( isArray( definition.value ) ) { 24 | const defaultIndex = definition.value.indexOf( 'default' ); 25 | 26 | if ( defaultIndex !== -1 ) { 27 | definition.value[ defaultIndex ] = ''; 28 | } 29 | } 30 | 31 | return base.isFulfiled( definition, values ); 32 | } 33 | }; 34 | -------------------------------------------------------------------------------- /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/htmlburger/carbon-fields/core/Field/OEmbed_Field.php: -------------------------------------------------------------------------------- 1 | $this->get_value(), 29 | ) ); 30 | 31 | return $field_data; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /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/htmlburger/carbon-fields/core/Container/Condition/Post_Ancestor_ID_Condition.php: -------------------------------------------------------------------------------- 1 | post_type ) ); 25 | } 26 | 27 | return $this->compare( 28 | $ancestors, 29 | $this->get_comparison_operator(), 30 | $this->get_value() 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/htmlburger/carbon-fields/core/Container/Condition/Post_Format_Condition.php: -------------------------------------------------------------------------------- 1 | compare( 24 | $format, 25 | $this->get_comparison_operator(), 26 | $this->get_value() 27 | ); 28 | } 29 | } -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Helper/Color.php: -------------------------------------------------------------------------------- 1 | 6 ? $hex : $hex . 'FF'; 20 | 21 | $int = hexdec( $hex ); 22 | $red = ( $int >> 24 ) & 255; 23 | $green = ( $int >> 16 ) & 255; 24 | $blue = ( $int >> 8 ) & 255; 25 | $alpha = floatval( $int & 255 ) / 255; 26 | 27 | return array( 28 | 'red' => $red, 29 | 'green' => $green, 30 | 'blue' => $blue, 31 | 'alpha' => $alpha, 32 | ); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/store/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { registerStore, dispatch } from '@wordpress/data'; 5 | import { 6 | get, 7 | keyBy 8 | } from 'lodash'; 9 | 10 | /** 11 | * Internal dependencies. 12 | */ 13 | import reducer from './reducer'; 14 | import * as actions from './actions'; 15 | import * as selectors from './selectors'; 16 | import { normalizePreloadedState } from './helpers'; 17 | 18 | /** 19 | * Register the store. 20 | */ 21 | registerStore( 'carbon-fields/metaboxes', { 22 | reducer, 23 | actions, 24 | selectors 25 | } ); 26 | 27 | /** 28 | * Hydrate the store's state. 29 | */ 30 | const { containers, fields } = normalizePreloadedState( get( window.cf, 'preloaded.containers', [] ) ); 31 | 32 | dispatch( 'carbon-fields/metaboxes' ).setupState( 33 | keyBy( containers, 'id' ), 34 | keyBy( fields, 'id' ) 35 | ); 36 | -------------------------------------------------------------------------------- /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 | * @param array @vars 16 | * 17 | * @return array 18 | */ 19 | public function inflectPackageVars($vars) 20 | { 21 | if ($vars['type'] == 'cockpit-module') { 22 | return $this->inflectModuleVars($vars); 23 | } 24 | 25 | return $vars; 26 | } 27 | 28 | public function inflectModuleVars($vars) 29 | { 30 | $vars['name'] = ucfirst(preg_replace('/cockpit-/i', '', $vars['name'])); 31 | 32 | return $vars; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Container/Condition/Post_Level_Condition.php: -------------------------------------------------------------------------------- 1 | get_value(); 22 | if ( is_numeric( $value ) ) { 23 | $value = max( 1, intval( $this->get_value() ) ); 24 | } 25 | 26 | return $this->compare( 27 | $post_level, 28 | $this->get_comparison_operator(), 29 | $value 30 | ); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Container/Condition/Comparer/Comparer.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | protected $supported_comparison_operators = array(); 13 | 14 | /** 15 | * Check if comparer supports the specified comparison sign 16 | * 17 | * @param string $comparison_operator 18 | * @return bool 19 | */ 20 | public function supports_comparison_operator( $comparison_operator ) { 21 | return in_array( $comparison_operator, $this->supported_comparison_operators ); 22 | } 23 | 24 | /** 25 | * Check if comparison is true for $a and $b 26 | * 27 | * @param mixed $a 28 | * @param string $comparison_operator 29 | * @param mixed $b 30 | * @return bool 31 | */ 32 | abstract public function is_correct( $a, $comparison_operator, $b ); 33 | } -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/containers/root-registry.js: -------------------------------------------------------------------------------- 1 | const rootRegistry = {}; 2 | 3 | export function registerContainerRoot( containerId, root ) { 4 | rootRegistry[ containerId ] = { 5 | createdAt: Math.floor(Date.now() / 1000), 6 | ...root, 7 | unmount() { 8 | // Fix issues with race condition by delaying 9 | // the onLoad unmounting of containers 10 | // they would be unmounted later 11 | 12 | if ( parseFloat( window.cf.config.wp_version ) >= 6.2 ) { 13 | const currentTime = Math.floor(Date.now() / 1000); 14 | if ( currentTime - rootRegistry[ containerId ].createdAt >= 3 ) { 15 | root.unmount(); 16 | delete rootRegistry[ containerId ]; 17 | } 18 | } else { 19 | root.unmount(); 20 | delete rootRegistry[ containerId ]; 21 | } 22 | } 23 | }; 24 | } 25 | 26 | export function getContainerRoot( containerId ) { 27 | return rootRegistry[ containerId ] || null; 28 | } -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/metaboxes/monitors/conditional-display/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | import { compose } from '@wordpress/compose'; 5 | import { withSelect } from '@wordpress/data'; 6 | import { withEffects } from 'refract-callbag'; 7 | 8 | /** 9 | * Internal dependencies. 10 | */ 11 | import aperture from './aperture'; 12 | import handler from './handler'; 13 | 14 | /** 15 | * Performs the evaluation of conditions. 16 | * 17 | * @return {null} 18 | */ 19 | function ConditionalDisplay() { 20 | return null; 21 | } 22 | 23 | const applyWithSelect = withSelect( ( select ) => { 24 | const containers = select( 'carbon-fields/metaboxes' ).getContainers(); 25 | 26 | return { 27 | containers 28 | }; 29 | } ); 30 | 31 | const applyWithEffects = withEffects( aperture, { handler } ); 32 | 33 | export default compose( 34 | applyWithSelect, 35 | applyWithEffects 36 | )( ConditionalDisplay ); 37 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Field/Separator_Field.php: -------------------------------------------------------------------------------- 1 | 4 | Copyright (c) 2013-2019, Frank Denis 5 | 6 | Permission to use, copy, modify, and/or distribute this software for any 7 | purpose with or without fee is hereby granted, provided that the above 8 | copyright notice and this permission notice appear in all copies. 9 | 10 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 11 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 12 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 13 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 14 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 15 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 16 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 17 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Container/Condition/User_Role_Condition.php: -------------------------------------------------------------------------------- 1 | 17 | */ 18 | protected function get_user_roles( $environment ) { 19 | return $environment['roles']; 20 | } 21 | 22 | /** 23 | * Check if the condition is fulfilled 24 | * 25 | * @param array $environment 26 | * @return bool 27 | */ 28 | public function is_fulfilled( $environment ) { 29 | $roles = $this->get_user_roles( $environment ); 30 | 31 | return $this->compare( 32 | $roles, 33 | $this->get_comparison_operator(), 34 | $this->get_value() 35 | ); 36 | } 37 | } -------------------------------------------------------------------------------- /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/htmlburger/carbon-fields/core/Container/Condition/Post_Template_Condition.php: -------------------------------------------------------------------------------- 1 | compare( 28 | $post_template, 29 | $this->get_comparison_operator(), 30 | $this->get_value() 31 | ); 32 | } 33 | } -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/bin/webpack.vendor.js: -------------------------------------------------------------------------------- 1 | /** 2 | * External dependencies. 3 | */ 4 | const webpack = require( 'webpack' ); 5 | const { merge } = require( 'webpack-merge' ); 6 | 7 | /** 8 | * Internal dependencies. 9 | */ 10 | const base = require( './webpack.base' ); 11 | const paths = require( './paths' ); 12 | const wpPackages = require( './wp-packages' ); 13 | 14 | const config = { 15 | entry: { 16 | vendor: './packages/vendor/index.js' 17 | } 18 | }; 19 | 20 | module.exports = [ 21 | merge( base, config, { 22 | output: { 23 | path: paths.gutenbergBuildPath 24 | }, 25 | externals: Object.assign( {}, wpPackages.externals, { 26 | 'lodash': 'lodash', 27 | 'react': 'React', 28 | 'react-dom': 'ReactDOM', 29 | 'jquery': 'jQuery', 30 | } ) 31 | } ), 32 | merge( base, config, { 33 | output: { 34 | path: paths.classicBuildPath 35 | }, 36 | plugins: [ 37 | new webpack.ProvidePlugin( wpPackages.providers ) 38 | ] 39 | } ) 40 | ]; 41 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Field/Time_Field.php: -------------------------------------------------------------------------------- 1 | true, 14 | 'enableTime' => true, 15 | 'noCalendar' => true, 16 | 'enableSeconds' => true, 17 | 'altInput' => true, 18 | 'altFormat' => "h:i:S K", 19 | ); 20 | 21 | /** 22 | * {@inheritDoc} 23 | */ 24 | protected $storage_format = 'H:i:s'; 25 | 26 | /** 27 | * {@inheritDoc} 28 | */ 29 | protected $input_format_php = 'g:i:s A'; 30 | 31 | /** 32 | * {@inheritDoc} 33 | */ 34 | protected $input_format_js = 'h:i:S K'; 35 | 36 | public function get_storage_format() { 37 | if ( $this->get_context() === 'block' ) { 38 | $this->input_format_js = "Y-m-d h:i:S K"; 39 | 40 | return "Y-m-d H:i:s"; 41 | } 42 | 43 | return $this->storage_format; 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /admin/js/ppdb-online-admin.js: -------------------------------------------------------------------------------- 1 | (function( $ ) { 2 | 'use strict'; 3 | 4 | /** 5 | * All of the code for your admin-facing JavaScript source 6 | * should reside in this file. 7 | * 8 | * Note: It has been assumed you will write jQuery code here, so the 9 | * $ function reference has been prepared for usage within the scope 10 | * of this function. 11 | * 12 | * This enables you to define handlers, for when the DOM is ready: 13 | * 14 | * $(function() { 15 | * 16 | * }); 17 | * 18 | * When the window is loaded: 19 | * 20 | * $( window ).load(function() { 21 | * 22 | * }); 23 | * 24 | * ...and/or other possibilities. 25 | * 26 | * Ideally, it is not considered best practise to attach more than a 27 | * single DOM-ready or window-load handler for a particular page. 28 | * Although scripts in the WordPress core, Plugins and Themes may be 29 | * practising this, we should strive to set a better example in our own work. 30 | */ 31 | 32 | })( jQuery ); 33 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /public/js/ppdb-online-public.js: -------------------------------------------------------------------------------- 1 | (function( $ ) { 2 | 'use strict'; 3 | 4 | /** 5 | * All of the code for your public-facing JavaScript source 6 | * should reside in this file. 7 | * 8 | * Note: It has been assumed you will write jQuery code here, so the 9 | * $ function reference has been prepared for usage within the scope 10 | * of this function. 11 | * 12 | * This enables you to define handlers, for when the DOM is ready: 13 | * 14 | * $(function() { 15 | * 16 | * }); 17 | * 18 | * When the window is loaded: 19 | * 20 | * $( window ).load(function() { 21 | * 22 | * }); 23 | * 24 | * ...and/or other possibilities. 25 | * 26 | * Ideally, it is not considered best practise to attach more than a 27 | * single DOM-ready or window-load handler for a particular page. 28 | * Although scripts in the WordPress core, Plugins and Themes may be 29 | * practising this, we should strive to set a better example in our own work. 30 | */ 31 | 32 | })( jQuery ); 33 | -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/pusher/pusher-php-server/src'), 10 | 'Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'), 11 | 'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-message/src', $vendorDir . '/psr/http-factory/src'), 12 | 'Psr\\Http\\Client\\' => array($vendorDir . '/psr/http-client/src'), 13 | 'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'), 14 | 'GuzzleHttp\\Promise\\' => array($vendorDir . '/guzzlehttp/promises/src'), 15 | 'GuzzleHttp\\' => array($vendorDir . '/guzzlehttp/guzzle/src'), 16 | 'Composer\\Installers\\' => array($vendorDir . '/composer/installers/src/Composer/Installers'), 17 | 'Carbon_Fields_Plugin\\' => array($baseDir . '/core'), 18 | 'Carbon_Fields\\' => array($vendorDir . '/htmlburger/carbon-fields/core'), 19 | ); 20 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/core/Container/Condition/Term_Level_Condition.php: -------------------------------------------------------------------------------- 1 | term_id, $term->taxonomy, 'taxonomy' ) ) + 1; 23 | } 24 | $value = $this->get_value(); 25 | if ( is_numeric( $value ) ) { 26 | $value = max( 1, intval( $this->get_value() ) ); 27 | } 28 | 29 | return $this->compare( 30 | $term_level, 31 | $this->get_comparison_operator(), 32 | $value 33 | ); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /vendor/htmlburger/carbon-fields/packages/core/fields/color/style.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Color 3 | ========================================================================== */ 4 | 5 | .cf-color__inner { 6 | display: flex; 7 | align-items: center; 8 | } 9 | 10 | .cf-color__toggle { 11 | position: relative; 12 | overflow: hidden; 13 | } 14 | 15 | .cf-color__toggle-text { 16 | margin-left: 27px; 17 | } 18 | 19 | .cf-color__preview { 20 | position: absolute; 21 | top: 0; 22 | left: 0; 23 | width: 26px; 24 | height: 100%; 25 | border-right: 1px solid #ccc; 26 | 27 | .cf-color__toggle:hover &, 28 | .cf-color__toggle:active & { 29 | border-color: #999; 30 | } 31 | } 32 | 33 | .cf-color__reset { 34 | .cf-color & { 35 | margin-left: 5px; 36 | text-decoration: none; 37 | } 38 | 39 | .cf-color &:focus { 40 | box-shadow: none; 41 | } 42 | } 43 | 44 | .cf-color__picker { 45 | position: absolute; 46 | z-index: 9999; 47 | } 48 | --------------------------------------------------------------------------------