| Server IP : 38.190.208.107 / Your IP : 216.73.217.46 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.3/wp-content/plugins/wpforms-lite/src/Lite/Integrations/Abilities/ |
Upload File : |
<?php
namespace WPForms\Lite\Integrations\Abilities;
use WP_Error;
use WPForms\Integrations\Abilities\Abilities as AbilitiesBase;
/**
* WordPress Abilities API Integration for WPForms Lite.
*
* @since 1.9.9
*/
class Abilities extends AbilitiesBase {
/**
* Register WPForms abilities for Lite version.
*
* @since 1.9.9
*/
public function register_abilities(): void {
// Register common abilities (list_forms, get_form).
$this->register_common_abilities();
// Lite-specific: Register form stats ability (basic).
$this->register_form_stats_ability();
}
/**
* Register the form_stats ability (Lite version - basic stats with upsell).
*
* @since 1.9.9
*/
protected function register_form_stats_ability(): void {
wp_register_ability(
self::ABILITY_NAMESPACE . '/get-form-stats',
[
'label' => __( 'Get Form Stats', 'wpforms-lite' ),
'description' => __( 'Get basic statistics for a WPForms form. Upgrade to Pro for detailed entry data.', 'wpforms-lite' ),
'category' => self::CATEGORY_SLUG,
'execute_callback' => [ $this, 'ability_get_form_stats' ],
'permission_callback' => [ $this, 'check_view_single_form_permission' ],
'input_schema' => [
'type' => 'object',
'properties' => [
'form_id' => [
'description' => __( 'The ID of the form to get stats for.', 'wpforms-lite' ),
'type' => 'integer',
'required' => true,
'minimum' => 1,
],
],
'required' => [ 'form_id' ],
],
'output_schema' => [
'type' => 'object',
'properties' => [
'form_id' => [ 'type' => 'integer' ],
'entries_available' => [ 'type' => 'boolean' ],
'message' => [ 'type' => 'string' ],
],
],
'meta' => [
'annotations' => [
'readonly' => true,
'destructive' => false,
'idempotent' => true,
],
'show_in_rest' => true,
'mcp' => [
'public' => true,
],
],
]
);
}
/**
* Ability callback: Get form stats (Lite version).
*
* @since 1.9.9
*
* @param mixed $input Input data.
*
* @return array|WP_Error
*/
public function ability_get_form_stats( $input = null ) {
$args = $this->normalize_input( $input );
$form_id = absint( $args['form_id'] ?? 0 );
$form_handler = $this->get_form_handler();
if ( is_wp_error( $form_handler ) ) {
return $form_handler;
}
$form = $form_handler->get( $form_id );
if ( empty( $form ) ) {
return new WP_Error(
'wpforms_form_not_found',
__( 'Form not found.', 'wpforms-lite' ),
[ 'status' => 404 ]
);
}
// Lite version returns limited stats with the upsell message.
return [
'form_id' => $form_id,
'entries_available' => false,
'message' => __( 'Entry statistics require WPForms Pro. Upgrade to access detailed form submission data.', 'wpforms-lite' ),
];
}
}