uawdijnntqw1x1x1
IP : 216.73.217.31
Hostname : webm015.cluster127.gra.hosting.ovh.net
Kernel : Linux webm015.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
pteabiscqq
/
.
/
.
/
www
/
.
/
libraries
/
quix
/
src
/
FormEngine
/
.
/
Transformers
/
TypographyTransformer.php
/
/
<?php namespace ThemeXpert\FormEngine\Transformers; class TypographyTransformer extends SliderTransformer { /** * Get type for the typography. * * @param $config * @param string $type * * @return string */ public function getType($config, $type = "") { return "typography"; } /** * Get typography value. * * @param $config * * @return array|mixed|null */ public function getValue($config) { $value = $this->get($config, "value", null); if ($value === null) { return [ "size" => "0", "bold" => "", "underline" => "", "italic" => "", "family" => "", "case" => "", "spacing" => "0", "height" => "0", "weight" => "", ]; } else { $value = (array)$value; } $value = array_pick($value, [ "size", "bold", "underline", "italic", "family", "case", "spacing", "height", "weight", ], true); //exclusive return $value; } /** * Get desktop value. * * @param $config * @return mixed */ public function getDesktopValue($config) { return $this->getValue($config)['size']; } /** * Determine element is by default responsive mode. * * @return bool */ public function isResponsive() { return true; } }
/home/pteabiscqq/././www/./libraries/quix/src/FormEngine/./Transformers/TypographyTransformer.php