1
0
Fork 0
mirror of https://github.com/Oreolek/kangana.git synced 2024-07-02 22:55:04 +03:00
kangana/application/classes/View/Form/Checkbox.php

14 lines
254 B
PHP

<?php defined('SYSPATH') or die('No direct script access.');
/**
* Form checkbox
**/
class View_Form_Checkbox extends View_Form_Control {
public $is_selected;
public $value = 1;
public function id()
{
return 'checkbox-'.$this->name;
}
}