uawdijnntqw1x1x1
IP : 216.73.216.206
Hostname : webm007.cluster114.gra.hosting.ovh.net
Kernel : Linux webm007.cluster114.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
/
locationbo
/
www
/
libraries
/
.
/
smartslider3
/
src
/
Framework
/
Form
/
AbstractContainer.php
/
/
<?php namespace Nextend\Framework\Form; abstract class AbstractContainer implements ContainerContainedInterface { use TraitContainer; /** * @var ContainerContainedInterface */ protected $first, $last; protected $controlName = ''; /** * @var ContainerInterface; */ private $previous, $next; public function getPrevious() { return $this->previous; } /** * @param ContainedInterface|null $element */ public function setPrevious($element = null) { $this->previous = $element; } public function getNext() { return $this->next; } /** * @param ContainedInterface|null $element */ public function setNext($element = null) { $this->next = $element; if ($element) { $element->setPrevious($this); } } public function remove() { $this->getParent() ->removeElement($this); } public function render() { $this->renderContainer(); } public function renderContainer() { $element = $this->first; while ($element) { $element->renderContainer(); $element = $element->getNext(); } } /** * @return string */ public function getControlName() { return $this->controlName; } /** * @param string $controlName */ public function setControlName($controlName) { $this->controlName = $controlName; } }
/home/locationbo/www/libraries/./smartslider3/src/Framework/Form/AbstractContainer.php