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
/
DividerTransformer.php
/
/
<?php namespace ThemeXpert\FormEngine\Transformers; use ThemeXpert\FormEngine\Contracts\ControlTransformer; class DividerTransformer extends ControlTransformer { /** * Transform the divider. * * @param $config * * @return mixed */ public function transform($config, $path) { $c = parent::transform($config, $path); $c['value'] = $this->getValue($config); $c['name'] = $this->getName($config); $c['type'] = $this->getType($config); $c['label'] = $this->getLabel($config); $c['class'] = $this->getClass($config); $c['help'] = $this->getHelp($config); $c['placeholder'] = $this->getPlaceholder($config); $c['desc'] = $this->get($config, 'desc', 'Note'); $c['class'] = $this->getClass($config); return $c; } /** * Get icon picker type. * * @param $config * @param string $type * * @return string */ public function getType($config, $type = "") { return "divider"; } }
/home/pteabiscqq/www/./libraries/quix/src/FormEngine/Transformers/DividerTransformer.php