wp_strip_all_tags( __( 'Name', 'two-factor' ) ),
			'added'     => wp_strip_all_tags( __( 'Added', 'two-factor' ) ),
			'last_used' => wp_strip_all_tags( __( 'Last Used', 'two-factor' ) ),
		);
	}
	/**
	 * Prepares the list of items for displaying.
	 *
	 * @since 0.1-dev
	 */
	public function prepare_items() {
		$columns               = $this->get_columns();
		$hidden                = array();
		$sortable              = array();
		$primary               = 'name';
		$this->_column_headers = array( $columns, $hidden, $sortable, $primary );
	}
	/**
	 * Generates content for a single row of the table
	 *
	 * @since 0.1-dev
	 * @access protected
	 *
	 * @param object $item The current item.
	 * @param string $column_name The current column name.
	 * @return string
	 */
	protected function column_default( $item, $column_name ) {
		switch ( $column_name ) {
			case 'name':
				$out  = '
'; // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase
				$out .= '
' . esc_html( $item->name ) . '
';
				$out .= '
		single_row_columns( $item ); ?>