ActionScheduler_AdminView_Deprecated::row_actions()public staticWC 1.0

Hide the inline "Edit" action for all 'scheduled-action' posts.

Hooked to the post_row_actions

Method of the class: ActionScheduler_AdminView_Deprecated{}

No Hooks.

Return

Array. $actions An associative array of actions which can be performed on the 'scheduled-action' post type.

Usage

$result = ActionScheduler_AdminView_Deprecated::row_actions( $actions, $post );
$actions(array) (required)
An associative array of actions which can be performed on the 'scheduled-action' post type.
$post (required)
-

ActionScheduler_AdminView_Deprecated::row_actions() code WC 8.7.0

public static function row_actions( $actions, $post ) {
	_deprecated_function( __METHOD__, '2.0.0' );
	return $actions;
}