ORM for bitrix learning module.
- PHP >= 7.1.0
- Bitrix CMS >= 15.0
namespace \ES\Learning
in composer.json add:
"php-evs/bitrix-learning-orm": "dev-master" in "require" section
and { "type": "git", "url": "https://github.com/php-evs/bitrix-learning-orm" } in "repositories" section
\ES\Learning\LessonTable::getList([
'order' => ['COURSE.ACTIVE_FROM' => 'ASC', 'ACTIVE_FROM' => 'ASC'],
'filter' => [
'ACTIVE' => 'Y',
'COURSE.SITE.SITE_ID' => SITE_ID,
'CHECK_PERMISSIONS' => 'Y'
],
'select' => [
'NAME',
'LESSON_ID' => 'ID',
'COURSE_ID' => 'COURSE.ID',
'ACTIVE_FROM' => 'COURSE.ACTIVE_FROM',
'SORT',
'CREATED_BY'
]
])->fetchAll();