Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3639 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Model;
6
 
7
class Page
8
{
9
    const TYPE_PAGE = 'p';
10
    const TYPE_URL = 'u';
11
 
3674 efrain 12
    const PAGE_CODE_PRIVACY_POLICY = 'privacy-policy';
13
    const PAGE_CODE_PROFESSIONALISM_POLICY = 'professionalism-policy';
14
    const PAGE_CODE_COOKIES = 'cookies';
15
    const PAGE_CODE_TERMS_AND_CONDITIONS = 'terms-and-conditions';
1 www 16
 
17
 
18
    const STATUS_ACTIVE = 'a';
19
    const STATUS_INACTIVE = 'i';
20
 
21
    const YES = 'y';
22
    const NO = 'n';
23
 
24
 
25
    /**
26
     *
27
     * @var string
28
     */
29
    public $id;
30
 
31
    /**
3639 efrain 32
     *
3674 efrain 33
     * @var string
34
     */
35
    public $code;
36
 
37
 
38
    /**
39
     *
3639 efrain 40
     * @var int
41
     */
42
    public $network_id;
43
 
44
    /**
1 www 45
     *
3674 efrain 46
     * @var int
47
     */
48
    public $page_default_id;
49
 
50
    /**
51
     *
1 www 52
     * @var string
53
     */
54
    public $title;
55
 
56
    /**
57
     *
58
     * @var string
59
     */
60
    public $content;
61
 
62
 
63
 
64
    /**
65
     *
66
     * @var string
67
     */
68
    public $type;
69
 
70
    /**
71
     *
72
     * @var string
73
     */
74
    public $url;
75
 
76
    /**
77
     *
78
     * @var string
79
     */
80
    public $fixed;
81
 
82
 
83
    /**
84
     *
85
     * @var string
86
     */
87
    public $added_on;
88
 
89
 
90
    /**
91
     *
92
     * @var string
93
     */
94
    public $updated_on;
95
 
96
    /**
97
     *
98
     * @var string
99
     */
100
    public $status;
101
}