File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
<?php
namespace NinjaForms\Includes\Admin;
/**
* Configuration of what can be called and extended by NF_AJAX_REST_Controller
*/
class RestControllerSafeList
{
const ALLOWED_METHOD_CALLS = [
'NF_AJAX_Controllers_Form' => [
'delete'
],
'NF_AJAX_REST_Forms' => [
'delete'
]
];
public static function isClassMethodAllowed(string $fqcn, string $method): bool
{
$return = false;
if(isset(self::ALLOWED_METHOD_CALLS[$fqcn])
&& in_array($method,self::ALLOWED_METHOD_CALLS[$fqcn])
){
$return = true;
}
return $return;
}
}
