Fix File
•
/
home
/
sportsfe...
/
httpdocs
/
wp-conte...
/
plugins
/
custom-t...
/
admin
/
builder
/
assets
/
js
•
File:
install-plugin-popup.js
•
Content:
/** * Install Plugin Popup Popup * * @since 2.0 */ Vue.component('install-plugin-popup', { name: 'install-plugin-popup', template: '#install-plugin-popup', props: [ 'genericText', 'svgIcons', 'viewsActive', 'plugins' ], data: function() { return{ installerStatus: null } }, methods : { /** * Install or Activate Plugin * * @since 2.0 * * @return void */ installOrActivatePlugin : function( plugin, pluginPath, action ){ this.installerStatus = 'loading'; let data = new FormData(); data.append( 'action', action ); data.append( 'nonce', cff_builder.nonce ); data.append( 'plugin', pluginPath ); data.append( 'type', 'plugin' ); fetch(cff_builder.ajax_handler, { method: "POST", credentials: 'same-origin', body: data }) .then(response => response.json()) .then(data => { if( data.success == true ) { this.installerStatus = null; plugin.installed = true; plugin.activated = true; } return; }); }, }, });
•
Search:
•
Replace:
Function
Edit by line
Download
Information
Rename
Copy
Move
Delete
Chmod
List