-
Notifications
You must be signed in to change notification settings - Fork 116
Action Reference
Fires just before the Stream list table is registered.
(void)
Since: 1.4.0
Source file: classes/class-wp-stream-admin.php
do_action( 'wp_stream_admin_menu_screens' );
Fires after all connectors have been registered.
(void)
$connectors
(array) An array of connector slug/label pairs.
Since: 1.3.0
Source file: classes/class-wp-stream-connectors.php
do_action( 'wp_stream_after_connectors_registration', $connectors );
Fires after the list table is displayed.
(void)
Since: 1.0.0
Source file: classes/class-wp-stream-list-table.php
do_action( 'wp_stream_after_list_table' );
Allows for the addition of content under a specified column.
(void)
$item
(object) Contents of the row.
Since: 1.0.0
Source file: classes/class-wp-stream-list-table.php
do_action( "wp_stream_insert_column_default-{$column_title}", $item );
Execute custom behavior before the view is included.
(void)
$view
(object) The reports view object.
Since: 2.0.0
Source file: extensions/reports/class-wp-stream-reports.php
do_action( 'wp_stream_reports_view', $view );
Fires just after a site has been connected to Stream.
(void)
$site_uuid
(string) The Stream Site UUID that was connected.
$api_key
(string) The Stream API Key that was used to connect.
$blog_id
(int) The ID of the current blog that was connected.
Since: 2.0.0
Source file: classes/class-wp-stream-admin.php
do_action( 'wp_stream_site_connected', $site_uuid, $api_key, $blog_id );
Fires just after a site has been disconnected from Stream.
(void)
$site_uuid
(string) The Stream Site UUID that was disconnected.
$api_key
(string) The Stream API Key that was used to disconnect.
$blog_id
(int) The ID of the current blog that was disconnected.
Since: 2.0.0
Source file: classes/class-wp-stream-admin.php
do_action( 'wp_stream_site_disconnected', $site_uuid, $api_key, $blog_id );