1 <?php
2
3 /*
4 * This file is part of the Icybee package.
5 *
6 * (c) Olivier Laviale <olivier.laviale@gmail.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12 namespace Icybee\Modules\Views;
13
14 // TODO-20130201: a class to create view options
15
16 class ViewOptions
17 {
18 const RENDERS_ONE = 1;
19 const RENDERS_MANY = 2;
20 const RENDERS_OTHER = 3;
21
22 public $access_callback;
23 public $assets;
24 public $class;
25 public $id;
26 public $provider;
27 public $renders;
28 public $title;
29 }