File "ContainerSubform.php"
Full Path: /home2/sdektunc/cepali.edu.mx/wp-content/plugins/smart-slider-3/Nextend/Framework/Form/Container/ContainerSubform.php
File size: 455 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Nextend\Framework\Form\Container;
use Nextend\Framework\Form\ContainerGeneral;
class ContainerSubform extends ContainerGeneral {
public function renderContainer() {
echo '<div id="' . esc_attr($this->getId()) . '" class="n2_form__subform">';
parent::renderContainer();
echo '</div>';
}
public function getId() {
return 'n2_form__subform_' . $this->controlName . '_' . $this->name;
}
}