My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
LyraContent:
columns:
ctype_id:
type: integer(4)
notnull: true
path:
type: string(255)
params:
type: clob
meta_title:
type: string(255)
meta_descr:
type: string(500)
meta_keys:
type: string(500)
meta_robots:
type: string(255)
relations:
ContentType:
class: LyraContentType
local: ctype_id
foreign: id
foreignAlias: Contents
onDelete: CASCADE

LyraRoute:
tableName: routes
options:
collate: utf8_unicode_ci
charset: utf8
columns:
id:
type: integer(4)
primary: true
autoincrement: true
ctype_id:
type: integer(4)
notnull: true
name:
type: string(80)
action:
type: string(20)
params:
type: clob
relations:
RouteContentType:
class: LyraContentType
local: ctype_id
foreign: id
foreignAlias: ContentTypeRoutes
onDelete: CASCADE

LyraArticle:
tableName: articles
inheritance:
extends: LyraContent
type: concrete
actAs:
Timestampable: ~
lySluggable:
fields: [title]
canUpdate: true
unique: true
uniqueBy: [path]
indexName: article_slug
options:
collate: utf8_unicode_ci
charset: utf8
columns:
id:
type: integer(4)
primary: true
autoincrement: true
title:
type: string(255)
notnull: true
subtitle:
type: string(255)
summary:
type: clob
content:
type: clob
is_active:
type: boolean
notnull: true
default: false
is_featured:
type: boolean
notnull: true
default: false
is_sticky:
type: boolean
notnull: true
default: false
is_archived:
type: boolean
notnull: true
default: false
is_feeded:
type: boolean
notnull: true
default: false
publish_start:
type: timestamp
publish_end:
type: timestamp
status:
type: integer(1)
notnull: true
default: 0
created_by:
type: integer(4)
updated_by:
type: integer(4)
locked_by:
type: integer(4)
num_comments:
type: integer(4)
notnull: true
default: 0
num_active_comments:
type: integer(4)
notnull: true
default: 0
relations:
ArticleLabels:
class: LyraLabel
refClass: LyraArticleLabel
local: article_id
foreign: label_id
foreignAlias: LabelArticles
ArticleCreatedBy:
class: sfGuardUser
local: created_by
foreign: id
foreignAlias: CreatedArticles
ArticleUpdatedBy:
class: sfGuardUser
local: updated_by
foreign: id
foreignAlias: UpdatedArticles

LyraComment:
tableName: comments
actAs:
Timestampable: ~
options:
collate: utf8_unicode_ci
charset: utf8
columns:
id:
type: integer(4)
primary: true
autoincrement: true
article_id:
type: integer(4)
author_name:
type: string(255)
notnull: true
author_email:
type: string(255)
author_url:
type: string(255)
content:
type: clob(65532)
notnull: true
is_active:
type: boolean
notnull: true
default: false
created_by:
type: integer(4)
relations:
CommentArticle:
class: LyraArticle
local: article_id
foreign: id
foreignAlias: ArticleComments
onDelete: CASCADE
CommentCreatedBy:
class: sfGuardUser
local: created_by
foreign: id
foreignAlias: CreatedComments

LyraContentType:
tableName: content_types
actAs:
Timestampable: ~
options:
collate: utf8_unicode_ci
charset: utf8
columns:
id:
type: integer(4)
primary: true
autoincrement: true
type:
type: string(80)
notnull: true
unique: true
name:
type: string(255)
notnull: true
description:
type: string(4000)
model:
type: string(255)
module:
type: string(255)
plugin:
type: string(255)
item_slug:
type: string(80)
format:
type: string(4)
is_active:
type: boolean
notnull: true
default: false
params:
type: clob
relations:
ContentTypeCatalogs:
class: LyraCatalog
refClass: LyraContentTypeCatalog
local: ctype_id
foreign: catalog_id
foreignAlias: CatalogContentTypes

LyraLabel:
tableName: labels
actAs:
Timestampable: ~
Sluggable:
fields: [name]
canUpdate: true
unique: true
NestedSet:
hasManyRoots: true
rootColumnName: root_id
options:
collate: utf8_unicode_ci
charset: utf8
columns:
id:
type: integer(4)
primary: true
autoincrement: true
catalog_id:
type: integer(4)
name:
type: string(255)
notnull: true
title:
type: string(255)
description:
type: string(4000)
meta_title:
type: string(255)
meta_robots:
type: string(255)
meta_descr:
type: string(4000)
meta_keys:
type: string(4000)
is_active:
type: boolean
notnull: true
default: false
created_by:
type: integer(4)
updated_by:
type: integer(4)
relations:
LabelCatalog:
class: LyraCatalog
local: catalog_id
foreign: id
foreignAlias: CatalogLabels
onDelete: CASCADE
LabelCreatedBy:
class: sfGuardUser
local: created_by
foreign: id
foreignAlias: CreatedLabels
LabelUpdatedBy:
class: sfGuardUser
local: updated_by
foreign: id
foreignAlias: UpdatedLabels

LyraCatalog:
tableName: catalogs
actAs:
Timestampable: ~
options:
collate: utf8_unicode_ci
charset: utf8
columns:
id:
type: integer(4)
primary: true
autoincrement: true
name:
type: string(255)
notnull: true
description:
type: string(4000)
is_active:
type: boolean
notnull: true
default: false
locked_by:
type: integer(4)

LyraContentTypeCatalog:
tableName: content_type_catalog
options:
symfony:
form: false
filter: false
columns:
ctype_id:
type: integer(4)
primary: true
catalog_id:
type: integer(4)
primary: true
relations:
ContentType:
class: LyraContentType
local: ctype_id
foreign: id
onDelete: CASCADE
Catalog:
class: LyraCatalog
local: catalog_id
foreign: id
onDelete: CASCADE

LyraArticleLabel:
tableName: article_label
options:
symfony:
form: false
filter: false
columns:
article_id:
type: integer(4)
primary: true
label_id:
type: integer(4)
primary: true
relations:
Article:
class: LyraArticle
local: article_id
foreign: id
onDelete: CASCADE
Label:
class: LyraLabel
local: label_id
foreign: id
onDelete: CASCADE

LyraSettings:
tableName: settings
options:
collate: utf8_unicode_ci
charset: utf8
columns:
id:
type: integer(4)
primary: true
autoincrement: true
params:
type: clob

LyraUserProfile:
tableName: users
options:
collate: utf8_unicode_ci
charset: utf8
columns:
id:
type: integer(4)
primary: true
autoincrement: true
user_id:
type: integer(4)
first_name:
type: string(80)
last_name:
type: string(80)
email:
type: string(150)
is_verified:
type: boolean
notnull: true
default: false
vtoken:
type: string(255)
relations:
User:
class: sfGuardUser
local: user_id
foreign: id
type: one
foreignType: one
foreignAlias: Profile
onDelete: CASCADE

LyraMenu:
tableName: menus
actAs:
NestedSet:
hasManyRoots: true
rootColumnName: root_id
options:
collate: utf8_unicode_ci
charset: utf8
columns:
id:
type: integer(4)
primary: true
autoincrement: true
parent_id:
type: integer(4)
type:
type: string(20)
notnull: true
ctype_id:
type: integer(4)
object_id:
type: integer(4)
list_id:
type: integer(4)
name:
type: string(255)
notnull: true
params:
type: clob
relations:
MenuParent:
class: LyraMenu
local: parent_id
foreign: id
type: one
onDelete: SET NULL
MenuContentType:
class: LyraContentType
local: ctype_id
foreign: id
onDelete: CASCADE
MenuItemObject:
#TODO: class will be LyraContent
class: LyraArticle
local: object_id
foreign: id
onDelete: CASCADE
MenuItemList:
class: LyraRoute
local: list_id
foreign: id
onDelete: CASCADE

LyraPath:
tableName: paths
options:
collate: utf8_unicode_ci
charset: utf8
symfony:
form: false
filter: false
columns:
id:
type: integer(4)
primary: true
autoincrement: true
content_id:
type: integer(4)
ctype_id:
type: integer(4)
path:
type: string(255)
pattern:
type: string(255)
is_active:
type: boolean
notnull: true
default: false
indexes:
path_index:
fields: [path]
relations:
PathContentType:
class: LyraContentType
local: ctype_id
foreign: id
onDelete: CASCADE

Change log

r94 by gimassimo on Nov 30, 2010   Diff
Added relation to LyraRoute in LyraMenu
and made needed changes to LyraMenuForm.
Go to: 
Project members, sign in to write a code review

Older revisions

r91 by gimassimo on Nov 29, 2010   Diff
Removed some useless form and filter
classes, cleaned models.
r82 by gimassimo on Nov 12, 2010   Diff
Moved ContentType relation to
LyraContent class.
r81 by gimassimo on Nov 12, 2010   Diff
Moved metatags management functions to
LyraContent class.
All revisions of this file

File info

Size: 9808 bytes, 501 lines
Powered by Google Project Hosting