WP_MS_Sites_List_Table::display_rows()


Source

File: wp-admin/includes/class-wp-ms-sites-list-table.php

	public function display_rows() {
		foreach ( $this->items as $blog ) {
			$blog = $blog->to_array();
			$class = '';
			reset( $this->status_list );

			foreach ( $this->status_list as $status => $col ) {
				if ( $blog[ $status ] == 1 ) {
					$class = " class='{$col[0]}'";
				}
			}

			echo "<tr{$class}>";

			$this->single_row_columns( $blog );

			echo '</tr>';
		}
	}