Tribe_Meta_Box::show_field_checkbox_list( $field,  $meta )


Source

File: lib/tribe-meta-box.php

	public function show_field_checkbox_list( $field, $meta ) {
		if ( ! is_array( $meta ) ) {
			$meta = (array) $meta;
		}

		$this->show_field_begin( $field, $meta );
		$html = array();
		foreach ( $field['options'] as $key => $value ) {
			$html[] = "<input type='checkbox' class='tribe-checkbox_list' name='{$field['meta']}[]' value='$key'" . checked( in_array( $key, $meta ), true, false ) . " /> $value";
		}
		echo implode( '<br />', $html );
		$this->show_field_end( $field, $meta );
	}