uawdijnntqw1x1x1
IP : 3.21.106.4
Hostname : axolotl
Kernel : Linux axolotl 4.9.0-13-amd64 #1 SMP Debian 4.9.228-1 (2020-07-05) x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
OS : Linux
PATH:
/
var
/
www
/
axolotl
/
data
/
www
/
axolotl.ru
/
www
/
include
/
..
/
bitrix
/
modules
/
tasks
/
lib
/
projects.php
/
/
<?php namespace Bitrix\Tasks; use \Bitrix\Main\Entity; /** * Class ProjectsTable * * DO NOT WRITE ANYTHING BELOW THIS * * <<< ORMENTITYANNOTATION * @method static EO_Projects_Query query() * @method static EO_Projects_Result getByPrimary($primary, array $parameters = []) * @method static EO_Projects_Result getById($id) * @method static EO_Projects_Result getList(array $parameters = []) * @method static EO_Projects_Entity getEntity() * @method static \Bitrix\Tasks\EO_Projects createObject($setDefaultValues = true) * @method static \Bitrix\Tasks\EO_Projects_Collection createCollection() * @method static \Bitrix\Tasks\EO_Projects wakeUpObject($row) * @method static \Bitrix\Tasks\EO_Projects_Collection wakeUpCollection($rows) */ class ProjectsTable extends Entity\DataManager { /** * Returns DB table name for entity. * @return string */ public static function getTableName() { return 'b_tasks_projects'; } /** * Returns entity map definition. * @return array */ public static function getMap() { return array( 'ID' => new Entity\IntegerField('ID', array( 'primary' => true, 'autocomplete' => true )), 'ORDER_NEW_TASK' => new Entity\StringField('ORDER_NEW_TASK', array( 'required' => true )) ); } /** * Set project settings. * @param int $id Project id. * @param array $fields Settings array. * @return void */ public static function set($id, $fields) { if (self::getById($id)->fetch()) { self::update($id, $fields); } else { $fields['ID'] = $id; self::add($fields); } } /** * Delete all rows after group delete. * @param int $groupId Group id. * @return void */ public static function onSocNetGroupDelete($groupId) { self::delete($groupId); } }
/var/www/axolotl/data/www/axolotl.ru/www/include/../bitrix/modules/tasks/lib/projects.php