X7ROOT File Manager
Current Path:
/home/katmhsmi/public_html/wp-content/plugins/duplicator-pro/src/Ajax
home
/
katmhsmi
/
public_html
/
wp-content
/
plugins
/
duplicator-pro
/
src
/
Ajax
/
📁
..
📄
.htaccess
(420 B)
📄
AbstractAjaxService.php
(560 B)
📄
AjaxWrapper.php
(2.61 KB)
📁
FileTransfer
📄
ServicesImport.php
(6.33 KB)
📄
ServicesRecovery.php
(6.1 KB)
📄
ServicesSchedule.php
(6.44 KB)
📄
ServicesStorage.php
(3.23 KB)
Editing: AbstractAjaxService.php
<?php /** * @package Duplicator * @copyright (c) 2022, Snap Creek LLC */ namespace Duplicator\Ajax; abstract class AbstractAjaxService { /** * Init ajax calls * * @return void */ abstract public function init(); /** * Add ajax action * * @param string $tag ajax tag name * @param string $methodName method name * * @return bool Always returns true */ protected function addAjaxCall($tag, $methodName) { return add_action($tag, array($this, $methodName)); } }
Upload File
Create Folder