%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.26 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/var/www/html/ppaobm/vendor/edofre/yii2-fullcalendar/src/models/ |
Upload File : |
<?php
namespace edofre\fullcalendar\models;
/**
* Class Event
* @package edofre\fullcalendar\models
*/
class Event extends CalendarModel
{
/** Rendering options */
const RENDERING_BACKGROUND = 'background';
const RENDERING_INVERSE_BACKGROUND = 'inverse-background';
/** @var string Uniquely identifies the given event. Different instances of repeating events should all have the same id. */
public $id;
/** @var string The text on an event's element */
public $title;
/** @var boolean Whether an event occurs at a specific time-of-day. This property affects whether an event's time is shown. Also, in the agenda views, determines if it is displayed in the "all-day" section. */
public $allDay;
/** @var string The date/time an event begins. A Moment-ish input, like an ISO8601 string. Throughout the API this will become a real Moment object. */
public $start;
/** @var string The exclusive date/time an event ends. A Moment-ish input, like an ISO8601 string. Throughout the API this will become a real Moment object. */
public $end;
/** @var string A URL that will be visited when this event is clicked by the user. For more information on controlling this behavior, see the eventClick callback. */
public $url;
/** @var string|array A CSS class ( or array of classes) that will be attached to this event's element. */
public $className;
/** @var boolean Is the Event editable? Both start and duration. */
public $editable;
/** @var boolean Is the event start editable? */
public $startEditable;
/** @var boolean Is the event duration editable? */
public $durationEditable;
/** @var string Allows alternate rendering of the event, like background events. Can be empty, "background", or "inverse-background" */
public $rendering;
/** @var boolean Overrides the master eventOverlap option for this single event. If false, prevents this event from being dragged/resized over other events. Also prevents other events from being dragged/resized over this event. */
public $overlap;
/** @var string an event ID, "businessHours", object. Optional. Overrides the master eventConstraint option for this single event. */
public $constraint;
/** @var string Event Source Object. Automatically populated. A reference to the event source that this event came from. */
public $source;
/** @var string Sets an event's background and border color just like the calendar-wide eventColor option. */
public $color;
/** @var string Sets an event's background color just like the calendar-wide eventBackgroundColor option. */
public $backgroundColor;
/** @var string Sets an event's border color just like the the calendar-wide eventBorderColor option. */
public $borderColor;
/** @var string Sets an event's text color just like the calendar-wide eventTextColor option. */
public $textColor;
/**
* @return array
*/
public function rules()
{
return [
[['title', 'start'], 'required'],
[['id', 'end', 'url', 'className', 'rendering', 'constraint', 'source', 'color', 'backgroundColor', 'borderColor', 'textColor'], 'safe'],
[['editable', 'startEditable', 'durationEditable', 'overlap'], 'boolean'],
];
}
}