Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/ilovecveti.ru/bitrix/modules/translate/lib/index/internals/ |
Upload File : |
<?php namespace Bitrix\Translate\Index\Internals; use Bitrix\Main\ORM\Data\DataManager; use Bitrix\Translate; use Bitrix\Translate\Index; /** * Class PathCacheTable * * Fields: * <ul> * <li> ID int mandatory * <li> PATH string(255) * </ul> * * * DO NOT WRITE ANYTHING BELOW THIS * * <<< ORMENTITYANNOTATION * @method static EO_PathLang_Query query() * @method static EO_PathLang_Result getByPrimary($primary, array $parameters = array()) * @method static EO_PathLang_Result getById($id) * @method static EO_PathLang_Result getList(array $parameters = array()) * @method static EO_PathLang_Entity getEntity() * @method static \Bitrix\Translate\Index\Internals\EO_PathLang createObject($setDefaultValues = true) * @method static \Bitrix\Translate\Index\Internals\EO_PathLang_Collection createCollection() * @method static \Bitrix\Translate\Index\Internals\EO_PathLang wakeUpObject($row) * @method static \Bitrix\Translate\Index\Internals\EO_PathLang_Collection wakeUpCollection($rows) */ class PathLangTable extends DataManager { use Index\Internals\BulkOperation; /** * Returns DB table name for entity. * * @return string */ public static function getTableName(): string { return 'b_translate_path_lang'; } /** * Returns entity map definition. * * @return array */ public static function getMap(): array { return [ 'ID' => [ 'data_type' => 'integer', 'primary' => true, 'autocomplete' => true, ], 'PATH' => [ 'data_type' => 'string', ], ]; } /** * Drops index. * * @param Translate\Filter|null $filter Params to filter file list. * * @return void */ public static function purge(?Translate\Filter $filter = null): void { $relPath = isset($filter, $filter->path) ? $filter->path : ''; if (!empty($relPath)) { $relPath = rtrim($relPath, '/'); static::bulkDelete(['=%PATH' => $relPath .'%']); } else { static::bulkDelete(); } } }