Yoast\WP\Lib

ORM::where_id_is()publicYoast 1.0

Queries the table by its primary key. Special method.

If primary key is compound, only the columns that belong to they key will be used for the query.

Метод класса: ORM{}

Хуков нет.

Возвращает

ORM.

Использование

$ORM = new ORM();
$ORM->where_id_is( $id );
$id(строка) (обязательный)
The ID.

Код ORM::where_id_is() Yoast 22.4

public function where_id_is( $id ) {
	return \is_array( $this->get_id_column_name() ) ? $this->where( $this->get_compound_id_column_values( $id ), null ) : $this->where( $this->get_id_column_name(), $id );
}