Home
last modified time | relevance | path

Searched refs:attributes (Results 51 – 75 of 644) sorted by relevance

12345678910>>...26

/plugin/jirainfo/
H A Dsyntax.php31 foreach ($xml->attributes() as $key => $value) {
32 $attributes[$key] = (string) $value;
34 … if (array_key_exists('key', $attributes)) return array($state, $attributes['key']);
46 * @param Array $attributes
50 public function check(array $attributes) argument
52 return array_key_exists('key', $attributes);
/plugin/bootswrapper/syntax/
H A Dbootstrap.php68 * @param array $attributes
70 protected function checkAttributes($attributes = array()) argument
91 foreach ($attributes as $name => $value) {
226 $attributes = array();
241 foreach ($xml->attributes() as $key => $value) {
242 $attributes[$key] = (string) $value;
296 protected function mergeCoreAttributes($attributes) argument
302 if (isset($attributes[$attribute])) {
303 $core_attributes[$attribute] = $attributes[$attribute];
313 $attributes = array_merge_recursive($attributes, $override_attributes);
[all …]
/plugin/combo/ComboStrap/
H A DHover.php26 * @param TagAttributes $attributes
28 public static function processOnHover(TagAttributes &$attributes) argument
30 if ($attributes->hasComponentAttribute(self::ON_HOVER_ATTRIBUTE)) {
31 $hover = strtolower($attributes->getValueAndRemove(self::ON_HOVER_ATTRIBUTE));
48 $attributes->addClassName("hvr-$hover");
94 $attributes->addClassName(self::COMBO_HOVER_EASING_CLASS);
96 $attributes->addOutputAttributeValue("data-hover-class", trim($comboDataHoverClasses));
H A DPermalinkTag.php21 public static function handleEnterSpecial(TagAttributes $attributes, int $state, Doku_Handler $handler): array argument
25 $type = $attributes->getValueAndRemoveIfPresent(TagAttributes::TYPE_KEY);
32 $strict = $attributes->getBooleanValueAndRemoveIfPresent(TagAttributes::STRICT, true);
55 $fragment = $attributes->getValueAndRemoveIfPresent(self::FRAGMENT_ATTRIBUTE);
79 $attributes->addComponentAttributeValue(syntax_plugin_combo_link::MARKUP_REF_ATTRIBUTE, $url);
80 $attributes->addOutputAttributeValue("rel", "nofollow");
81 syntax_plugin_combo_link::addOpenLinkTagInCallStack($callStack, $attributes);
108 $attributes->addComponentAttributeValue(syntax_plugin_combo_link::MARKUP_REF_ATTRIBUTE, $canonicalUrl);
109 $attributes->addOutputAttributeValue("rel", "nofollow");
110 syntax_plugin_combo_link::addOpenLinkTagInCallStack($callStack, $attributes);
[all...]
H A DGridTag.php82 public static function processEnter(TagAttributes $attributes, $handler, $match) argument
123 * $attributes->addClassName("no-gutters");
155 $attributes->setType(self::TYPE_ROW_TAG);
162 if (!$attributes->hasComponentAttribute($key)) {
163 $attributes->addComponentAttributeValue($key, $value);
171 $aligns = $attributes->getValues(Align::ALIGN_ATTRIBUTE, []);
179 $attributes->addComponentAttributeValue(Align::ALIGN_ATTRIBUTE, $value);
190 $type = $attributes->getType();
193 $attributes->removeType();
197 $attributes
461 renderEnterXhtml(TagAttributes $attributes) global() argument
[all...]
/plugin/findologicxmlexport/vendor/findologic/libflexport/src/FINDOLOGIC/Export/Helpers/
H A DXMLHelper.php12 * @param array $attributes String-to-string mapping of attributes to set on the element.
15 public static function createElement(\DOMDocument $document, $name, array $attributes = []) argument
19 foreach ($attributes as $attribName => $attribValue) {
32 * @param array $attributes String-to-string mapping of attributes to set on the element.
35 …static function createElementWithText(\DOMDocument $document, $name, $text, array $attributes = []) argument
37 $element = self::createElement($document, $name, $attributes);
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DContext.php24 private $attributes = []; variable in JMS\\Serializer\\Context
73 if (isset($this->attributes['groups'])) {
74 $this->addExclusionStrategy(new GroupsExclusionStrategy($this->attributes['groups']));
77 if (isset($this->attributes['version'])) {
81 if (!empty($this->attributes['max_depth_checks'])) {
113 return $this->attributes[$key];
118 return isset($this->attributes[$key]);
127 $this->attributes[$key] = $value;
165 $this->attributes['version'] = $version;
179 $this->attributes['groups'] = (array) $groups;
[all …]
/plugin/combo/ComboStrap/TagAttribute/
H A DHero.php18 public static function processHero(TagAttributes &$attributes) argument
21 $hero = $attributes->getValueAndRemove(self::ATTRIBUTE);
29 $attributes->addClassName(self::COMPONENT_NAME . "-sm");
33 $attributes->addClassName(self::COMPONENT_NAME . "-md");
37 $attributes->addClassName(self::COMPONENT_NAME . "-lg");
41 $attributes->addClassName(self::COMPONENT_NAME . "-xl");
/plugin/mantis/lib/
H A Dclass.soap_val.php59 var $attributes; variable in soapval
69 * @param mixed $attributes associative array of attributes to add to element serialization
72 …soapval($name='soapval',$type=false,$value=-1,$element_ns=false,$type_ns=false,$attributes=false) { argument
79 $this->attributes = $attributes;
90 …value, $this->name, $this->type, $this->element_ns, $this->type_ns, $this->attributes, $use, true);
/plugin/adfs/
H A Dauth.php179 $attributes = [
183 $attributes['name'] = $this->getConf('fullname_attr_name');
184 … if (empty($attributes['name'])) $attributes['name'] = $attributes['user']; // fall back to login
185 $attributes['mail'] = $this->getConf('email_attr_name');
186 $attributes['grps'] = $this->getConf('groups_attr_name');
187 if (empty($attributes['grps'])) unset($attributes['grps']); // groups are optional
192 foreach ($attributes as $key => $attr) {
/plugin/findologicxmlexport/vendor/findologic/libflexport/src/FINDOLOGIC/Export/CSV/
H A DCSVItem.php42 $attributes = $this->buildAttributes();
58 $attributes,
80 $attributes = '';
83 foreach ($this->attributes as $attribute) {
84 $attributes .= sprintf('%s&', $attribute->getCsvFragment());
87 $attributes = rtrim($attributes, '&');
89 return $attributes;
/plugin/sql2wiki/syntax/
H A Dquery.php46 $attributes = [];
47 foreach($xml[0]->attributes() as $a => $b) {
48 $attributes[$a] = (string) $b;
50 if (!isset($attributes['db']) || !isset($attributes['query'])) {
51 msg('"db" and "query" attributes are required.', -1);
61 foreach ($attributes as $name => $value) {
76 if (isset($attributes['args'])) {
77 $args = array_map('trim', explode(',', $attributes['args']));
83 'db' => $attributes['d
[all...]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudScheduler/
H A DPubsubTarget.php25 public $attributes; variable in Google\\Service\\CloudScheduler\\PubsubTarget
38 public function setAttributes($attributes) argument
40 $this->attributes = $attributes;
47 return $this->attributes;
H A DPubsubMessage.php25 public $attributes; variable in Google\\Service\\CloudScheduler\\PubsubMessage
46 public function setAttributes($attributes) argument
48 $this->attributes = $attributes;
55 return $this->attributes;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Analytics/
H A DColumn.php25 public $attributes; variable in Google\\Service\\Analytics\\Column
38 public function setAttributes($attributes) argument
40 $this->attributes = $attributes;
47 return $this->attributes;
/plugin/commonmark/vendor/league/commonmark/src/Extension/Attributes/Node/
H A DAttributesInline.php22 private array $attributes; variable in League\\CommonMark\\Extension\\Attributes\\Node\\AttributesInline
27 * @param array<string, mixed> $attributes
29 public function __construct(array $attributes, bool $block)
33 $this->attributes = $attributes;
42 return $this->attributes;
46 * @param array<string, mixed> $attributes
48 public function setAttributes(array $attributes): void
50 $this->attributes = $attributes;
31 __construct(array $attributes, bool $block) global() argument
[all...]
H A DAttributes.php26 private array $attributes;
31 * @param array<string, mixed> $attributes
33 public function __construct(array $attributes)
37 $this->attributes = $attributes;
45 return $this->attributes;
49 * @param array<string, mixed> $attributes
51 public function setAttributes(array $attributes): void
53 $this->attributes = $attributes;
23 private $attributes; global() variable in League\\CommonMark\\Extension\\Attributes\\Node\\Attributes
28 __construct(array $attributes) global() argument
[all...]
/plugin/mikioplugin/
H A Dcarousel.php28 preg_match_all('/([^\r\n\t\f\v<>= \'"]+)(?:=(["\'])?((?:.(?!\2?\s+(?:\S+)=|\2))+[^>])\2?)?/', $tag, $attributes);
30 if (count($attributes) > 0) {
31 $tagName = $attributes[1][0];
34 for ($i = 1; $i < count($attributes[1]); $i++) {
35 $value = $attributes[3][$i];
40 $tagAttribs[$attributes[1][$i]] = $value;
/plugin/mdpage/vendor/cebe/markdown/
H A DMarkdownExtra.php132 $attributes = $this->renderAttributes($block);
133 return ($this->codeAttributesOnPre ? "<pre$attributes><code>" : "<pre><code$attributes>")
150 $attributes = $this->renderAttributes($block);
151 return "<$tag$attributes>" . rtrim($this->renderAbsy($block['content']), "# \t") . "</$tag>\n";
158 $attributes = preg_split('/\s+/', $block['attributes'], -1, PREG_SPLIT_NO_EMPTY);
159 foreach($attributes as $attribute) {
232 $attributes = $this->renderAttributes($block);
235 . $attributes . '>' . $this->renderAbsy($block['text']) . '</a>';
250 $attributes = $this->renderAttributes($block);
254 . $attributes . ($this->html5 ? '>' : ' />');
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Pubsub/
H A DPushConfig.php25 public $attributes; variable in Google\\Service\\Pubsub\\PushConfig
36 public function setAttributes($attributes) argument
38 $this->attributes = $attributes;
45 return $this->attributes;
H A DPubsubMessage.php25 public $attributes; variable in Google\\Service\\Pubsub\\PubsubMessage
46 public function setAttributes($attributes) argument
48 $this->attributes = $attributes;
55 return $this->attributes;
/plugin/combo/syntax/
H A Dnavbarcollapse.php184 $attributes = $data[PluginUtility::ATTRIBUTES];
190 if (array_key_exists("order", $attributes)) {
191 $renderer->doc .= ' style="order:' . $attributes["order"] . '"';
192 unset($attributes["order"]);
200 if (array_key_exists("class", $attributes)) {
201 $attributes["class"] .= " {$classValue}";
203 $attributes["class"] = "{$classValue}";
205 $renderer->doc .= '<div id="' . $idElementToCollapse . '" ' . PluginUtility::array2HTMLAttributesAsString($attributes) . '>';
H A Dcode.php153 * because it's possible to not display a code with the display attributes = none
191 $attributes = TagAttributes::createFromCallStackArray($data[PluginUtility::ATTRIBUTES], self::CODE_TAG);
192 Prism::htmlEnter($renderer, $this, $attributes);
197 $attributes = TagAttributes::createFromCallStackArray($data[PluginUtility::ATTRIBUTES]);
198 $display = $attributes->getValue("display");
208 $attributes = TagAttributes::createFromCallStackArray($data[PluginUtility::ATTRIBUTES]);
209 Prism::htmlExit($renderer, $attributes);
223 $attributes = $data[PluginUtility::ATTRIBUTES];
225 $filename = $attributes[self::FILE_PATH_KEY];
226 $language = strtolower($attributes["typ
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DSearchRequest.php48 * attributes AttributeSelection }
126 protected $attributes = [];
130 * @param string|Attribute ...$attributes argument
132 public function __construct(FilterInterface $filter, ...$attributes)
135 $this->setAttributes(...$attributes);
141 * @param string|Attribute ...$attributes
144 public function select(...$attributes)
146 return $this->setAttributes(...$attributes);
223 return $this->attributes;
227 * @param string|Attribute ...$attributes
124 protected $attributes = []; global() variable in FreeDSx\\Ldap\\Operation\\Request\\SearchRequest
142 select(...$attributes) global() argument
228 setAttributes(...$attributes) global() argument
[all...]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/WorkflowExecutions/
H A DPubsubMessage.php25 public $attributes; variable in Google\\Service\\WorkflowExecutions\\PubsubMessage
46 public function setAttributes($attributes) argument
48 $this->attributes = $attributes;
55 return $this->attributes;

12345678910>>...26