-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpage.php
More file actions
68 lines (42 loc) · 939 Bytes
/
page.php
File metadata and controls
68 lines (42 loc) · 939 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
/**
* @package API_Plugins
* @copyright Copyright (C) 2009-2014 Techjoomla, Tekdi Technologies Pvt. Ltd. All rights reserved.
* @license GNU GPLv2 <http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>
* @link http://www.techjoomla.com
*/
defined('_JEXEC') or die('Restricted access');
/**
* To build page simple schema
*
* @since 1.8.8
*/
class PageSimpleSchema
{
public $id;
public $title;
public $alias;
public $state;
public $page_type;
public $cover_position;
public $creator_name;
public $friends;
public $isinvited;
public $description;
public $category_id;
public $category_name;
public $type;
public $avatar_large;
public $member_count;
public $hits;
public $created_by;
public $created_date;
public $album_count;
public $isowner;
public $ismember;
public $approval_pending;
public $cover;
public $more_info;
public $params;
public $admin_count;
}