phpMv -UI toolkit 2.4.12
jQuery, jQuery UI, Twitter Bootstrap and Semantic-UI library for php & php MVC Frameworks
Loading...
Searching...
No Matches
ItemSelection.php
Go to the documentation of this file.
1<?php
2
4
6
7abstract class ItemSelection extends BaseEnum {
8 const ADD_CIRCLE="add circle", ADD_SQUARE="add square", CHECK_CIRCLE="check circle", CHECK_CIRCLE_OUTLINE="check circle outline", CHECK_SQUARE="check square", CHECKMARK_BOX="checkmark box", CHECKMARK="checkmark", MINUS_CIRCLE="minus circle", MINUS="minus", MINUS_SQUARE="minus square", MINUS_SQUARE_OUTLINE="minus square outline", MOVE="move", PLUS="plus", PLUS_SQUARE_OUTLINE="plus square outline", RADIO="radio", REMOVE_CIRCLE="remove circle", REMOVE_CIRCLE_OUTLINE="remove circle outline", REMOVE="remove", SELECTED_RADIO="selected radio", TOGGLE_OFF="toggle off", TOGGLE_ON="toggle on";
9}
Base class for enums see at http://stackoverflow.com/questions/254514/php-and-enumerations.
Definition BaseEnum.php:11