-
Notifications
You must be signed in to change notification settings - Fork 0
/
tbs_location_entity.module
460 lines (412 loc) · 14.7 KB
/
tbs_location_entity.module
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
<?php
/**
* Implements hook_entity_info()
*/
function tbs_location_entity_entity_info() {
$return = array(
'tbs_location_entity' => array(
'label' => t('Travel Booking System Location'),
'plural label' => t('Travel Booking System Locations'),
'description' => t('Travel Booking System Locations Entity'),
'entity class' => 'TbsLocationEntity',
'controller class' => 'EntityAPIController',
'base table' => 'tbs_location_entity_cities',
'uri callback' => 'tbs_location_entity_uri',
'fieldable' => TRUE,
'entity keys' => array(
'id' => 'lid',
'bundle' => 'type',
'label' => 'label',
),
'static cache' => TRUE,
'bundles' => array(),
'bundle keys' => array(
'bundle' => 'type',
),
'view modes' => array(
'full' => array(
'label' => t('Full location Content'),
'custom settings' => FALSE,
),
'teaser' => array(
'label' => t('Teaser Location Content'),
'custom settings' => FALSE,
),
),
'module' => 'tbs_location_entity',
// 'views controller class' => 'TbsLocationEntityViewsController',
'metadata controller class' => 'TbsLocationEntityMetadataController',
'access callback' => 'tbs_location_entity_access',
),
);
$types = db_select('tbs_location_type', 'lo')
->fields('lo')
->execute()
->fetchAllAssoc('type');
foreach($types as $type => $info){
$return['tbs_location_entity']['bundels'][$type] = array(
'label' => $info->label,
'admin' => array(
'path' => 'admin/structure/locations/manage/%tbs_location_entity_type',
'real path' => 'admin/structure/locations/manage/' . $type,
'bundle argument' => 4,
'access arguments' => array('administer tbs location entity'),
),
);
}
// Support entity cache module
if(module_exists('entitycache')) {
$return['tbs_location_entity']['field cache'] = FALSE;
$return['tbs_location_entity']['entity cache'] = TRUE;
}
$return['tbs_location_entity_type'] = array(
'label' => t('Travel Booking System location entity type'),
'plural label' => t('Travel Bookins system location entity types'),
'entity class' => 'TbsLocationEntityType',
'controller class' => 'EntityAPIControllerExportable',
'base table' => 'tbs_location_type',
'fieldable' => FALSE,
'bundle of' => 'tbs_location_entity',
'exportable' => TRUE,
'entity keys' => array(
'id' => 'id',
'name' => 'type',
'label' => 'label',
),
'access callback' => 'tbs_location_entity_type_access',
'module' => 'tbs_location_entity',
'admin ui' => array(
'path' => 'admin/structure/locations',
'file' => 'includes/tbs_location_entity.admin.inc',
'controller class' => 'TBSLocationEntityTypeUIController',
),
);
return $return;
}
/**
* Implements hook_menu()
*/
function tbs_location_entity_menu(){
$items = array();
$items['tbslocation/add'] = array(
'title' => 'Add a Location',
'page callback' => 'tbs_location_entity_admin_add_page',
'access arguments' => array('administer tbs location entites'),
'file' => 'includes/tbs_location_entity_type.admin.inc',
'type' => MENU_LOCAL_ACTION,
'tab_parent' => 'location',
'tab_root' => 'location',
);
$tbslocation_uri = 'tbslocation/%tbs_location_entity';
$tbslocation_uri_argument_position = 1;
$items[$tbslocation_uri] = array(
'title callback' => 'entity_label',
'title argument' => array('tbs_locaiton_entity', $tbslocation_uri_argument_position),
'page callback' => 'tbs_location_entity_view',
'page arguments' => array($tbslocation_uri_argument_position),
'access callback' => 'entity_access',
'access arguments' => array('view', 'tbs_location_entity', $tbslocation_uri_argument_position),
'file' => 'tbs_location_entity.pages.inc',
);
$items[$tbslocation_uri . '/view'] = array(
'title' => 'View',
'type' => MENU_DEFAULT_LOCAL_TASK,
'weight' => -10,
);
$items[$tbslocation_uri . '/delete'] = array(
'title' => 'Delete location',
'title callback' => 'tbs_location_entity_label',
'title arguments' => array($tbslocation_uri_argument_position),
'page callback' => 'drupal_get_form',
'page arguments' => array('tbs_location_entity_delete_form', $tbslocation_uri_argument_position),
'access callback' => 'entity_access',
'access arguments' => array('edit', 'tbs_location_entity', $tbslocation_uri_argument_position),
'file' => 'includes/tbs_location_entity_type.admin.inc',
);
$items[$tbslocation_uri . '/edit'] = array(
'title' => 'Edit',
'page callback' => 'drupal_get_form',
'page arguments' => array('tbs_location_entity_form', $tbslocation_uri_argument_position),
'access callback' => 'entity_access',
'access arguments' => array('edit', 'tbs_location_entity', $tbslocation_uri_argument_position),
'file' => 'includes/tbs_location_type.admin.inc',
'type' => MENU_LOCAL_TASK,
'context' => MENU_CONTEXT_PAGE | MENU_CONTEXT_INLINE,
);
foreach(tbs_location_entity_get_types() as $type => $info) {
$items['tbslocation/add/' . $type] = array(
'title' => 'Add a location',
'page callback' => 'tbs_location_entity_add',
'page arguments' => array(2),
'access callback' => 'entity_access',
'access arguments' => array('create', 'tbs_location_entity', $type),
'file' => 'includes/tbs_location_entity_type.admin.inc',
);
}
$items['admin/structure/locations/%tbs_location_entity/delete'] = array(
'title' => 'Delete',
'page callback' => 'drupal_get_form',
'page arguments' => array('tbs_location_entity_type_form_delete_confirm', 4),
'access arguments' => array('administer tbs location entity type'),
'weight' => 1,
'type' => MENU_NORMAL_ITEM,
'file' => 'includes/tbs_location_type.admin.inc',
);
return $items;
}
/**
* Implements hook_permission()
*/
function tbs_location_entity_permission(){
$permissions = array(
'administer tbs location entites' => array(
'title' => t('Administer Travel Booking System Location Entity'),
'description' => t('Edit and view all Travel Booking System Location Entities.'),
),
'administer tbs location entity type' => array(
'title' => t('Administer Travel Booking System Location Emtity Type'),
'description' => t('Create and delete fields, and set their permissions.'),
),
);
foreach(tbs_location_entity_get_types() as $type) {
$type_name = check_plain($type);
$permissions += array(
"edit $type_name location entity" => array(
'title' => t('%type_name: Edit location entity', array('%type_name' => $type->label)),
),
"update $type_name location entity" => array(
'title' => t('%type_name: Update Location entity', array('%type_name' => $type->label)),
),
"delete $type_name location entity" => array(
'title' => t('%type_name: Delete Location entity', array('%type_name' => $type->label)),
),
);
}
return $permissions;
}
/**
* Gets an array of all location types, keyed by the type name.
*/
function tbs_location_entity_get_types($type_name = NULL) {
$types = entity_load_multiple_by_name('tbs_location_entity_type', isset($type_name) ? array($type_name) : FALSE);
return isset($type_name) ? reset($types) : $types;
}
/**
* Fetch a location Object
*/
function tbs_location_entity_load($lid, $reset = FALSE) {
$locations = tbs_location_entity_load_multiple(array($lid),array(),$reset);
return reset($locations);
}
/**
* Load Multiple location based on a certain Condition
*/
function tbs_location_entity_load_multiple($lids = array(), $conditions = array(), $reset = FALSE) {
return entity_load('tbs_location_entity', $lids, $conditions, $reset);
}
/**
* Deletes a location
*/
function tbs_location_entity_delete(TbsLocationEntity $loacation) {
$loacation->delete();
}
/**
* Deletes Multiple Locations
*/
function tbs_location_entity_delete_multiple(array $lids) {
entity_get_controller('tbs_location_entity')->delete($lids);
}
/**
* Save Locations
*/
function tbs_location_entity_save(TbsLocationEntity $location) {
return $location->save();
}
//function tbs_location_entity_save($locations) {
// entity_save('tbs_location_entity', $locations);
//}
function tbs_location_entity_new($type = '') {
return entity_get_controller('tbs_location_entity')->create($type);
}
/**
* Saves a location type to the db
*/
function tbs_location_entity_type_save(TbsLocationEntityType $LoctionType){
$LoctionType->save();
}
/**
* Deletes a location type
*/
function tbs_location_entity_type_delete(TbsLocationEntityType $LocationType){
$LocationType->delete();
}
function tbs_location_entity_tbs_location_entity_type_insert(TbsLocationEntityType $LocationType){
menu_rebuild();
}
function tbs_location_entity_tbs_location_entity_type_update(TbsLocationEntityType $LocationType){
menu_rebuild();
}
function tbs_location_entity_tbs_location_entity_type_delete($type){
if($lids = array_keys(tbs_location_entity_load_multiple(FALSE,array('type' => $type->type)))) {
tbs_location_entity_delete_multiple($lids);
}
menu_rebuild();
}
function tbs_location_entity_access($op, $location = NULL, $account = NULL ) {
if(user_access('administer tbs location entites', $account)){
return TRUE;
}
if($op == 'create' || $op == 'update'){
$op = 'edit';
}
$access = module_invoke_all('tbs_location_entity_access', $op, $location, $account);
if(in_array(FALSE, $access, TRUE)) {
return FALSE;
}
elseif(in_array(TRUE, $access, TRUE)) {
return TRUE;
}
return FALSE;
}
/**
* Acccess Callback for the entity API
*/
function tbs_location_entity_type_access($op, $type = NULL, $account = NULL){
if(user_access('administer tbs location entity type', $account)){
return TRUE;
}
if($op == 'create' || $op == 'update'){
$op = 'edit';
}
$access = module_invoke_all('tbs_location_entity_type_access', $op, $type, $account);
if (in_array(FALSE, $access, TRUE)) {
return FALSE;
}
elseif (in_array(TRUE, $access, TRUE)) {
return TRUE;
}
return FALSE;
}
/**
* Implements hook_theme()
*/
function tbs_location_entity_theme() {
return array(
'tbs_location_entity_admin_type' => array(
'variables' => array(
'label' => NULL,
'type' => NULL
),
),
'tbs_location_entity' => array(
'render element' => 'elements',
'template' => 'tbs_location_entity',
),
);
}
/**
* The class used for Travel booking system entities.
*/
class TbsLocationEntity extends Entity {
/**
* The Tbs Location Entity id
*/
public $lid;
/**
* The name of the location Type
*/
public $type;
/**
* The location label
*/
public $label;
/**
* The User id of the person who entered the location.
*/
public $uid;
/**
* The Unix timestam when the location was created.
*/
public $created;
/**
* The unix timestamp when the location was most recently saved.
*/
public $changed;
/**
* This is the constructor of the tbs location entities
*/
public function __construct($values = array()){
if(isset($values['user'])) {
$this->setUser($values['user']);
unset($values['user']);
}
if(isset($values['type']) && is_object($values['type'])) {
$values['type'] = $values['type']->type;
}
if(!isset($values['label']) && isset($values['type']) && $type = tbs_location_entity_get_types($values['type'])){
$values['label'] = $type->label;
}
parent::__construct($values, 'tbs_location_entity');
}
public function user() {
return user_load($this->uid);
}
public function setUser($account) {
$this->uid= is_object($account) ? $account->uid : $account;
}
public function type() {
return tbs_location_entity_get_types($this->type);
}
public function url() {
$uri = $this->uri();
return url($uri['path'], $uri);
}
public function path() {
$uri = $this->uri();
return $uri['path'];
}
public function defaultUri() {
return array(
'path' => 'location/' . $this->lid,
'options' => array('fragment' => 'location-' . $this->type),
);
}
public function buildContent($view_mode = 'full', $lancode = NULL) {
$content = array();
if(!empty($this->is_new)){
$content['empty']['#markup'] = '<em class="location-entity-no-data">' . t('There is no location data yet') . '</em>';
}
return entity_get_controller($this->entityType)->buildContent($this,$view_mode, $lancode, $content);
}
public function save() {
if(empty($this->created) && (!empty($this->is_new) || !$this->lid )){
$this->created = REQUEST_TIME;
}
$this->changed = REQUEST_TIME;
parent::save();
// Update the static cache from profile2_load_by_user().
//$cache = &drupal_static('profile2_load_by_user', array());
//if (isset($cache[$this->uid])) {
// $cache[$this->uid][$this->type] = $this->pid;
//}
}
}
class TbsLocationEntityType extends Entity {
/**
* Whether the locatio types should be modified by a user
*/
public $islocal = TRUE;
/**
* whether the location entity should be viewed by the user
*/
public $isforegin = FALSE;
public $type;
public $label;
public $weight = 0;
public function __construct($values = array()){
parent::__construct($values,'tbs_location_entity_type');
}
public function isLocked() {
return isset($this->status) && empty($this->is_new) && (($this->status & ENTITY_IN_CODE) || ($this->status & ENTITY_FIXED));
}
}