Home
last modified time | relevance | path

Searched refs:properties (Results 26 – 50 of 802) sorted by relevance

12345678910>>...33

/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DTd.php175 $properties = $this->cssManager->MergeCSS('TABLE', $tag, $attr);
177 $properties = $this->cssManager->array_merge_recursive_unique($this->mpdf->base_table_properties, $properties);
181 $this->mpdf->setCSS($properties, 'TABLECELL', $tag);
186 if (isset($properties['BACKGROUND-COLOR'])) {
187 $c['bgcolor'] = $properties['BACKGROUND-COLOR'];
188 } elseif (isset($properties['BACKGROUND'])) {
189 $c['bgcolor'] = $properties['BACKGROUND'];
197 if (isset($properties['BACKGROUND-GRADIENT'])) {
198 $c['gradient'] = $properties['BACKGROUN
[all...]
H A DTFoot.php16 $properties = $this->cssManager->MergeCSS('TABLE', 'TFOOT', $attr);
17 if (isset($properties['FONT-WEIGHT'])) {
19 if (strtoupper($properties['FONT-WEIGHT']) === 'BOLD') {
24 if (isset($properties['FONT-STYLE'])) {
26 if (strtoupper($properties['FONT-STYLE']) === 'ITALIC') {
30 if (isset($properties['FONT-VARIANT'])) {
32 if (strtoupper($properties['FONT-VARIANT']) === 'SMALL-CAPS') {
37 if (isset($properties['VERTICAL-ALIGN'])) {
38 $this->mpdf->tfoot_valign_default = $properties['VERTICAL-ALIGN'];
40 if (isset($properties['TEX
[all...]
H A DTHead.php14 $properties = $this->cssManager->MergeCSS('TABLE', 'THEAD', $attr);
15 if (isset($properties['FONT-WEIGHT'])) {
17 if (strtoupper($properties['FONT-WEIGHT']) === 'BOLD') {
22 if (isset($properties['FONT-STYLE'])) {
24 if (strtoupper($properties['FONT-STYLE']) === 'ITALIC') {
28 if (isset($properties['FONT-VARIANT'])) {
30 if (strtoupper($properties['FONT-VARIANT']) === 'SMALL-CAPS') {
35 if (isset($properties['VERTICAL-ALIGN'])) {
36 $this->mpdf->thead_valign_default = $properties['VERTICAL-ALIGN'];
38 if (isset($properties['TEX
[all...]
H A DMeter.php87 $properties = $this->cssManager->MergeCSS('INLINE', $tag, $attr);
88 if (isset($properties ['DISPLAY']) && strtolower($properties ['DISPLAY']) === 'none') {
92 if (isset($properties['VISIBILITY'])) {
93 $v = strtolower($properties['VISIBILITY']);
99 if (isset($properties['MARGIN-TOP'])) {
101 $properties['MARGIN-TOP'],
107 if (isset($properties['MARGIN-BOTTOM'])) {
109 $properties['MARGIN-BOTTOM'],
115 if (isset($properties['MARGI
[all...]
H A DTr.php18 $properties = $this->cssManager->MergeCSS('TABLE', 'TR', $attr);
22 if (!empty($properties['BORDER-LEFT'])) {
23 $this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['trborder-left'][$this->mpdf->row] = $properties['BORDER-LEFT'];
25 if (!empty($properties['BORDER-RIGHT'])) {
26 $this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['trborder-right'][$this->mpdf->row] = $properties['BORDER-RIGHT'];
28 if (!empty($properties['BORDER-TOP'])) {
29 $this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['trborder-top'][$this->mpdf->row] = $properties['BORDER-TOP'];
31 if (!empty($properties['BORDER-BOTTOM'])) {
32 $this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['trborder-bottom'][$this->mpdf->row] = $properties['BORDER-BOTTOM'];
36 if (isset($properties['BACKGROUN
[all...]
H A DTable.php49 if ($this->mpdf->tableLevel > 1) { // inherit table properties from cell in which nested
129 if ($this->mpdf->tableLevel > 1) { // inherit table properties from cell in which nested
153 $properties = $this->cssManager->MergeCSS('TOPTABLE', 'TABLE', $attr);
155 $properties = $this->cssManager->MergeCSS('TABLE', 'TABLE', $attr);
159 if (isset($properties['WIDTH'])) {
160 $w = $properties['WIDTH'];
176 if (!empty($properties['DIRECTION'])) {
177 $table['direction'] = strtolower($properties['DIRECTION']);
184 if (isset($properties['BACKGROUND-COLOR'])) {
188 $table['bgcolor'][-1] = $properties['BACKGROUN
[all...]
/plugin/webdav/core/Plugin/
H A DDokuWiki.php61 $properties = [];
64 $properties[self::DAV_ISFOLDER_PROPERTY] = 't';
65 $properties[self::DAV_ISCOLLECTION_PROPERTY] = '1';
71 $properties[self::DAV_ID_PROPERTY] = $dw_id;
72 $properties[self::DW_ID_PROPERTY] = $dw_id;
77 $properties[self::DAV_DISPLAYNAME_PROPERTY] = @$dw_meta['title'];
78 $properties[self::DAV_ISHIDDEN_PROPERTY] = (isHiddenPage($dw_id) ? '1' : '0');
80 $properties[self::DW_TITLE_PROPERTY] = @$dw_meta['title'];
81 $properties[self::DW_DESCRIPTION_PROPERTY] = @$dw_meta['description']['abstract'];
84 … $properties[self::DW_TAGS_PROPERTY] = join(',', $tag_helper->_getSubjectMetadata($dw_id));
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Mock/
H A DPropertiesCollection.php21 public $properties; variable in Sabre\\DAV\\Mock\\PropertiesCollection
28 * @param array $properties
31 public function __construct($name, array $children, array $properties = []) { argument
34 $this->properties = $properties;
80 * @param array $properties
87 if (isset($this->properties[$requestedProperty])) {
89 $this->properties[$requestedProperty];
/plugin/keyboard/
H A Dsyntax.php185 $properties = array();
188 unset ($properties['font-family']);
195 $properties ['style-class'] = NULL;
196 $properties ['style-name'] = $style_name;
198 $renderer->createTextStyle($properties);
206 $properties = array();
208 if ($properties['font-family'] == 'inherit') {
209 unset ($properties['font-family']);
219 $properties ['style-class'] = NULL;
220 $properties ['style-name'] = $style_name;
[all …]
/plugin/odt/ODT/
H A DODTUtility.php350 cssborder::normalize($properties);
365 …$properties [$property] = self::adjustPercentageValueParts ($properties [$property], $maxWidthInPt…
373 if (isset($properties ['font-size']) || isset($properties ['line-height'])) {
385 $properties ['font-size'] = $units->toPoints($properties ['font-size'], 'y');
475 * @param array $properties
484 $rule->getProperties ($properties);
493 …$properties ['background-image'] = cssimportnew::replaceURLPrefix ($properties ['background-image'…
653 $properties = array();
665 return $properties ['style-name'];
676 $properties = array();
[all …]
H A DODTSpan.php23 $properties = array();
53 $properties = array();
57 self::spanOpenUseProperties($params, $properties);
73 * @param array $properties
78 $odt_bg = $properties ['background-color'];
79 $picture = $properties ['background-image'];
98 $style_obj = ODTTextStyle::createTextStyle ($properties, $disabled);
118 $properties = array();
122 $properties ['style-name'] = ODTStyle::getNewStylename ('span');
123 $params->document->createTextStyle($properties, false);
[all …]
/plugin/odt/ODT/styles/
H A DODTUnknownStyle.php58 public function importProperties($properties, $disabled=array()) { argument
159 …public static function createMultiColumnFrameStyle(array $properties, array $disabled_props = NULL… argument
164 $columns = $properties ['column-count'];
170 $rule_width = $properties ['column-rule-width'];
176 $rule_style = $properties ['column-rule-style'];
182 $rule_color = $properties ['column-rule-color'];
188 $gap = $properties ['column-gap'];
199 $style_name = $properties ['style-name'];
202 $properties ['style-name'] = $style_name;
H A DODTTableColumnStyle.php42 public function importProperties($properties, $disabled=array()) { argument
43 … $this->importPropertiesInternal(ODTStyleStyle::getStyleProperties (), $properties, $disabled);
44 $this->importPropertiesInternal(self::$table_column_fields, $properties, $disabled);
143 public static function createTableColumnStyle(array $properties, array $disabled_props = NULL){ argument
145 $style_name = $properties ['style-name'];
148 $properties ['style-name'] = $style_name;
152 $table_co_width = $properties ['width'];
156 $properties ['column-width'] = $table_co_width;
164 $properties ['rel-column-width'] = ($table_co_width*10).'*';
175 $object->importProperties($properties, $disabled_props);
H A DODTTextOutlineStyle.php67 public function importProperties($properties, $disabled=array()) { argument
68 $this->importPropertiesInternal(ODTTextStyle::getTextProperties (), $properties, $disabled);
69 $this->importPropertiesInternal(self::$outline_fields, $properties, $disabled);
130 $properties = array();
131 $attrs += $style->importODTStyleInternal($text_fields, $level, $properties);
132 … $attrs += $style->importODTStyleInternal(self::$outline_fields, $level, $properties);
135 $level_number = $style->getPropertyInternal('level', $properties);
136 $style->outline_level_styles [$level_number] = $properties;
165 foreach ($this->properties as $property => $items) {
170 foreach ($this->outline_level_styles as $key => $properties) {
[all …]
/plugin/typography/helper/
H A Dparser.php13 protected $properties, $specifications;
17 $this->properties = array(
73 return $this->properties;
82 public function setAllowedProperties(array $properties) argument
84 $this->properties = $properties;
96 return isset($this->properties[$name]);
123 if (isset($this->properties[$item[0]])) {
124 $name = $this->properties[$item[0]];
125 } elseif (in_array($item[0], $this->properties)) {
/plugin/publist/bib2tpl/lib/
H A DPEAR5.php22 static $properties;
23 if (!isset($properties[$class])) {
24 $properties[$class] = array();
27 if (!array_key_exists($var, $properties[$class])) {
28 $properties[$class][$var] = null;
31 return $properties[$class][$var];
/plugin/publistf/bib2tpl/lib/
H A DPEAR5.php22 static $properties;
23 if (!isset($properties[$class])) {
24 $properties[$class] = array();
27 if (!array_key_exists($var, $properties[$class])) {
28 $properties[$class][$var] = null;
31 return $properties[$class][$var];
/plugin/publistx/bib2tpl/lib/
H A DPEAR5.php22 static $properties;
23 if (!isset($properties[$class])) {
24 $properties[$class] = array();
27 if (!array_key_exists($var, $properties[$class])) {
28 $properties[$class][$var] = null;
31 return $properties[$class][$var];
/plugin/exttab3/helper/
H A Dodt.php13 $properties = array();
51 $renderer->getODTProperties($properties, $tag, $class, $style);
55 $renderer->_odtTableOpenUseProperties($properties);
60 $renderer->_odtTableRowOpenUseProperties($properties);
63 $renderer->_odtTableHeaderOpenUseProperties($properties, 0, $rowspan);
66 $renderer->_odtTableHeaderOpenUseProperties($properties);
67 $renderer->_odtTableAddColumnUseProperties($properties);
70 $renderer->_odtTableRowOpenUseProperties($properties);
73 $renderer->_odtTableCellOpenUseProperties($properties);
/plugin/vcard/
H A Dvcard.php73 var $properties; variable in vCard
81 $this->properties[$key] = quoted_printable_encode($number);
90 $this->properties["FN"] = quoted_printable_encode($name);
94 $this->properties["N"] = "$family;$first;$additional;$prefix;$suffix";
100 $this->properties["BDAY"] = $date;
110 if ($this->properties["LABEL;$type;ENCODING=UTF-8"] == "") {
129 $this->properties["EMAIL;INTERNET"] = $address;
133 $this->properties["ORG"] = $company;
137 $this->properties["NOTE;ENCODING=UTF-8"] = quoted_printable_encode($note);
144 $this->properties[$key] = $url;
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/
H A DMockSubscriptionSupport.php70 * @param array $properties
73 public function createSubscription($principalUri, $uri, array $properties) { argument
75 $properties['uri'] = $uri;
76 $properties['principaluri'] = $principalUri;
77 $properties['source'] = $properties['{http://calendarserver.org/ns/}source']->getHref();
85 $properties['id'] = $id;
87 $this->subs[$principalUri][] = array_merge($properties, [
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DPropPatch.php83 * @param string|string[] $properties
87 function handle($properties, callable $callback) { argument
90 foreach ((array)$properties as $propertyName) {
109 is_string($properties) ? $properties : $usedProperties,
125 $properties = $this->getRemainingMutations();
126 if (!$properties) {
131 foreach ($properties as $propertyName) {
136 $properties,
146 * @param string|string[] $properties
150 function setResultCode($properties, $resultCode) { argument
[all …]
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DPropPatch.php76 * @param string|string[] $properties
80 function handle($properties, callable $callback) { argument
83 foreach ((array)$properties as $propertyName) {
102 is_string($properties) ? $properties : $usedProperties,
118 $properties = $this->getRemainingMutations();
119 if (!$properties) {
124 foreach ($properties as $propertyName) {
129 $properties,
139 * @param string|string[] $properties
143 function setResultCode($properties, $resultCode) { argument
[all …]
/plugin/definitionlist/
H A Dsyntax.php236 $properties = array();
239 $properties ['width'] = $style_data ['margin-left'];
245 $properties = array();
246 $properties ['border-left'] = 'none';
247 $properties ['border-right'] = 'none';
248 $properties ['border-top'] = 'none';
254 $properties = array();
255 $properties ['border-left'] = 'none';
256 $properties ['border-right'] = 'none';
257 $properties ['border-top'] = 'none';
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/src/Ordering/
H A DCustomPropertyOrderingStrategy.php23 public function order(array $properties): array argument
25 …$currentSorting = $properties ? array_combine(array_keys($properties), range(1, \count($properties
27 uksort($properties, function ($a, $b) use ($currentSorting) {
46 return $properties;

12345678910>>...33