Automator_Get_Data::action_sentence( $id, $type = 'all' )
Contents
Parameters Parameters
- $id
-
(Required)
- $type
-
(Optional)
Default value: 'all'
Return Return
(array|mixed|string)
Source Source
File: src/core/lib/utilities/class-automator-get-data.php
public function action_sentence( $id, string $type = 'all' ) { global $wpdb; if ( 0 === absint( $id ) ) { return ''; } $action_meta = $wpdb->get_results( $wpdb->prepare( "SELECT meta_key, meta_value FROM $wpdb->postmeta WHERE post_id = %d", $id ) ); $sentence = $this->get_trigger_action_sentence( $id ); $sentence = apply_filters_deprecated( 'get_action_sentence', array( $sentence, $type, $action_meta, ), '3.0', 'automator_get_action_sentence' ); $sentence = apply_filters( 'automator_get_action_sentence', $sentence, $id, $type ); if ( 'all' === $type ) { return $sentence; } if ( in_array( $type, array_keys( $sentence ), true ) ) { return $sentence[ $type ]; } return $sentence; }
Expand full source code Collapse full source code View on Github