first
This commit is contained in:
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
1
wp-content/plugins/advanced-custom-fields/assets/build/js/acf-field-group.min.js
vendored
Normal file
1
wp-content/plugins/advanced-custom-fields/assets/build/js/acf-field-group.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10521
wp-content/plugins/advanced-custom-fields/assets/build/js/acf-input.js
Normal file
10521
wp-content/plugins/advanced-custom-fields/assets/build/js/acf-input.js
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
1
wp-content/plugins/advanced-custom-fields/assets/build/js/acf-input.min.js
vendored
Normal file
1
wp-content/plugins/advanced-custom-fields/assets/build/js/acf-input.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -0,0 +1,401 @@
|
||||
/******/ (function() { // webpackBootstrap
|
||||
/******/ var __webpack_modules__ = ({
|
||||
|
||||
/***/ "./src/advanced-custom-fields-pro/assets/src/js/_acf-internal-post-type.js":
|
||||
/*!*********************************************************************************!*\
|
||||
!*** ./src/advanced-custom-fields-pro/assets/src/js/_acf-internal-post-type.js ***!
|
||||
\*********************************************************************************/
|
||||
/***/ (function() {
|
||||
|
||||
(function ($, undefined) {
|
||||
/**
|
||||
* internalPostTypeSettingsManager
|
||||
*
|
||||
* Model for handling events in the settings metaboxes of internal post types
|
||||
*
|
||||
* @since 6.1
|
||||
*/
|
||||
const internalPostTypeSettingsManager = new acf.Model({
|
||||
id: 'internalPostTypeSettingsManager',
|
||||
wait: 'ready',
|
||||
events: {
|
||||
'blur .acf_slugify_to_key': 'onChangeSlugify',
|
||||
'blur .acf_singular_label': 'onChangeSingularLabel',
|
||||
'blur .acf_plural_label': 'onChangePluralLabel',
|
||||
'change .acf_hierarchical_switch': 'onChangeHierarchical',
|
||||
'click .acf-regenerate-labels': 'onClickRegenerateLabels',
|
||||
'click .acf-clear-labels': 'onClickClearLabels',
|
||||
'change .rewrite_slug_field': 'onChangeURLSlug',
|
||||
'keyup .rewrite_slug_field': 'onChangeURLSlug'
|
||||
},
|
||||
onChangeSlugify: function (e, $el) {
|
||||
const name = $el.val();
|
||||
const $keyInput = $('.acf_slugified_key');
|
||||
|
||||
// Generate field key.
|
||||
if ($keyInput.val().trim() == '') {
|
||||
let slug = acf.strSanitize(name.trim()).replaceAll('_', '-');
|
||||
slug = acf.applyFilters('generate_internal_post_type_name', slug, this);
|
||||
let slugLength = 0;
|
||||
if ('taxonomy' === acf.get('screen')) {
|
||||
slugLength = 32;
|
||||
} else if ('post_type' === acf.get('screen')) {
|
||||
slugLength = 20;
|
||||
}
|
||||
if (slugLength) {
|
||||
slug = slug.substring(0, slugLength);
|
||||
}
|
||||
$keyInput.val(slug);
|
||||
}
|
||||
},
|
||||
initialize: function () {
|
||||
// check we should init.
|
||||
if (!['taxonomy', 'post_type'].includes(acf.get('screen'))) return;
|
||||
|
||||
// select2
|
||||
const template = function (selection) {
|
||||
if ('undefined' === typeof selection.element) {
|
||||
return selection;
|
||||
}
|
||||
const $parentSelect = $(selection.element.parentElement);
|
||||
const $selection = $('<span class="acf-selection"></span>');
|
||||
$selection.html(acf.escHtml(selection.element.innerHTML));
|
||||
let isDefault = false;
|
||||
if ($parentSelect.filter('.acf-taxonomy-manage_terms, .acf-taxonomy-edit_terms, .acf-taxonomy-delete_terms').length && selection.id === 'manage_categories') {
|
||||
isDefault = true;
|
||||
} else if ($parentSelect.filter('.acf-taxonomy-assign_terms').length && selection.id === 'edit_posts') {
|
||||
isDefault = true;
|
||||
} else if (selection.id === 'taxonomy_key' || selection.id === 'post_type_key' || selection.id === 'default') {
|
||||
isDefault = true;
|
||||
}
|
||||
if (isDefault) {
|
||||
$selection.append('<span class="acf-select2-default-pill">' + acf.__('Default') + '</span>');
|
||||
}
|
||||
$selection.data('element', selection.element);
|
||||
return $selection;
|
||||
};
|
||||
acf.newSelect2($('select.query_var'), {
|
||||
field: false,
|
||||
templateSelection: template,
|
||||
templateResult: template
|
||||
});
|
||||
acf.newSelect2($('select.acf-taxonomy-manage_terms'), {
|
||||
field: false,
|
||||
templateSelection: template,
|
||||
templateResult: template
|
||||
});
|
||||
acf.newSelect2($('select.acf-taxonomy-edit_terms'), {
|
||||
field: false,
|
||||
templateSelection: template,
|
||||
templateResult: template
|
||||
});
|
||||
acf.newSelect2($('select.acf-taxonomy-delete_terms'), {
|
||||
field: false,
|
||||
templateSelection: template,
|
||||
templateResult: template
|
||||
});
|
||||
acf.newSelect2($('select.acf-taxonomy-assign_terms'), {
|
||||
field: false,
|
||||
templateSelection: template,
|
||||
templateResult: template
|
||||
});
|
||||
acf.newSelect2($('select.meta_box'), {
|
||||
field: false,
|
||||
templateSelection: template,
|
||||
templateResult: template
|
||||
});
|
||||
const permalinkRewrite = acf.newSelect2($('select.permalink_rewrite'), {
|
||||
field: false,
|
||||
templateSelection: template,
|
||||
templateResult: template
|
||||
});
|
||||
$('.rewrite_slug_field').trigger('change');
|
||||
permalinkRewrite.on('change', function (e) {
|
||||
$('.rewrite_slug_field').trigger('change');
|
||||
});
|
||||
},
|
||||
onChangeURLSlug: function (e, $el) {
|
||||
const $field = $('div.acf-field.acf-field-permalink-rewrite');
|
||||
const rewriteType = $field.find('select').find('option:selected').val();
|
||||
const originalInstructions = $field.data(rewriteType + '_instructions');
|
||||
const siteURL = $field.data('site_url');
|
||||
const $permalinkDesc = $field.find('p.description').first();
|
||||
if (rewriteType === 'taxonomy_key' || rewriteType === 'post_type_key') {
|
||||
var slugvalue = $('.acf_slugified_key').val().trim();
|
||||
} else {
|
||||
var slugvalue = $el.val().trim();
|
||||
}
|
||||
if (!slugvalue.length) slugvalue = '{slug}';
|
||||
$permalinkDesc.html($('<span>' + originalInstructions + '</span>').text().replace('{slug}', '<strong>' + $('<span>' + siteURL + '/' + slugvalue + '</span>').text() + '</strong>'));
|
||||
},
|
||||
onChangeSingularLabel: function (e, $el) {
|
||||
const label = $el.val();
|
||||
this.updateLabels(label, 'singular', false);
|
||||
},
|
||||
onChangePluralLabel: function (e, $el) {
|
||||
const label = $el.val();
|
||||
this.updateLabels(label, 'plural', false);
|
||||
},
|
||||
onChangeHierarchical: function (e, $el) {
|
||||
const hierarchical = $el.is(':checked');
|
||||
if ('taxonomy' === acf.get('screen')) {
|
||||
let text = $('.acf-field-meta-box').data('tags_meta_box');
|
||||
if (hierarchical) {
|
||||
text = $('.acf-field-meta-box').data('categories_meta_box');
|
||||
}
|
||||
$('#acf_taxonomy-meta_box').find('option:first').text(text).trigger('change');
|
||||
}
|
||||
this.updatePlaceholders(hierarchical);
|
||||
},
|
||||
onClickRegenerateLabels: function (e, $el) {
|
||||
this.updateLabels($('.acf_singular_label').val(), 'singular', true);
|
||||
this.updateLabels($('.acf_plural_label').val(), 'plural', true);
|
||||
},
|
||||
onClickClearLabels: function (e, $el) {
|
||||
this.clearLabels();
|
||||
},
|
||||
updateLabels(label, type, force) {
|
||||
$('[data-label][data-replace="' + type + '"').each((index, element) => {
|
||||
var $input = $(element).find('input[type="text"]').first();
|
||||
if (!force && $input.val() != '') return;
|
||||
if (label == '') return;
|
||||
$input.val($(element).data('transform') === 'lower' ? $(element).data('label').replace('%s', label.toLowerCase()) : $(element).data('label').replace('%s', label));
|
||||
});
|
||||
},
|
||||
clearLabels() {
|
||||
$('[data-label]').each((index, element) => {
|
||||
$(element).find('input[type="text"]').first().val('');
|
||||
});
|
||||
},
|
||||
updatePlaceholders(heirarchical) {
|
||||
if (acf.get('screen') == 'post_type') {
|
||||
var singular = acf.__('Post');
|
||||
var plural = acf.__('Posts');
|
||||
if (heirarchical) {
|
||||
singular = acf.__('Page');
|
||||
plural = acf.__('Pages');
|
||||
}
|
||||
} else {
|
||||
var singular = acf.__('Tag');
|
||||
var plural = acf.__('Tags');
|
||||
if (heirarchical) {
|
||||
singular = acf.__('Category');
|
||||
plural = acf.__('Categories');
|
||||
}
|
||||
}
|
||||
$('[data-label]').each((index, element) => {
|
||||
var useReplacement = $(element).data('replace') === 'plural' ? plural : singular;
|
||||
if ($(element).data('transform') === 'lower') {
|
||||
useReplacement = useReplacement.toLowerCase();
|
||||
}
|
||||
$(element).find('input[type="text"]').first().attr('placeholder', $(element).data('label').replace('%s', useReplacement));
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* advancedSettingsMetaboxManager
|
||||
*
|
||||
* Screen options functionality for internal post types
|
||||
*
|
||||
* @since 6.1
|
||||
*/
|
||||
const advancedSettingsMetaboxManager = new acf.Model({
|
||||
id: 'advancedSettingsMetaboxManager',
|
||||
wait: 'load',
|
||||
events: {
|
||||
'change .acf-advanced-settings-toggle': 'onToggleACFAdvancedSettings',
|
||||
'change #screen-options-wrap #acf-advanced-settings-hide': 'onToggleScreenOptionsAdvancedSettings'
|
||||
},
|
||||
initialize: function () {
|
||||
this.$screenOptionsToggle = $('#screen-options-wrap #acf-advanced-settings-hide:first');
|
||||
this.$ACFAdvancedToggle = $('.acf-advanced-settings-toggle:first');
|
||||
this.render();
|
||||
},
|
||||
isACFAdvancedSettingsChecked: function () {
|
||||
// Screen option is hidden by filter.
|
||||
if (!this.$ACFAdvancedToggle.length) {
|
||||
return false;
|
||||
}
|
||||
return this.$ACFAdvancedToggle.prop('checked');
|
||||
},
|
||||
isScreenOptionsAdvancedSettingsChecked: function () {
|
||||
// Screen option is hidden by filter.
|
||||
if (!this.$screenOptionsToggle.length) {
|
||||
return false;
|
||||
}
|
||||
return this.$screenOptionsToggle.prop('checked');
|
||||
},
|
||||
onToggleScreenOptionsAdvancedSettings: function () {
|
||||
if (this.isScreenOptionsAdvancedSettingsChecked()) {
|
||||
if (!this.isACFAdvancedSettingsChecked()) {
|
||||
this.$ACFAdvancedToggle.trigger('click');
|
||||
}
|
||||
} else {
|
||||
if (this.isACFAdvancedSettingsChecked()) {
|
||||
this.$ACFAdvancedToggle.trigger('click');
|
||||
}
|
||||
}
|
||||
},
|
||||
onToggleACFAdvancedSettings: function () {
|
||||
if (this.isACFAdvancedSettingsChecked()) {
|
||||
if (!this.isScreenOptionsAdvancedSettingsChecked()) {
|
||||
this.$screenOptionsToggle.trigger('click');
|
||||
}
|
||||
} else {
|
||||
if (this.isScreenOptionsAdvancedSettingsChecked()) {
|
||||
this.$screenOptionsToggle.trigger('click');
|
||||
}
|
||||
}
|
||||
},
|
||||
render: function () {
|
||||
// On render, sync screen options to ACF's setting.
|
||||
this.onToggleACFAdvancedSettings();
|
||||
}
|
||||
});
|
||||
const linkFieldGroupsManger = new acf.Model({
|
||||
id: 'linkFieldGroupsManager',
|
||||
events: {
|
||||
'click .acf-link-field-groups': 'linkFieldGroups'
|
||||
},
|
||||
linkFieldGroups: function () {
|
||||
let popup = false;
|
||||
const step1 = function () {
|
||||
$.ajax({
|
||||
url: acf.get('ajaxurl'),
|
||||
data: acf.prepareForAjax({
|
||||
action: 'acf/link_field_groups'
|
||||
}),
|
||||
type: 'post',
|
||||
dataType: 'json',
|
||||
success: step2
|
||||
});
|
||||
};
|
||||
const step2 = function (response) {
|
||||
popup = acf.newPopup({
|
||||
title: response.data.title,
|
||||
content: response.data.content,
|
||||
width: '600px'
|
||||
});
|
||||
popup.$el.addClass('acf-link-field-groups-popup');
|
||||
popup.on('submit', 'form', step3);
|
||||
};
|
||||
const step3 = function (e) {
|
||||
e.preventDefault();
|
||||
const $select = popup.$('select');
|
||||
const val = $select.val();
|
||||
if (!val.length) {
|
||||
$select.focus();
|
||||
return;
|
||||
}
|
||||
acf.startButtonLoading(popup.$('.button'));
|
||||
|
||||
// get HTML
|
||||
$.ajax({
|
||||
url: acf.get('ajaxurl'),
|
||||
data: acf.prepareForAjax({
|
||||
action: 'acf/link_field_groups',
|
||||
field_groups: val
|
||||
}),
|
||||
type: 'post',
|
||||
dataType: 'json',
|
||||
success: step4
|
||||
});
|
||||
};
|
||||
const step4 = function (response) {
|
||||
popup.content(response.data.content);
|
||||
if (wp.a11y && wp.a11y.speak && acf.__) {
|
||||
wp.a11y.speak(acf.__('Field groups linked successfully.'), 'polite');
|
||||
}
|
||||
popup.$('button.acf-close-popup').focus();
|
||||
};
|
||||
step1();
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
/************************************************************************/
|
||||
/******/ // The module cache
|
||||
/******/ var __webpack_module_cache__ = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/ // Check if module is in cache
|
||||
/******/ var cachedModule = __webpack_module_cache__[moduleId];
|
||||
/******/ if (cachedModule !== undefined) {
|
||||
/******/ return cachedModule.exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = __webpack_module_cache__[moduleId] = {
|
||||
/******/ // no module.id needed
|
||||
/******/ // no module.loaded needed
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/************************************************************************/
|
||||
/******/ /* webpack/runtime/compat get default export */
|
||||
/******/ !function() {
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function() { return module['default']; } :
|
||||
/******/ function() { return module; };
|
||||
/******/ __webpack_require__.d(getter, { a: getter });
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/ }();
|
||||
/******/
|
||||
/******/ /* webpack/runtime/define property getters */
|
||||
/******/ !function() {
|
||||
/******/ // define getter functions for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, definition) {
|
||||
/******/ for(var key in definition) {
|
||||
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
||||
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
||||
/******/ }
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/ }();
|
||||
/******/
|
||||
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
||||
/******/ !function() {
|
||||
/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
|
||||
/******/ }();
|
||||
/******/
|
||||
/******/ /* webpack/runtime/make namespace object */
|
||||
/******/ !function() {
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/ }();
|
||||
/******/
|
||||
/************************************************************************/
|
||||
var __webpack_exports__ = {};
|
||||
// This entry need to be wrapped in an IIFE because it need to be in strict mode.
|
||||
!function() {
|
||||
"use strict";
|
||||
/*!********************************************************************************!*\
|
||||
!*** ./src/advanced-custom-fields-pro/assets/src/js/acf-internal-post-type.js ***!
|
||||
\********************************************************************************/
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
/* harmony import */ var _acf_internal_post_type_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_acf-internal-post-type.js */ "./src/advanced-custom-fields-pro/assets/src/js/_acf-internal-post-type.js");
|
||||
/* harmony import */ var _acf_internal_post_type_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_acf_internal_post_type_js__WEBPACK_IMPORTED_MODULE_0__);
|
||||
|
||||
}();
|
||||
/******/ })()
|
||||
;
|
||||
//# sourceMappingURL=acf-internal-post-type.js.map
|
File diff suppressed because one or more lines are too long
1
wp-content/plugins/advanced-custom-fields/assets/build/js/acf-internal-post-type.min.js
vendored
Normal file
1
wp-content/plugins/advanced-custom-fields/assets/build/js/acf-internal-post-type.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
4459
wp-content/plugins/advanced-custom-fields/assets/build/js/acf.js
Normal file
4459
wp-content/plugins/advanced-custom-fields/assets/build/js/acf.js
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
1
wp-content/plugins/advanced-custom-fields/assets/build/js/acf.min.js
vendored
Normal file
1
wp-content/plugins/advanced-custom-fields/assets/build/js/acf.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user