Home
last modified time | relevance | path

Searched refs:disabled_props (Results 1 – 9 of 9) sorted by path

/plugin/odt/ODT/styles/
H A DODTPageLayoutStyle.php343 * @param null $disabled_props
346 public static function createPageLayoutStyle(array $properties, array $disabled_props = NULL) { argument
H A DODTParagraphStyle.php331 * @param null $disabled_props
334 …public static function createParagraphStyle(array $properties, array $disabled_props = NULL, ODTDo… argument
394 $save = $disabled_props ['font-size'];
396 if ( empty ($disabled_props ['font-size']) ) {
433 $object->importProperties($properties, $disabled_props);
436 $disabled_props ['font-size'] = $save;
H A DODTTableCellStyle.php203 * @param null $disabled_props
206 public static function createTableCellStyle(array $properties, array $disabled_props = NULL){ argument
221 $object->importProperties($properties, $disabled_props);
H A DODTTableColumnStyle.php139 * @param null $disabled_props
143 public static function createTableColumnStyle(array $properties, array $disabled_props = NULL){ argument
175 $object->importProperties($properties, $disabled_props);
H A DODTTableRowStyle.php161 * @param array|null $disabled_props
164 public static function createTableRowStyle(array $properties, array $disabled_props = NULL){ argument
179 $object->importProperties($properties, $disabled_props);
H A DODTTableStyle.php171 * @param array|null $disabled_props Ignored properties.
175 …public static function createTableTableStyle(array $properties, array $disabled_props = NULL, $max… argument
222 $object->importProperties($properties, $disabled_props);
H A DODTTextStyle.php230 * @param null $disabled_props
233 …public static function createTextStyle(array $properties, array $disabled_props = NULL, ODTDocumen… argument
279 $save = $disabled_props ['font-size'];
281 if ( empty ($disabled_props ['font-size']) ) {
311 $object->importProperties($properties, $disabled_props);
314 $disabled_props ['font-size'] = $save;
H A DODTUnknownStyle.php156 * @param null $disabled_props
159 …public static function createMultiColumnFrameStyle(array $properties, array $disabled_props = NULL… argument
163 if ( empty ($disabled_props ['column-count']) ) {
169 if ( empty ($disabled_props ['column-rule-width']) ) {
175 if ( empty ($disabled_props ['column-rule-style']) ) {
181 if ( empty ($disabled_props ['column-rule-color']) ) {
187 if ( empty ($disabled_props ['column-gap']) ) {
/plugin/odt/helper/
H A Dstylefactory.php101 * @param null $disabled_props
105 return ODTTextStyle::createTextStyle($properties, $disabled_props);
122 * @param null $disabled_props
126 return ODTParagraphStyle::createParagraphStyle($properties, $disabled_props);
142 * @param null $disabled_props
163 * @param null $disabled_props
167 return ODTTableRowStyle::createTableRowStyle($properties, $disabled_props);
183 * @param null $disabled_props
205 * @param null $disabled_props
228 * @param null $disabled_props
[all …]