for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* YAWIK
*
* @filesource
* @copyright https://yawik.org/COPYRIGHT.php
* @license MIT
* @author [email protected]
*/
namespace Jobs\Form;
use Core\Form\Container;
use Core\Form\ViewPartialProviderInterface;
* Adds an iFrame to the job formular which holds the editable job opening.
* @package Jobs\Form
class JobDescription extends Container implements ViewPartialProviderInterface
{
public function init()
$this->setName('jobs-form-description');
$this->setAttributes(
array(
'id' => 'jobs-form-description',
'data-handle-by' => 'native'
)
);
$this->setForms(
'atsMode' => array(
'type' => 'Jobs/AtsMode',
'property' => 'atsMode',
}
public function setViewPartial($partial)
return $this;
public function getViewPartial()
return 'iframe/iFrame.phtml';