Home
last modified time | relevance | path

Searched refs:options (Results 1276 – 1300 of 1516) sorted by last modified time

1...<<5152535455565758596061

/plugin/amcharts/assets/amcharts/plugins/dataloader/
H A Dreadme.md101 … it on to chart. The handler function will receive two parameters: loaded data, Data Loader options
192 To set custom event handlers, use these config options:
209 "init": function ( options, chart ) {
212 "load": function ( options, chart ) {
213 console.log( 'Loaded file: ' + options.url );
218 "error": function ( options, chart ) {
219 console.log( 'Ummm something went wrong loading this file: ' + options.url );
231 Depending on configuration options the plugin will display a small number of
314 * Better default options handling in external calls to AmCharts.loadFile
/plugin/amcharts/assets/amcharts/plugins/export/libs/fabric.js/
H A Dfabric.js2277 options || (options = { });
2357 options || (options = { });
3739 options: options
3833 this.options = options;
5328 options || (options = { });
6179 options = options || {};
10084 options || (options = { });
13538 options = options || { };
13863 options = options || { };
14612 options = options || { };
[all …]
/plugin/authshibboleth/
H A DREADME.md47 …not the case or you need to tune something, there is a bunch of configuration options you can set.
/plugin/authshibboleth/plugin/authshibboleth/
H A Dauth.php662 * @param array $options
666 protected function retrieveUserGroupsFromEnvironment(array $options) argument
670 if (! isset($options['source_attribute'])) {
673 $sourceAttributeName = $options['source_attribute'];
690 * @param array $options
694 protected function retrieveUserGroupsFromFile(array $options) argument
703 if (! isset($options['path'])) {
707 $path = $options['path'];
/plugin/authorlist/
H A Dhelper.php70 …$options = array('displayaslist','displaystyle','tooltip','showcreator','printempty', 'creatorisau…
71 foreach($options as $option){
H A Dsyntax.php77 $options = explode('&',$match);
79 foreach($options as $option){
/plugin/icalevents/vendor/sabre/vobject/lib/Property/ICalendar/
H A DRecur.php250 * @param int $options
254 function validate($options = 0) { argument
256 $repair = ($options & self::REPAIR);
258 $warnings = parent::validate($options);
H A DDateTime.php374 * @param int $options
378 function validate($options = 0) { argument
380 $messages = parent::validate($options);
/plugin/icalevents/vendor/sabre/vobject/lib/
H A DCli.php119 list($options, $positional) = $this->parseArguments($argv);
121 if (isset($options['q'])) {
126 foreach ($options as $name => $value) {
H A DProperty.php543 * @param int $options
547 function validate($options = 0) { argument
556 if ($options & self::REPAIR) {
582 'level' => $options & self::REPAIR ? 1 : 3,
586 if ($options & self::REPAIR) {
637 $warnings = array_merge($warnings, $param->validate($options));
H A DNode.php158 * @param int $options
162 function validate($options = 0) { argument
H A DWriter.php36 * @param int $options
40 static function writeJson(Component $component, $options = 0) { argument
42 return json_encode($component, $options);
H A DComponent.php603 * @param int $options
607 function validate($options = 0) { argument
623 $messages = array_merge($messages, $child->validate($options));
641 if ($options & self::REPAIR && isset($defaults[$propName])) {
/plugin/icalevents/vendor/sabre/vobject/lib/Component/
H A DAvailable.php107 * @param int $options
111 function validate($options = 0) { argument
113 $result = parent::validate($options);
H A DVAvailability.php137 * @param int $options
141 function validate($options = 0) { argument
143 $result = parent::validate($options);
H A DVCard.php220 * @param int $options
224 function validate($options = 0) { argument
243 if ($options & self::REPAIR) {
247 if ($version === '2.1' && ($options & self::PROFILE_CARDDAV)) {
258 if ($options & self::PROFILE_CARDDAV) {
267 if ($options & self::REPAIR) {
282 if (($options & self::REPAIR) && count($fn) === 0) {
309 parent::validate($options),
H A DVCalendar.php443 * @param int $options
447 function validate($options = 0) { argument
449 $warnings = parent::validate($options);
505 if ($options & self::PROFILE_CALDAV) {
/plugin/icalevents/vendor/sabre/vobject/lib/Property/
H A DText.php385 * @param int $options
389 function validate($options = 0) { argument
391 $warnings = parent::validate($options);
399 'level' => $options & self::REPAIR ? 1 : 3,
403 if ($options & self::REPAIR) {
/plugin/icalevents/vendor/sabre/vobject/lib/Property/VCard/
H A DDateAndOrTime.php383 * @param int $options
387 function validate($options = 0) { argument
389 $messages = parent::validate($options);
/plugin/icalevents/vendor/sabre/vobject/lib/Splitter/
H A DICalendar.php44 * @param int $options Parser options, see the OPTIONS constants.
46 function __construct($input, $options = 0) { argument
48 $data = VObject\Reader::read($input, $options);
H A DVCard.php44 * @param int $options Parser options, see the OPTIONS constants.
46 function __construct($input, $options = 0) { argument
49 $this->parser = new MimeDir($input, $options);
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Component/
H A DVCalendarTest.php754 function assertValidate($ics, $options, $expectedLevel, $expectedMessage = null) { argument
757 $result = $vcal->validate($options);
/plugin/icalevents/vendor/sabre/vobject/lib/Parser/
H A DJson.php44 * @param int $options
48 function parse($input = null, $options = 0) { argument
57 if (0 !== $options) {
58 $this->options = $options;
H A DMimeDir.php73 * @param int $options
77 function parse($input = null, $options = 0) { argument
85 if (0 !== $options) {
86 $this->options = $options;
338 if ($this->options & self::OPTION_FORGIVING) {
431 if ($this->options & self::OPTION_IGNORE_INVALID_LINES) {
683 if ($this->options & self::OPTION_FORGIVING) {
H A DParser.php36 protected $options; variable in Sabre\\VObject\\Parser\\Parser
44 * @param int $options Any parser options (OPTION constants).
48 function __construct($input = null, $options = 0) { argument
53 $this->options = $options;
65 * @param int $options
69 abstract function parse($input = null, $options = 0); argument

1...<<5152535455565758596061