\__( 'Event Source', 'event-bridge-for-activitypub' ), 'plural' => \__( 'Event Sources', 'event-bridge-for-activitypub' ), 'ajax' => false, ) ); } /** * Get columns. * * @return array */ public function get_columns() { return array( 'cb' => '', 'icon' => \__( 'Icon', 'event-bridge-for-activitypub' ), 'name' => \__( 'Name', 'event-bridge-for-activitypub' ), 'active' => \__( 'Active', 'event-bridge-for-activitypub' ), 'url' => \__( 'URL', 'event-bridge-for-activitypub' ), 'published' => \__( 'Followed', 'event-bridge-for-activitypub' ), 'modified' => \__( 'Last updated', 'event-bridge-for-activitypub' ), ); } /** * Returns sortable columns. * * @return array */ public function get_sortable_columns() { return array( 'name' => array( 'name', true ), 'modified' => array( 'modified', false ), 'published' => array( 'published', false ), ); } /** * Prepare items. */ public function prepare_items() { $columns = $this->get_columns(); $hidden = array(); $this->process_action(); $this->_column_headers = array( $columns, $hidden, $this->get_sortable_columns() ); $page_num = $this->get_pagenum(); $per_page = 20; $args = array(); // phpcs:disable WordPress.Security.NonceVerification.Recommended if ( isset( $_GET['orderby'] ) ) { $args['orderby'] = sanitize_text_field( wp_unslash( $_GET['orderby'] ) ); } if ( isset( $_GET['order'] ) ) { $args['order'] = sanitize_text_field( wp_unslash( $_GET['order'] ) ); } if ( isset( $_GET['s'] ) && isset( $_REQUEST['_wpnonce'] ) ) { $nonce = sanitize_text_field( wp_unslash( $_REQUEST['_wpnonce'] ) ); if ( wp_verify_nonce( $nonce, 'bulk-' . $this->_args['plural'] ) ) { $args['s'] = sanitize_text_field( wp_unslash( $_GET['s'] ) ); } } // phpcs:enable WordPress.Security.NonceVerification.Recommended $event_sources = Event_Sources_Collection::get_event_sources_with_count($per_page, $page_num, $args ); $actors = $event_sources['actors']; $counter = $event_sources['total']; $this->items = array(); $this->set_pagination_args( array( 'total_items' => $counter, 'total_pages' => ceil( $counter / $per_page ), 'per_page' => $per_page, ) ); foreach ( $actors as $actor ) { $item = array( 'icon' => esc_attr( $actor->get_icon_url() ), 'name' => esc_attr( $actor->get_name() ), 'url' => esc_attr( object_to_uri( $actor->get_id() ) ), 'active' => esc_attr( get_post_meta( $actor->get__id(), 'event_source_active', true) ), 'identifier' => esc_attr( $actor->get_id() ), 'published' => esc_attr( $actor->get_published() ), 'modified' => esc_attr( $actor->get_updated() ), ); $this->items[] = $item; } } /** * Returns bulk actions. * * @return array */ public function get_bulk_actions() { return array( 'delete' => __( 'Delete', 'event-bridge-for-activitypub' ), ); } /** * Column default. * * @param array $item Item. * @param string $column_name Column name. * @return string */ public function column_default( $item, $column_name ) { if ( ! array_key_exists( $column_name, $item ) ) { return __( 'None', 'event-bridge-for-activitypub' ); } return $item[ $column_name ]; } /** * Column avatar. * * @param array $item Item. * @return string */ public function column_icon( $item ) { return sprintf( '', $item['icon'] ); } /** * Column url. * * @param array $item Item. * @return string */ public function column_url( $item ) { return sprintf( '%s', esc_url( $item['url'] ), $item['url'] ); } /** * Column cb. * * @param array $item Item. * @return string */ public function column_cb( $item ) { return sprintf( '', esc_attr( $item['identifier'] ) ); } /** * Column action. * * @param array $item Item. * @return string */ public function column_active( $item ) { if ( $item['active'] ) { $action = 'true'; } else { $action = 'false'; } return sprintf( '%s', $action ); } /** * Process action. */ public function process_action() { if ( ! isset( $_REQUEST['event_sources'] ) || ! isset( $_REQUEST['_wpnonce'] ) ) { return; } $nonce = sanitize_text_field( wp_unslash( $_REQUEST['_wpnonce'] ) ); if ( ! wp_verify_nonce( $nonce, 'bulk-' . $this->_args['plural'] ) ) { return; } if ( ! current_user_can( 'manage_options' ) ) { return; } $event_sources = $_REQUEST['event_sources']; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput if ( 'delete' === $this->current_action() ) { if ( ! is_array( $event_sources ) ) { $event_sources = array( $event_sources ); } foreach ( $event_sources as $event_source ) { Event_Sources_Collection::remove( $event_source ); } } } }