Yoast\WP\Lib
ORM::join()
Adds a simple JOIN source to the query.
Метод класса: ORM{}
Хуков нет.
Возвращает
ORM
.
Использование
$ORM = new ORM(); $ORM->join( $table, $constraint, $table_alias );
- $table(строка) (обязательный)
- The table name.
- $constraint(строка) (обязательный)
- The constraint.
- $table_alias(строка|null)
- The table alias.
По умолчанию: null
Код ORM::join() ORM::join Yoast 24.0
public function join( $table, $constraint, $table_alias = null ) { return $this->add_join_source( '', $table, $constraint, $table_alias ); }