Automator_DB_Handler_Triggers::get_token_meta( $meta_key, $args = array() )
Contents
Parameters Parameters
- $meta_key
-
(Required)
- $args
-
(Optional)
Default value: array()
Return Return
(mixed)
Source Source
File: src/core/lib/utilities/db/class-automator-db-handler-triggers.php
public function get_token_meta( string $meta_key, array $args = array() ) { $trigger_id = absint( $args['trigger_id'] ); $trigger_log_id = absint( $args['trigger_log_id'] ); $user_id = absint( $args['user_id'] ); return $this->get_meta( $meta_key, $trigger_id, $trigger_log_id, $user_id ); }
Expand full source code Collapse full source code View on Github