automatewoo/includes/Actions/Custom_Function.php
fei-source 47d3c9a8b6 Update to v6.2.2
Source: GrootMade/Festinger Vault
2026-03-15 08:31:15 +08:00

41 lines
1,007 B
PHP

<?php
// phpcs:ignoreFile
namespace AutomateWoo;
if ( ! defined( 'ABSPATH' ) ) exit;
/**
* @class Action_Custom_Function
*/
class Action_Custom_Function extends Action {
function load_admin_details() {
$this->title = __( 'Custom Function', 'automatewoo' );
$this->description = sprintf(
/* translators: %1$s documentation link start, %2$s documentation link end. */
__( 'This action can be used by developers to trigger custom code from a workflow. %1$sView documentation%2$s.', 'automatewoo' ),
'<a href="' . Admin::get_docs_link( 'actions/custom-functions/' ) . '">',
'</a>'
);
}
function load_fields() {
$function_name = new Fields\Text();
$function_name->set_title( __( 'Function name', 'automatewoo' ) );
$function_name->set_name('function_name');
$this->add_field($function_name);
}
function run() {
$function = $this->get_option( 'function_name' );
if ( function_exists( $function ) ) {
call_user_func( $function, $this->workflow );
}
}
}