403Webshell
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/rospirotorg.ru/bitrix/modules/socialservices/lib/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/socialservices/lib/zoommeetingrecording.php
<?php
namespace Bitrix\Socialservices;

use Bitrix\Main,
	Bitrix\Main\ORM\Fields;

/**
 * Class ZoomMeetingRecordingsTable
 *
 * Fields:
 * <ul>
 * <li> ID int mandatory
 * <li> MEETING_ID int mandatory
 * <li> AUDIO string(500) optional
 * <li> VIDEO string(500) optional
 * <li> CHAT string(500) optional
 * <li> DOWNLOAD_TOKEN string optional
 * <li> RECORDINGS_PASSWORD string(32) optional
 * </ul>
 *
 * @package Bitrix\Socialservices
 *
 * DO NOT WRITE ANYTHING BELOW THIS
 *
 * <<< ORMENTITYANNOTATION
 * @method static EO_ZoomMeetingRecording_Query query()
 * @method static EO_ZoomMeetingRecording_Result getByPrimary($primary, array $parameters = array())
 * @method static EO_ZoomMeetingRecording_Result getById($id)
 * @method static EO_ZoomMeetingRecording_Result getList(array $parameters = array())
 * @method static EO_ZoomMeetingRecording_Entity getEntity()
 * @method static \Bitrix\Socialservices\EO_ZoomMeetingRecording createObject($setDefaultValues = true)
 * @method static \Bitrix\Socialservices\EO_ZoomMeetingRecording_Collection createCollection()
 * @method static \Bitrix\Socialservices\EO_ZoomMeetingRecording wakeUpObject($row)
 * @method static \Bitrix\Socialservices\EO_ZoomMeetingRecording_Collection wakeUpCollection($rows)
 */

class ZoomMeetingRecordingTable extends Main\Entity\DataManager
{
	/**
	 * Returns DB table name for entity.
	 *
	 * @return string
	 */
	public static function getTableName(): string
	{
		return 'b_socialservices_zoom_meeting_recording';
	}

	/**
	 * Returns entity map definition.
	 *
	 * @return array
	 * @throws Main\SystemException
	 */
	public static function getMap(): array
	{
		return [
			new Fields\IntegerField('ID', [
				'primary' => true,
				'autocomplete' => true
			]),
			new Fields\StringField('EXTERNAL_ID', [
				'required' => true,
				'size' => 64
			]),
			new Fields\IntegerField('MEETING_ID', [
				'required' => true
			]),
			new Fields\DatetimeField('START_DATE', [
				'required' => true
			]),
			new Fields\DatetimeField('END_DATE', [
				'required' => true
			]),

			new Fields\StringField('FILE_TYPE'),
			new Fields\IntegerField('FILE_SIZE'),
			new Fields\StringField('PLAY_URL', [
				'size' => 500,
			]),
			new Fields\StringField('DOWNLOAD_URL', [
				'size' => 500,
			]),
			new Fields\StringField('RECORDING_TYPE', [
				'size' => 64,
			]),
			new Fields\CryptoField('DOWNLOAD_TOKEN', [
				'crypto_enabled' => static::cryptoEnabled('DOWNLOAD_TOKEN'),
			]),
			new Fields\CryptoField('PASSWORD', [
				'crypto_enabled' => static::cryptoEnabled('PASSWORD'),
			]),
			new Fields\IntegerField('FILE_ID'),

			new Fields\Relations\Reference(
				'MEETING',
				ZoomMeetingTable::class,
				['=this.MEETING_ID' => 'ref.ID'],
				['join_type' => 'LEFT']
			),

		];
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit