Created
November 22, 2017 21:43
-
-
Save glooer/4274a4e107e7eff595687cf9fcc4ccff to your computer and use it in GitHub Desktop.
bitrix d7 orm выбор только активных элементов (с учетом даты)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<php | |
\Bitrix\Iblock\ElementTable::GetList([ | |
'filter' => [ | |
'ACTIVE' => 'Y', | |
[ | |
"LOGIC" => "OR", | |
'<ACTIVE_FROM' => new \Bitrix\Main\DB\SqlExpression("NOW()"), | |
'ACTIVE_FROM' => null, | |
], | |
[ | |
"LOGIC" => "OR", | |
'>ACTIVE_TO' => new \Bitrix\Main\DB\SqlExpression("NOW()"), | |
'ACTIVE_TO' => null, | |
], | |
] | |
]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment