Home
last modified time | relevance | path

Searched refs:flags (Results 51 – 75 of 256) sorted by relevance

1234567891011

/plugin/codemirror/dist/modes/
H A Dr.min.js1flags:0,column:c.column(),prev:a.ctx}}function t(a,b){var c=a.ctx;a.ctx={type:c.type,indent:c.inde… property in a.ctx
/plugin/html2pdf/html2pdf/html2ps/
H A Dstrategy.table.layout.auto.php223 $flags = $table->get_non_constrained_width_flags();
224 if (!any_flag_set($flags)) {
225 $flags = $table->get_non_constant_constrained_width_flags();
226 if (!any_flag_set($flags)) {
227 $flags = $table->get_non_image_constrained_width_flags();
228 if (!any_flag_set($flags)) {
229 for ($i=0; $i<count($flags); $i++) { $flags[$i] = true; };
236 $flags);
/plugin/tag/syntax/
H A Dsearchtags.php5 * Usage: {{tagsearch[&flags]}}
34 // make sure that flags really start with & and media files starting with "searchtags" still work
48 $flags = substr($match, 12, -2); // strip {{searchtags from start and }} from end
49 // remove empty flags by using array_filter (removes elements == false)
50 return array_filter(explode('&', $flags));
63 $flags = $data;
77 // Prepare the flags for the pagelist plugin
79 $flags = array_merge($configflags, $flags);
80 foreach($flags a
[all...]
/plugin/pagelist/
H A Dsyntax.php52 list($flags, $match) = array_pad(explode('>', $match, 2), 2, null);
53 $flags = explode('&', substr($flags, 1));
98 return [$flags, $pages];
111 list($flags, $pages) = $data;
121 $pagelist->setFlags($flags);
/plugin/runcommand/
H A Dsyntax.php302 function renderFormButton($name, $label, $flags, $action) { argument
322 function renderFormHidden($name, $label, $flags, $value) { argument
333 function renderFormTextBox($name, $label, $flags, $value) { argument
339 foreach ($flags as $flag) {
359 foreach ($flags as $flag) {
374 foreach ($flags as $flag) {
408 function renderFormSlider($name, $label, $flags, $value) { argument
417 foreach ($flags as $flag) {
440 foreach ($flags as $flag) {
459 function renderFormDate($name, $label, $flags, $value) { argument
[all …]
/plugin/blog/syntax/
H A Dblog.php25 list($match, $flags) = array_pad(explode('&', $match, 2), 2, null);
26 $flags = explode('&', $flags);
27 array_unshift($flags, 'link'); // always make the first header of a blog entry a permalink (unless nolink is set)
45 return array($ns, $num, $flags, $refine);
51 list($ns, $num, $flags, $refine) = $data;
71 // Normalise flags
72 $blog_flags = $my->getFlags($flags);
104 $include_flags = $include->get_flags($flags);
H A Darchive.php27 list($match, $flags) = explode('&', $match, 2);
28 $flags = explode('&', $flags);
33 foreach($flags as $i=>$flag) {
37 unset($flags[$i]);
89 return array($ns, $start, $end, $flags, $refine, $author);
93 list($ns, $start, $end, $flags, $refine, $author) = $data;
129 $pagelist->setFlags($flags);
H A Dautoarchive.php27 list($match, $flags) = explode('?', $match, 2);
28 $flags = explode('&', $flags);
36 return array($ns, $flags, $refine, $pos);
40 list($ns, $flags, $refine, $pos) = $data;
80 $pagelist->setFlags($flags);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Genomics/
H A DAction.php42 public $flags; variable in Google\\Service\\Genomics\\Action
143 public function setFlags($flags) argument
145 $this->flags = $flags;
152 return $this->flags;
/plugin/findologicxmlexport/vendor/hoa/iterator/
H A DRegularExpression.php164 * @param int $flags Special flags, please see the
174 $flags = 0, argument
181 $this->setFlags($flags);
338 * @param int $flags Flags.
341 public function setFlags($flags) argument
343 $this->_flags = $flags;
/plugin/quiz/
H A Dsyntax.php46 list($match, $flags) = explode('&', $match, 2);
50 return array($include, $id, explode('&', $flags));
55 list($type, $quiz_file, $flags) = $data;
67 foreach($flags as $value) {
/plugin/findologicxmlexport/vendor/hoa/iterator/Recursive/
H A DDirectory.php78 * @param int $flags Flags.
81 public function __construct($path, $flags = null, $splFileInfoClass = null) argument
83 if (null === $flags) {
86 parent::__construct($path, $flags);
H A DRegularExpression.php64 * @param int $flags Special flags, please see the
74 $flags = 0, argument
77 parent::__construct($iterator, $regex, $mode, $flags, $pregFlags);
/plugin/syntaxhighlighter3/sxh3/src/js/
H A DshBrushHaxe.js39 var flags = [
45 var length = flags.length;
48 this.regexList.push ( {regex:new RegExp ( flags[i] , 'gm' ) , css:'comments'} );
49 this.regexList.push ( {regex:new RegExp ( '!' + flags[i] , 'gm' ) , css:'comments'} );
/plugin/syntaxhighlighter3/sxh3/pkg/scripts/
H A DshBrushHaxe.js55 var flags = [
61 var length = flags.length;
64 this.regexList.push ( {regex:new RegExp ( flags[i] , 'gm' ) , css:'comments'} );
65 this.regexList.push ( {regex:new RegExp ( '!' + flags[i] , 'gm' ) , css:'comments'} );
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DRegex.php20 * @param int $flags
25 … public static function pregMatchSafe($pattern, $subject, $matches = null, $flags = 0, $offset = 0) argument
28 $match = preg_match($pattern, $subject, $matches, $flags, $offset);
/plugin/findologicxmlexport/vendor/hoa/zformat/
H A DParameter.php571 $flags
574 if (empty($flags) || empty($flags[1])) {
582 foreach ($flags[1] as $i => $flag) {
634 if (!isset($flags[3]) && !isset($flags[4])) {
642 $l = preg_quote($flags[3][$i], '#');
643 $r = $flags[4][$i];
645 switch ($flags[2][$i]) {
/plugin/task/syntax/
H A Dtasks.php31 list($match, $flags) = explode('&', $match, 2);
32 $flags = explode('&', $flags);
40 return array($ns, $filter, $flags, $refine);
46 list($ns, $filter, $flags, $refine) = $data;
73 if(!in_array('noform', $flags)) {
99 if(!in_array('noform', $flags)) {
120 $pagelist->setFlags($flags);
136 if(!in_array('noform', $flags)) {
/plugin/swiftmail/Swift/Connection/
H A DSendmail.php29 protected $flags = null; variable in Swift_Connection_Sendmail
92 public function setFlags($flags) argument
94 $this->flags = $flags;
102 return $this->flags;
175 $flags = substr($command, strrpos($command, " -")+2);
177 $this->setFlags($flags);
/plugin/authgooglesheets/vendor/symfony/polyfill-intl-idn/
H A Dbootstrap80.php121flags = IDNA_DEFAULT, ?int $variant = INTL_IDNA_VARIANT_UTS46, &$idna_info = null): string|false {… argument
124flags = IDNA_DEFAULT, ?int $variant = INTL_IDNA_VARIANT_UTS46, &$idna_info = null): string|false {… argument
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DForm.php15 // Input flags
168 $flags = [];
171 $flags[] = self::FLAG_READONLY;
175 $flags[] = self::FLAG_NO_EXPORT;
180 $flags[] = self::FLAG_REQUIRED;
184 $flags[] = self::FLAG_NO_SPELLCHECK;
188 $flags[] = self::FLAG_PASSWORD;
221 $this->SetFormText($w, $h, $objattr['fieldname'], $val, $val, $objattr['title'], $flags, $fieldalign, false, (isset($objattr['maxlength']) ? $objattr['maxlength'] : false), $js, (isset($objattr['background-col']) ? $objattr['background-col'] : false), (isset($objattr['border-col']) ? $objattr['border-col'] : false));
269 $flags = [self::FLAG_TEXTAREA];
271 $flags[]
839 SetFormText($w, $h, $name, $value = '', $default = '', $title = '', $flags = [], $align = 'L', $hidden = false, $maxlen = 1, $js = '', $background_col = false, $border_col = false) global() argument
940 SetFormChoice($w, $h, $name, $flags, $array, $align = 'L', $js = '') global() argument
1014 SetCheckBox($w, $h, $name, $value, $title = '', $checked = false, $flags = [], $disabled = false) global() argument
1021 SetRadio($w, $h, $name, $value, $title = '', $checked = false, $flags = [], $disabled = false) global() argument
1027 SetFormReset($w, $h, $name, $value = 'Reset', $title = '', $flags = [], $background_col = false, $border_col = false, $noprint = false) global() argument
1036 SetJSButton($w, $h, $name, $value, $js, $image_id = 0, $title = '', $flags = [], $indexed = false, $background_col = false, $border_col = false, $noprint = false) global() argument
1053 SetFormSubmit($w, $h, $name, $value = 'Submit', $url = '', $title = '', $typ = 'html', $method = 'POST', $flags = [], $background_col = false, $border_col = false, $noprint = false) global() argument
1099 SetFormButton($bb, $hh, $name, $value, $type, $title = '', $flags = [], $checked = false, $disabled = false, $background_col = false, $border_col = false, $noprint = false) global() argument
[all...]
/plugin/findologicxmlexport/vendor/hoa/stream/Wrapper/
H A DWrapper.php56 * @param int $flags Should be set to `STREAM_IS_URL` if
62 public static function register($protocol, $className, $flags = 0) argument
81 return stream_wrapper_register($protocol, $className, $flags);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DControls.php52 * @param int $flags
57 public static function dirSync(int $flags = DirSyncRequestControl::FLAG_INCREMENTAL_VALUES, string $cookie = '', int $maxBytes = 2147483647)
59 return new DirSyncRequestControl($flags, $cookie, $maxBytes);
210 * @param int $flags
213 public static function sdFlags(int $flags): SdFlagsControl
215 return new SdFlagsControl($flags);
56 dirSync(int $flags = DirSyncRequestControl FLAG_INCREMENTAL_VALUES, string $cookie = '', int $maxBytes = 2147483647) global() argument
212 sdFlags(int $flags) global() argument
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/
H A DIdentity.php86 private $flags = 0; variable in phpseclib3\\System\\SSH\\Agent\\Identity
176 $new->flags = 0;
181 $new->flags = self::SSH_AGENT_RSA2_256;
184 $new->flags = self::SSH_AGENT_RSA2_512;
290 $this->flags
/plugin/pagebox/
H A Dsyntax.php39 return array($include, $id, explode('&', $flags));
45 list($type, $page_id, $flags) = $data;
53 foreach($flags as $value) {

1234567891011