shell bypass 403
Cubjrnet7 Shell
: /home/eklavya/public_html/administrator/components/com_rsform/helpers/fields/uikit3/ [ drwxr-xr-x ]
<?php
/**
* @package RSForm! Pro
* @copyright (C) 2007-2019 www.rsjoomla.com
* @license GPL, http://www.gnu.org/copyleft/gpl.html
*/
defined('_JEXEC') or die;
require_once JPATH_ADMINISTRATOR.'/components/com_rsform/helpers/fields/calendar.php';
class RSFormProFieldUikit3Calendar extends RSFormProFieldCalendar
{
// @desc All calendars should have a 'rsform-calendar-box' class for easy styling
// Since the calendar is composed of multiple items, we need to differentiate the attributes through the $type parameter
public function getAttributes($type='input') {
$attr = parent::getAttributes($type);
if (strlen($attr['class'])) {
$attr['class'] .= ' ';
}
if ($type == 'input') {
$attr['class'] .= 'uk-input uk-form-width-medium';
} elseif ($type == 'button') {
$attr['class'] .= 'uk-button uk-button-default';
}
return $attr;
}
}