1
|
<?php
|
2
|
|
3
|
|
4
|
|
5
|
|
6
|
|
7
|
|
8
|
|
9
|
|
10
|
|
11
|
|
12
|
|
13
|
|
14
|
|
15
|
|
16
|
|
17
|
db_create_table('access', array(
|
18
|
'fields' => array(
|
19
|
'aid' => array(
|
20
|
'type' => 'serial',
|
21
|
'not null' => TRUE,
|
22
|
),
|
23
|
'mask' => array(
|
24
|
'type' => 'varchar',
|
25
|
'length' => 255,
|
26
|
'not null' => TRUE,
|
27
|
'default' => '',
|
28
|
),
|
29
|
'type' => array(
|
30
|
'type' => 'varchar',
|
31
|
'length' => 255,
|
32
|
'not null' => TRUE,
|
33
|
'default' => '',
|
34
|
),
|
35
|
'status' => array(
|
36
|
'type' => 'int',
|
37
|
'not null' => TRUE,
|
38
|
'default' => 0,
|
39
|
'size' => 'tiny',
|
40
|
),
|
41
|
),
|
42
|
'primary key' => array(
|
43
|
'aid',
|
44
|
),
|
45
|
'module' => 'user',
|
46
|
'name' => 'access',
|
47
|
));
|
48
|
|
49
|
db_create_table('actions', array(
|
50
|
'fields' => array(
|
51
|
'aid' => array(
|
52
|
'type' => 'varchar',
|
53
|
'length' => 255,
|
54
|
'not null' => TRUE,
|
55
|
'default' => '0',
|
56
|
),
|
57
|
'type' => array(
|
58
|
'type' => 'varchar',
|
59
|
'length' => 32,
|
60
|
'not null' => TRUE,
|
61
|
'default' => '',
|
62
|
),
|
63
|
'callback' => array(
|
64
|
'type' => 'varchar',
|
65
|
'length' => 255,
|
66
|
'not null' => TRUE,
|
67
|
'default' => '',
|
68
|
),
|
69
|
'parameters' => array(
|
70
|
'type' => 'text',
|
71
|
'not null' => TRUE,
|
72
|
'size' => 'big',
|
73
|
),
|
74
|
'description' => array(
|
75
|
'type' => 'varchar',
|
76
|
'length' => 255,
|
77
|
'not null' => TRUE,
|
78
|
'default' => '0',
|
79
|
),
|
80
|
),
|
81
|
'primary key' => array(
|
82
|
'aid',
|
83
|
),
|
84
|
'module' => 'system',
|
85
|
'name' => 'actions',
|
86
|
));
|
87
|
db_insert('actions')->fields(array(
|
88
|
'aid',
|
89
|
'type',
|
90
|
'callback',
|
91
|
'parameters',
|
92
|
'description',
|
93
|
))
|
94
|
->values(array(
|
95
|
'aid' => 'node_make_sticky_action',
|
96
|
'type' => 'node',
|
97
|
'callback' => 'node_make_sticky_action',
|
98
|
'parameters' => '',
|
99
|
'description' => 'Make post sticky',
|
100
|
))
|
101
|
->values(array(
|
102
|
'aid' => 'node_make_unsticky_action',
|
103
|
'type' => 'node',
|
104
|
'callback' => 'node_make_unsticky_action',
|
105
|
'parameters' => '',
|
106
|
'description' => 'Make post unsticky',
|
107
|
))
|
108
|
->values(array(
|
109
|
'aid' => 'node_promote_action',
|
110
|
'type' => 'node',
|
111
|
'callback' => 'node_promote_action',
|
112
|
'parameters' => '',
|
113
|
'description' => 'Promote post to front page',
|
114
|
))
|
115
|
->values(array(
|
116
|
'aid' => 'node_publish_action',
|
117
|
'type' => 'node',
|
118
|
'callback' => 'node_publish_action',
|
119
|
'parameters' => '',
|
120
|
'description' => 'Publish post',
|
121
|
))
|
122
|
->values(array(
|
123
|
'aid' => 'node_save_action',
|
124
|
'type' => 'node',
|
125
|
'callback' => 'node_save_action',
|
126
|
'parameters' => '',
|
127
|
'description' => 'Save post',
|
128
|
))
|
129
|
->values(array(
|
130
|
'aid' => 'node_unpromote_action',
|
131
|
'type' => 'node',
|
132
|
'callback' => 'node_unpromote_action',
|
133
|
'parameters' => '',
|
134
|
'description' => 'Remove post from front page',
|
135
|
))
|
136
|
->values(array(
|
137
|
'aid' => 'node_unpublish_action',
|
138
|
'type' => 'node',
|
139
|
'callback' => 'node_unpublish_action',
|
140
|
'parameters' => '',
|
141
|
'description' => 'Unpublish post',
|
142
|
))
|
143
|
->values(array(
|
144
|
'aid' => 'user_block_ip_action',
|
145
|
'type' => 'user',
|
146
|
'callback' => 'user_block_ip_action',
|
147
|
'parameters' => '',
|
148
|
'description' => 'Ban IP address of current user',
|
149
|
))
|
150
|
->values(array(
|
151
|
'aid' => 'user_block_user_action',
|
152
|
'type' => 'user',
|
153
|
'callback' => 'user_block_user_action',
|
154
|
'parameters' => '',
|
155
|
'description' => 'Block current user',
|
156
|
))
|
157
|
->execute();
|
158
|
|
159
|
db_create_table('actions_aid', array(
|
160
|
'fields' => array(
|
161
|
'aid' => array(
|
162
|
'type' => 'serial',
|
163
|
'unsigned' => TRUE,
|
164
|
'not null' => TRUE,
|
165
|
),
|
166
|
),
|
167
|
'primary key' => array(
|
168
|
'aid',
|
169
|
),
|
170
|
'module' => 'system',
|
171
|
'name' => 'actions_aid',
|
172
|
));
|
173
|
|
174
|
db_create_table('authmap', array(
|
175
|
'fields' => array(
|
176
|
'aid' => array(
|
177
|
'type' => 'serial',
|
178
|
'unsigned' => TRUE,
|
179
|
'not null' => TRUE,
|
180
|
),
|
181
|
'uid' => array(
|
182
|
'type' => 'int',
|
183
|
'not null' => TRUE,
|
184
|
'default' => 0,
|
185
|
),
|
186
|
'authname' => array(
|
187
|
'type' => 'varchar',
|
188
|
'length' => 128,
|
189
|
'not null' => TRUE,
|
190
|
'default' => '',
|
191
|
),
|
192
|
'module' => array(
|
193
|
'type' => 'varchar',
|
194
|
'length' => 128,
|
195
|
'not null' => TRUE,
|
196
|
'default' => '',
|
197
|
),
|
198
|
),
|
199
|
'unique keys' => array(
|
200
|
'authname' => array(
|
201
|
'authname',
|
202
|
),
|
203
|
),
|
204
|
'primary key' => array(
|
205
|
'aid',
|
206
|
),
|
207
|
'module' => 'user',
|
208
|
'name' => 'authmap',
|
209
|
));
|
210
|
|
211
|
db_create_table('batch', array(
|
212
|
'fields' => array(
|
213
|
'bid' => array(
|
214
|
'type' => 'serial',
|
215
|
'unsigned' => TRUE,
|
216
|
'not null' => TRUE,
|
217
|
),
|
218
|
'token' => array(
|
219
|
'type' => 'varchar',
|
220
|
'length' => 64,
|
221
|
'not null' => TRUE,
|
222
|
),
|
223
|
'timestamp' => array(
|
224
|
'type' => 'int',
|
225
|
'not null' => TRUE,
|
226
|
),
|
227
|
'batch' => array(
|
228
|
'type' => 'text',
|
229
|
'not null' => FALSE,
|
230
|
'size' => 'big',
|
231
|
),
|
232
|
),
|
233
|
'primary key' => array(
|
234
|
'bid',
|
235
|
),
|
236
|
'indexes' => array(
|
237
|
'token' => array(
|
238
|
'token',
|
239
|
),
|
240
|
),
|
241
|
'module' => 'system',
|
242
|
'name' => 'batch',
|
243
|
));
|
244
|
|
245
|
db_create_table('blocks', array(
|
246
|
'fields' => array(
|
247
|
'bid' => array(
|
248
|
'type' => 'serial',
|
249
|
'not null' => TRUE,
|
250
|
),
|
251
|
'module' => array(
|
252
|
'type' => 'varchar',
|
253
|
'length' => 64,
|
254
|
'not null' => TRUE,
|
255
|
'default' => '',
|
256
|
),
|
257
|
'delta' => array(
|
258
|
'type' => 'varchar',
|
259
|
'length' => 32,
|
260
|
'not null' => TRUE,
|
261
|
'default' => '0',
|
262
|
),
|
263
|
'theme' => array(
|
264
|
'type' => 'varchar',
|
265
|
'length' => 64,
|
266
|
'not null' => TRUE,
|
267
|
'default' => '',
|
268
|
),
|
269
|
'status' => array(
|
270
|
'type' => 'int',
|
271
|
'not null' => TRUE,
|
272
|
'default' => 0,
|
273
|
'size' => 'tiny',
|
274
|
),
|
275
|
'weight' => array(
|
276
|
'type' => 'int',
|
277
|
'not null' => TRUE,
|
278
|
'default' => 0,
|
279
|
'size' => 'tiny',
|
280
|
),
|
281
|
'region' => array(
|
282
|
'type' => 'varchar',
|
283
|
'length' => 64,
|
284
|
'not null' => TRUE,
|
285
|
'default' => '',
|
286
|
),
|
287
|
'custom' => array(
|
288
|
'type' => 'int',
|
289
|
'not null' => TRUE,
|
290
|
'default' => 0,
|
291
|
'size' => 'tiny',
|
292
|
),
|
293
|
'throttle' => array(
|
294
|
'type' => 'int',
|
295
|
'not null' => TRUE,
|
296
|
'default' => 0,
|
297
|
'size' => 'tiny',
|
298
|
),
|
299
|
'visibility' => array(
|
300
|
'type' => 'int',
|
301
|
'not null' => TRUE,
|
302
|
'default' => 0,
|
303
|
'size' => 'tiny',
|
304
|
),
|
305
|
'pages' => array(
|
306
|
'type' => 'text',
|
307
|
'not null' => TRUE,
|
308
|
),
|
309
|
'title' => array(
|
310
|
'type' => 'varchar',
|
311
|
'length' => 64,
|
312
|
'not null' => TRUE,
|
313
|
'default' => '',
|
314
|
),
|
315
|
'cache' => array(
|
316
|
'type' => 'int',
|
317
|
'not null' => TRUE,
|
318
|
'default' => 1,
|
319
|
'size' => 'tiny',
|
320
|
),
|
321
|
),
|
322
|
'primary key' => array(
|
323
|
'bid',
|
324
|
),
|
325
|
'unique keys' => array(
|
326
|
'tmd' => array(
|
327
|
'theme',
|
328
|
'module',
|
329
|
'delta',
|
330
|
),
|
331
|
),
|
332
|
'indexes' => array(
|
333
|
'list' => array(
|
334
|
'theme',
|
335
|
'status',
|
336
|
'region',
|
337
|
'weight',
|
338
|
'module',
|
339
|
),
|
340
|
),
|
341
|
'module' => 'block',
|
342
|
'name' => 'blocks',
|
343
|
));
|
344
|
db_insert('blocks')->fields(array(
|
345
|
'bid',
|
346
|
'module',
|
347
|
'delta',
|
348
|
'theme',
|
349
|
'status',
|
350
|
'weight',
|
351
|
'region',
|
352
|
'custom',
|
353
|
'throttle',
|
354
|
'visibility',
|
355
|
'pages',
|
356
|
'title',
|
357
|
'cache',
|
358
|
))
|
359
|
->values(array(
|
360
|
'bid' => '1',
|
361
|
'module' => 'user',
|
362
|
'delta' => '0',
|
363
|
'theme' => 'garland',
|
364
|
'status' => '1',
|
365
|
'weight' => '0',
|
366
|
'region' => 'left',
|
367
|
'custom' => '0',
|
368
|
'throttle' => '0',
|
369
|
'visibility' => '0',
|
370
|
'pages' => '',
|
371
|
'title' => '',
|
372
|
'cache' => '-1',
|
373
|
))
|
374
|
->values(array(
|
375
|
'bid' => '2',
|
376
|
'module' => 'user',
|
377
|
'delta' => '1',
|
378
|
'theme' => 'garland',
|
379
|
'status' => '1',
|
380
|
'weight' => '0',
|
381
|
'region' => 'left',
|
382
|
'custom' => '0',
|
383
|
'throttle' => '0',
|
384
|
'visibility' => '0',
|
385
|
'pages' => '',
|
386
|
'title' => '',
|
387
|
'cache' => '-1',
|
388
|
))
|
389
|
->values(array(
|
390
|
'bid' => '3',
|
391
|
'module' => 'system',
|
392
|
'delta' => '0',
|
393
|
'theme' => 'garland',
|
394
|
'status' => '1',
|
395
|
'weight' => '10',
|
396
|
'region' => 'footer',
|
397
|
'custom' => '0',
|
398
|
'throttle' => '0',
|
399
|
'visibility' => '0',
|
400
|
'pages' => '',
|
401
|
'title' => '',
|
402
|
'cache' => '-1',
|
403
|
))
|
404
|
->execute();
|
405
|
|
406
|
db_create_table('blocks_roles', array(
|
407
|
'fields' => array(
|
408
|
'module' => array(
|
409
|
'type' => 'varchar',
|
410
|
'length' => 64,
|
411
|
'not null' => TRUE,
|
412
|
),
|
413
|
'delta' => array(
|
414
|
'type' => 'varchar',
|
415
|
'length' => 32,
|
416
|
'not null' => TRUE,
|
417
|
),
|
418
|
'rid' => array(
|
419
|
'type' => 'int',
|
420
|
'unsigned' => TRUE,
|
421
|
'not null' => TRUE,
|
422
|
),
|
423
|
),
|
424
|
'primary key' => array(
|
425
|
'module',
|
426
|
'delta',
|
427
|
'rid',
|
428
|
),
|
429
|
'indexes' => array(
|
430
|
'rid' => array(
|
431
|
'rid',
|
432
|
),
|
433
|
),
|
434
|
'module' => 'block',
|
435
|
'name' => 'blocks_roles',
|
436
|
));
|
437
|
|
438
|
db_create_table('boxes', array(
|
439
|
'fields' => array(
|
440
|
'bid' => array(
|
441
|
'type' => 'serial',
|
442
|
'unsigned' => TRUE,
|
443
|
'not null' => TRUE,
|
444
|
),
|
445
|
'body' => array(
|
446
|
'type' => 'text',
|
447
|
'not null' => FALSE,
|
448
|
'size' => 'big',
|
449
|
),
|
450
|
'info' => array(
|
451
|
'type' => 'varchar',
|
452
|
'length' => 128,
|
453
|
'not null' => TRUE,
|
454
|
'default' => '',
|
455
|
),
|
456
|
'format' => array(
|
457
|
'type' => 'int',
|
458
|
'size' => 'small',
|
459
|
'not null' => TRUE,
|
460
|
'default' => 0,
|
461
|
),
|
462
|
),
|
463
|
'unique keys' => array(
|
464
|
'info' => array(
|
465
|
'info',
|
466
|
),
|
467
|
),
|
468
|
'primary key' => array(
|
469
|
'bid',
|
470
|
),
|
471
|
'module' => 'block',
|
472
|
'name' => 'boxes',
|
473
|
));
|
474
|
|
475
|
db_create_table('cache', array(
|
476
|
'fields' => array(
|
477
|
'cid' => array(
|
478
|
'type' => 'varchar',
|
479
|
'length' => 255,
|
480
|
'not null' => TRUE,
|
481
|
'default' => '',
|
482
|
),
|
483
|
'data' => array(
|
484
|
'type' => 'blob',
|
485
|
'not null' => FALSE,
|
486
|
'size' => 'big',
|
487
|
),
|
488
|
'expire' => array(
|
489
|
'type' => 'int',
|
490
|
'not null' => TRUE,
|
491
|
'default' => 0,
|
492
|
),
|
493
|
'created' => array(
|
494
|
'type' => 'int',
|
495
|
'not null' => TRUE,
|
496
|
'default' => 0,
|
497
|
),
|
498
|
'headers' => array(
|
499
|
'type' => 'text',
|
500
|
'not null' => FALSE,
|
501
|
),
|
502
|
'serialized' => array(
|
503
|
'type' => 'int',
|
504
|
'size' => 'small',
|
505
|
'not null' => TRUE,
|
506
|
'default' => 0,
|
507
|
),
|
508
|
),
|
509
|
'indexes' => array(
|
510
|
'expire' => array(
|
511
|
'expire',
|
512
|
),
|
513
|
),
|
514
|
'primary key' => array(
|
515
|
'cid',
|
516
|
),
|
517
|
'module' => 'system',
|
518
|
'name' => 'cache',
|
519
|
));
|
520
|
|
521
|
db_create_table('cache_block', array(
|
522
|
'fields' => array(
|
523
|
'cid' => array(
|
524
|
'type' => 'varchar',
|
525
|
'length' => 255,
|
526
|
'not null' => TRUE,
|
527
|
'default' => '',
|
528
|
),
|
529
|
'data' => array(
|
530
|
'type' => 'blob',
|
531
|
'not null' => FALSE,
|
532
|
'size' => 'big',
|
533
|
),
|
534
|
'expire' => array(
|
535
|
'type' => 'int',
|
536
|
'not null' => TRUE,
|
537
|
'default' => 0,
|
538
|
),
|
539
|
'created' => array(
|
540
|
'type' => 'int',
|
541
|
'not null' => TRUE,
|
542
|
'default' => 0,
|
543
|
),
|
544
|
'headers' => array(
|
545
|
'type' => 'text',
|
546
|
'not null' => FALSE,
|
547
|
),
|
548
|
'serialized' => array(
|
549
|
'type' => 'int',
|
550
|
'size' => 'small',
|
551
|
'not null' => TRUE,
|
552
|
'default' => 0,
|
553
|
),
|
554
|
),
|
555
|
'indexes' => array(
|
556
|
'expire' => array(
|
557
|
'expire',
|
558
|
),
|
559
|
),
|
560
|
'primary key' => array(
|
561
|
'cid',
|
562
|
),
|
563
|
'module' => 'block',
|
564
|
'name' => 'cache_block',
|
565
|
));
|
566
|
|
567
|
db_create_table('cache_filter', array(
|
568
|
'fields' => array(
|
569
|
'cid' => array(
|
570
|
'type' => 'varchar',
|
571
|
'length' => 255,
|
572
|
'not null' => TRUE,
|
573
|
'default' => '',
|
574
|
),
|
575
|
'data' => array(
|
576
|
'type' => 'blob',
|
577
|
'not null' => FALSE,
|
578
|
'size' => 'big',
|
579
|
),
|
580
|
'expire' => array(
|
581
|
'type' => 'int',
|
582
|
'not null' => TRUE,
|
583
|
'default' => 0,
|
584
|
),
|
585
|
'created' => array(
|
586
|
'type' => 'int',
|
587
|
'not null' => TRUE,
|
588
|
'default' => 0,
|
589
|
),
|
590
|
'headers' => array(
|
591
|
'type' => 'text',
|
592
|
'not null' => FALSE,
|
593
|
),
|
594
|
'serialized' => array(
|
595
|
'type' => 'int',
|
596
|
'size' => 'small',
|
597
|
'not null' => TRUE,
|
598
|
'default' => 0,
|
599
|
),
|
600
|
),
|
601
|
'indexes' => array(
|
602
|
'expire' => array(
|
603
|
'expire',
|
604
|
),
|
605
|
),
|
606
|
'primary key' => array(
|
607
|
'cid',
|
608
|
),
|
609
|
'module' => 'filter',
|
610
|
'name' => 'cache_filter',
|
611
|
));
|
612
|
|
613
|
db_create_table('cache_form', array(
|
614
|
'fields' => array(
|
615
|
'cid' => array(
|
616
|
'type' => 'varchar',
|
617
|
'length' => 255,
|
618
|
'not null' => TRUE,
|
619
|
'default' => '',
|
620
|
),
|
621
|
'data' => array(
|
622
|
'type' => 'blob',
|
623
|
'not null' => FALSE,
|
624
|
'size' => 'big',
|
625
|
),
|
626
|
'expire' => array(
|
627
|
'type' => 'int',
|
628
|
'not null' => TRUE,
|
629
|
'default' => 0,
|
630
|
),
|
631
|
'created' => array(
|
632
|
'type' => 'int',
|
633
|
'not null' => TRUE,
|
634
|
'default' => 0,
|
635
|
),
|
636
|
'headers' => array(
|
637
|
'type' => 'text',
|
638
|
'not null' => FALSE,
|
639
|
),
|
640
|
'serialized' => array(
|
641
|
'type' => 'int',
|
642
|
'size' => 'small',
|
643
|
'not null' => TRUE,
|
644
|
'default' => 0,
|
645
|
),
|
646
|
),
|
647
|
'indexes' => array(
|
648
|
'expire' => array(
|
649
|
'expire',
|
650
|
),
|
651
|
),
|
652
|
'primary key' => array(
|
653
|
'cid',
|
654
|
),
|
655
|
'module' => 'system',
|
656
|
'name' => 'cache_form',
|
657
|
));
|
658
|
|
659
|
db_create_table('cache_menu', array(
|
660
|
'fields' => array(
|
661
|
'cid' => array(
|
662
|
'type' => 'varchar',
|
663
|
'length' => 255,
|
664
|
'not null' => TRUE,
|
665
|
'default' => '',
|
666
|
),
|
667
|
'data' => array(
|
668
|
'type' => 'blob',
|
669
|
'not null' => FALSE,
|
670
|
'size' => 'big',
|
671
|
),
|
672
|
'expire' => array(
|
673
|
'type' => 'int',
|
674
|
'not null' => TRUE,
|
675
|
'default' => 0,
|
676
|
),
|
677
|
'created' => array(
|
678
|
'type' => 'int',
|
679
|
'not null' => TRUE,
|
680
|
'default' => 0,
|
681
|
),
|
682
|
'headers' => array(
|
683
|
'type' => 'text',
|
684
|
'not null' => FALSE,
|
685
|
),
|
686
|
'serialized' => array(
|
687
|
'type' => 'int',
|
688
|
'size' => 'small',
|
689
|
'not null' => TRUE,
|
690
|
'default' => 0,
|
691
|
),
|
692
|
),
|
693
|
'indexes' => array(
|
694
|
'expire' => array(
|
695
|
'expire',
|
696
|
),
|
697
|
),
|
698
|
'primary key' => array(
|
699
|
'cid',
|
700
|
),
|
701
|
'module' => 'system',
|
702
|
'name' => 'cache_menu',
|
703
|
));
|
704
|
|
705
|
db_create_table('cache_page', array(
|
706
|
'fields' => array(
|
707
|
'cid' => array(
|
708
|
'type' => 'varchar',
|
709
|
'length' => 255,
|
710
|
'not null' => TRUE,
|
711
|
'default' => '',
|
712
|
),
|
713
|
'data' => array(
|
714
|
'type' => 'blob',
|
715
|
'not null' => FALSE,
|
716
|
'size' => 'big',
|
717
|
),
|
718
|
'expire' => array(
|
719
|
'type' => 'int',
|
720
|
'not null' => TRUE,
|
721
|
'default' => 0,
|
722
|
),
|
723
|
'created' => array(
|
724
|
'type' => 'int',
|
725
|
'not null' => TRUE,
|
726
|
'default' => 0,
|
727
|
),
|
728
|
'headers' => array(
|
729
|
'type' => 'text',
|
730
|
'not null' => FALSE,
|
731
|
),
|
732
|
'serialized' => array(
|
733
|
'type' => 'int',
|
734
|
'size' => 'small',
|
735
|
'not null' => TRUE,
|
736
|
'default' => 0,
|
737
|
),
|
738
|
),
|
739
|
'indexes' => array(
|
740
|
'expire' => array(
|
741
|
'expire',
|
742
|
),
|
743
|
),
|
744
|
'primary key' => array(
|
745
|
'cid',
|
746
|
),
|
747
|
'module' => 'system',
|
748
|
'name' => 'cache_page',
|
749
|
));
|
750
|
|
751
|
db_create_table('cache_update', array(
|
752
|
'fields' => array(
|
753
|
'cid' => array(
|
754
|
'type' => 'varchar',
|
755
|
'length' => 255,
|
756
|
'not null' => TRUE,
|
757
|
'default' => '',
|
758
|
),
|
759
|
'data' => array(
|
760
|
'type' => 'blob',
|
761
|
'not null' => FALSE,
|
762
|
'size' => 'big',
|
763
|
),
|
764
|
'expire' => array(
|
765
|
'type' => 'int',
|
766
|
'not null' => TRUE,
|
767
|
'default' => 0,
|
768
|
),
|
769
|
'created' => array(
|
770
|
'type' => 'int',
|
771
|
'not null' => TRUE,
|
772
|
'default' => 0,
|
773
|
),
|
774
|
'headers' => array(
|
775
|
'type' => 'text',
|
776
|
'not null' => FALSE,
|
777
|
),
|
778
|
'serialized' => array(
|
779
|
'type' => 'int',
|
780
|
'size' => 'small',
|
781
|
'not null' => TRUE,
|
782
|
'default' => 0,
|
783
|
),
|
784
|
),
|
785
|
'indexes' => array(
|
786
|
'expire' => array(
|
787
|
'expire',
|
788
|
),
|
789
|
),
|
790
|
'primary key' => array(
|
791
|
'cid',
|
792
|
),
|
793
|
'module' => 'update',
|
794
|
'name' => 'cache_update',
|
795
|
));
|
796
|
|
797
|
db_create_table('files', array(
|
798
|
'fields' => array(
|
799
|
'fid' => array(
|
800
|
'type' => 'serial',
|
801
|
'unsigned' => TRUE,
|
802
|
'not null' => TRUE,
|
803
|
),
|
804
|
'uid' => array(
|
805
|
'type' => 'int',
|
806
|
'unsigned' => TRUE,
|
807
|
'not null' => TRUE,
|
808
|
'default' => 0,
|
809
|
),
|
810
|
'filename' => array(
|
811
|
'type' => 'varchar',
|
812
|
'length' => 255,
|
813
|
'not null' => TRUE,
|
814
|
'default' => '',
|
815
|
),
|
816
|
'filepath' => array(
|
817
|
'type' => 'varchar',
|
818
|
'length' => 255,
|
819
|
'not null' => TRUE,
|
820
|
'default' => '',
|
821
|
),
|
822
|
'filemime' => array(
|
823
|
'type' => 'varchar',
|
824
|
'length' => 255,
|
825
|
'not null' => TRUE,
|
826
|
'default' => '',
|
827
|
),
|
828
|
'filesize' => array(
|
829
|
'type' => 'int',
|
830
|
'unsigned' => TRUE,
|
831
|
'not null' => TRUE,
|
832
|
'default' => 0,
|
833
|
),
|
834
|
'status' => array(
|
835
|
'type' => 'int',
|
836
|
'not null' => TRUE,
|
837
|
'default' => 0,
|
838
|
),
|
839
|
'timestamp' => array(
|
840
|
'type' => 'int',
|
841
|
'unsigned' => TRUE,
|
842
|
'not null' => TRUE,
|
843
|
'default' => 0,
|
844
|
),
|
845
|
),
|
846
|
'indexes' => array(
|
847
|
'uid' => array(
|
848
|
'uid',
|
849
|
),
|
850
|
'status' => array(
|
851
|
'status',
|
852
|
),
|
853
|
'timestamp' => array(
|
854
|
'timestamp',
|
855
|
),
|
856
|
),
|
857
|
'primary key' => array(
|
858
|
'fid',
|
859
|
),
|
860
|
'module' => 'system',
|
861
|
'name' => 'files',
|
862
|
));
|
863
|
|
864
|
db_create_table('filter_formats', array(
|
865
|
'fields' => array(
|
866
|
'format' => array(
|
867
|
'type' => 'serial',
|
868
|
'not null' => TRUE,
|
869
|
),
|
870
|
'name' => array(
|
871
|
'type' => 'varchar',
|
872
|
'length' => 255,
|
873
|
'not null' => TRUE,
|
874
|
'default' => '',
|
875
|
),
|
876
|
'roles' => array(
|
877
|
'type' => 'varchar',
|
878
|
'length' => 255,
|
879
|
'not null' => TRUE,
|
880
|
'default' => '',
|
881
|
),
|
882
|
'cache' => array(
|
883
|
'type' => 'int',
|
884
|
'not null' => TRUE,
|
885
|
'default' => 0,
|
886
|
'size' => 'tiny',
|
887
|
),
|
888
|
),
|
889
|
'primary key' => array(
|
890
|
'format',
|
891
|
),
|
892
|
'unique keys' => array(
|
893
|
'name' => array(
|
894
|
'name',
|
895
|
),
|
896
|
),
|
897
|
'module' => 'filter',
|
898
|
'name' => 'filter_formats',
|
899
|
));
|
900
|
db_insert('filter_formats')->fields(array(
|
901
|
'format',
|
902
|
'name',
|
903
|
'roles',
|
904
|
'cache',
|
905
|
))
|
906
|
->values(array(
|
907
|
'format' => '1',
|
908
|
'name' => 'Filtered HTML',
|
909
|
'roles' => ',1,2,',
|
910
|
'cache' => '1',
|
911
|
))
|
912
|
->values(array(
|
913
|
'format' => '2',
|
914
|
'name' => 'Full HTML',
|
915
|
'roles' => '',
|
916
|
'cache' => '1',
|
917
|
))
|
918
|
->execute();
|
919
|
|
920
|
db_create_table('filters', array(
|
921
|
'fields' => array(
|
922
|
'fid' => array(
|
923
|
'type' => 'serial',
|
924
|
'not null' => TRUE,
|
925
|
),
|
926
|
'format' => array(
|
927
|
'type' => 'int',
|
928
|
'not null' => TRUE,
|
929
|
'default' => 0,
|
930
|
),
|
931
|
'module' => array(
|
932
|
'type' => 'varchar',
|
933
|
'length' => 64,
|
934
|
'not null' => TRUE,
|
935
|
'default' => '',
|
936
|
),
|
937
|
'delta' => array(
|
938
|
'type' => 'int',
|
939
|
'not null' => TRUE,
|
940
|
'default' => 0,
|
941
|
'size' => 'tiny',
|
942
|
),
|
943
|
'weight' => array(
|
944
|
'type' => 'int',
|
945
|
'not null' => TRUE,
|
946
|
'default' => 0,
|
947
|
'size' => 'tiny',
|
948
|
),
|
949
|
),
|
950
|
'primary key' => array(
|
951
|
'fid',
|
952
|
),
|
953
|
'unique keys' => array(
|
954
|
'fmd' => array(
|
955
|
'format',
|
956
|
'module',
|
957
|
'delta',
|
958
|
),
|
959
|
),
|
960
|
'indexes' => array(
|
961
|
'list' => array(
|
962
|
'format',
|
963
|
'weight',
|
964
|
'module',
|
965
|
'delta',
|
966
|
),
|
967
|
),
|
968
|
'module' => 'filter',
|
969
|
'name' => 'filters',
|
970
|
));
|
971
|
db_insert('filters')->fields(array(
|
972
|
'fid',
|
973
|
'format',
|
974
|
'module',
|
975
|
'delta',
|
976
|
'weight',
|
977
|
))
|
978
|
->values(array(
|
979
|
'fid' => '1',
|
980
|
'format' => '1',
|
981
|
'module' => 'filter',
|
982
|
'delta' => '2',
|
983
|
'weight' => '0',
|
984
|
))
|
985
|
->values(array(
|
986
|
'fid' => '2',
|
987
|
'format' => '1',
|
988
|
'module' => 'filter',
|
989
|
'delta' => '0',
|
990
|
'weight' => '1',
|
991
|
))
|
992
|
->values(array(
|
993
|
'fid' => '3',
|
994
|
'format' => '1',
|
995
|
'module' => 'filter',
|
996
|
'delta' => '1',
|
997
|
'weight' => '2',
|
998
|
))
|
999
|
->values(array(
|
1000
|
'fid' => '4',
|
1001
|
'format' => '1',
|
1002
|
'module' => 'filter',
|
1003
|
'delta' => '3',
|
1004
|
'weight' => '10',
|
1005
|
))
|
1006
|
->values(array(
|
1007
|
'fid' => '5',
|
1008
|
'format' => '2',
|
1009
|
'module' => 'filter',
|
1010
|
'delta' => '2',
|
1011
|
'weight' => '0',
|
1012
|
))
|
1013
|
->values(array(
|
1014
|
'fid' => '6',
|
1015
|
'format' => '2',
|
1016
|
'module' => 'filter',
|
1017
|
'delta' => '1',
|
1018
|
'weight' => '1',
|
1019
|
))
|
1020
|
->values(array(
|
1021
|
'fid' => '7',
|
1022
|
'format' => '2',
|
1023
|
'module' => 'filter',
|
1024
|
'delta' => '3',
|
1025
|
'weight' => '10',
|
1026
|
))
|
1027
|
->execute();
|
1028
|
|
1029
|
db_create_table('flood', array(
|
1030
|
'fields' => array(
|
1031
|
'fid' => array(
|
1032
|
'type' => 'serial',
|
1033
|
'not null' => TRUE,
|
1034
|
),
|
1035
|
'event' => array(
|
1036
|
'type' => 'varchar',
|
1037
|
'length' => 64,
|
1038
|
'not null' => TRUE,
|
1039
|
'default' => '',
|
1040
|
),
|
1041
|
'hostname' => array(
|
1042
|
'type' => 'varchar',
|
1043
|
'length' => 128,
|
1044
|
'not null' => TRUE,
|
1045
|
'default' => '',
|
1046
|
),
|
1047
|
'timestamp' => array(
|
1048
|
'type' => 'int',
|
1049
|
'not null' => TRUE,
|
1050
|
'default' => 0,
|
1051
|
),
|
1052
|
),
|
1053
|
'primary key' => array(
|
1054
|
'fid',
|
1055
|
),
|
1056
|
'indexes' => array(
|
1057
|
'allow' => array(
|
1058
|
'event',
|
1059
|
'hostname',
|
1060
|
'timestamp',
|
1061
|
),
|
1062
|
),
|
1063
|
'module' => 'system',
|
1064
|
'name' => 'flood',
|
1065
|
));
|
1066
|
|
1067
|
db_create_table('history', array(
|
1068
|
'fields' => array(
|
1069
|
'uid' => array(
|
1070
|
'type' => 'int',
|
1071
|
'not null' => TRUE,
|
1072
|
'default' => 0,
|
1073
|
),
|
1074
|
'nid' => array(
|
1075
|
'type' => 'int',
|
1076
|
'not null' => TRUE,
|
1077
|
'default' => 0,
|
1078
|
),
|
1079
|
'timestamp' => array(
|
1080
|
'type' => 'int',
|
1081
|
'not null' => TRUE,
|
1082
|
'default' => 0,
|
1083
|
),
|
1084
|
),
|
1085
|
'primary key' => array(
|
1086
|
'uid',
|
1087
|
'nid',
|
1088
|
),
|
1089
|
'indexes' => array(
|
1090
|
'nid' => array(
|
1091
|
'nid',
|
1092
|
),
|
1093
|
),
|
1094
|
'module' => 'system',
|
1095
|
'name' => 'history',
|
1096
|
));
|
1097
|
|
1098
|
db_create_table('menu_links', array(
|
1099
|
'fields' => array(
|
1100
|
'menu_name' => array(
|
1101
|
'type' => 'varchar',
|
1102
|
'length' => 32,
|
1103
|
'not null' => TRUE,
|
1104
|
'default' => '',
|
1105
|
),
|
1106
|
'mlid' => array(
|
1107
|
'type' => 'serial',
|
1108
|
'unsigned' => TRUE,
|
1109
|
'not null' => TRUE,
|
1110
|
),
|
1111
|
'plid' => array(
|
1112
|
'type' => 'int',
|
1113
|
'unsigned' => TRUE,
|
1114
|
'not null' => TRUE,
|
1115
|
'default' => 0,
|
1116
|
),
|
1117
|
'link_path' => array(
|
1118
|
'type' => 'varchar',
|
1119
|
'length' => 255,
|
1120
|
'not null' => TRUE,
|
1121
|
'default' => '',
|
1122
|
),
|
1123
|
'router_path' => array(
|
1124
|
'type' => 'varchar',
|
1125
|
'length' => 255,
|
1126
|
'not null' => TRUE,
|
1127
|
'default' => '',
|
1128
|
),
|
1129
|
'link_title' => array(
|
1130
|
'type' => 'varchar',
|
1131
|
'length' => 255,
|
1132
|
'not null' => TRUE,
|
1133
|
'default' => '',
|
1134
|
),
|
1135
|
'options' => array(
|
1136
|
'type' => 'text',
|
1137
|
'not null' => FALSE,
|
1138
|
),
|
1139
|
'module' => array(
|
1140
|
'type' => 'varchar',
|
1141
|
'length' => 255,
|
1142
|
'not null' => TRUE,
|
1143
|
'default' => 'system',
|
1144
|
),
|
1145
|
'hidden' => array(
|
1146
|
'type' => 'int',
|
1147
|
'not null' => TRUE,
|
1148
|
'default' => 0,
|
1149
|
'size' => 'small',
|
1150
|
),
|
1151
|
'external' => array(
|
1152
|
'type' => 'int',
|
1153
|
'not null' => TRUE,
|
1154
|
'default' => 0,
|
1155
|
'size' => 'small',
|
1156
|
),
|
1157
|
'has_children' => array(
|
1158
|
'type' => 'int',
|
1159
|
'not null' => TRUE,
|
1160
|
'default' => 0,
|
1161
|
'size' => 'small',
|
1162
|
),
|
1163
|
'expanded' => array(
|
1164
|
'type' => 'int',
|
1165
|
'not null' => TRUE,
|
1166
|
'default' => 0,
|
1167
|
'size' => 'small',
|
1168
|
),
|
1169
|
'weight' => array(
|
1170
|
'type' => 'int',
|
1171
|
'not null' => TRUE,
|
1172
|
'default' => 0,
|
1173
|
),
|
1174
|
'depth' => array(
|
1175
|
'type' => 'int',
|
1176
|
'not null' => TRUE,
|
1177
|
'default' => 0,
|
1178
|
'size' => 'small',
|
1179
|
),
|
1180
|
'customized' => array(
|
1181
|
'type' => 'int',
|
1182
|
'not null' => TRUE,
|
1183
|
'default' => 0,
|
1184
|
'size' => 'small',
|
1185
|
),
|
1186
|
'p1' => array(
|
1187
|
'type' => 'int',
|
1188
|
'unsigned' => TRUE,
|
1189
|
'not null' => TRUE,
|
1190
|
'default' => 0,
|
1191
|
),
|
1192
|
'p2' => array(
|
1193
|
'type' => 'int',
|
1194
|
'unsigned' => TRUE,
|
1195
|
'not null' => TRUE,
|
1196
|
'default' => 0,
|
1197
|
),
|
1198
|
'p3' => array(
|
1199
|
'type' => 'int',
|
1200
|
'unsigned' => TRUE,
|
1201
|
'not null' => TRUE,
|
1202
|
'default' => 0,
|
1203
|
),
|
1204
|
'p4' => array(
|
1205
|
'type' => 'int',
|
1206
|
'unsigned' => TRUE,
|
1207
|
'not null' => TRUE,
|
1208
|
'default' => 0,
|
1209
|
),
|
1210
|
'p5' => array(
|
1211
|
'type' => 'int',
|
1212
|
'unsigned' => TRUE,
|
1213
|
'not null' => TRUE,
|
1214
|
'default' => 0,
|
1215
|
),
|
1216
|
'p6' => array(
|
1217
|
'type' => 'int',
|
1218
|
'unsigned' => TRUE,
|
1219
|
'not null' => TRUE,
|
1220
|
'default' => 0,
|
1221
|
),
|
1222
|
'p7' => array(
|
1223
|
'type' => 'int',
|
1224
|
'unsigned' => TRUE,
|
1225
|
'not null' => TRUE,
|
1226
|
'default' => 0,
|
1227
|
),
|
1228
|
'p8' => array(
|
1229
|
'type' => 'int',
|
1230
|
'unsigned' => TRUE,
|
1231
|
'not null' => TRUE,
|
1232
|
'default' => 0,
|
1233
|
),
|
1234
|
'p9' => array(
|
1235
|
'type' => 'int',
|
1236
|
'unsigned' => TRUE,
|
1237
|
'not null' => TRUE,
|
1238
|
'default' => 0,
|
1239
|
),
|
1240
|
'updated' => array(
|
1241
|
'type' => 'int',
|
1242
|
'not null' => TRUE,
|
1243
|
'default' => 0,
|
1244
|
'size' => 'small',
|
1245
|
),
|
1246
|
),
|
1247
|
'indexes' => array(
|
1248
|
'path_menu' => array(
|
1249
|
array(
|
1250
|
'link_path',
|
1251
|
128,
|
1252
|
),
|
1253
|
'menu_name',
|
1254
|
),
|
1255
|
'menu_plid_expand_child' => array(
|
1256
|
'menu_name',
|
1257
|
'plid',
|
1258
|
'expanded',
|
1259
|
'has_children',
|
1260
|
),
|
1261
|
'menu_parents' => array(
|
1262
|
'menu_name',
|
1263
|
'p1',
|
1264
|
'p2',
|
1265
|
'p3',
|
1266
|
'p4',
|
1267
|
'p5',
|
1268
|
'p6',
|
1269
|
'p7',
|
1270
|
'p8',
|
1271
|
'p9',
|
1272
|
),
|
1273
|
'router_path' => array(
|
1274
|
array(
|
1275
|
'router_path',
|
1276
|
128,
|
1277
|
),
|
1278
|
),
|
1279
|
),
|
1280
|
'primary key' => array(
|
1281
|
'mlid',
|
1282
|
),
|
1283
|
'module' => 'system',
|
1284
|
'name' => 'menu_links',
|
1285
|
));
|
1286
|
db_insert('menu_links')->fields(array(
|
1287
|
'menu_name',
|
1288
|
'mlid',
|
1289
|
'plid',
|
1290
|
'link_path',
|
1291
|
'router_path',
|
1292
|
'link_title',
|
1293
|
'options',
|
1294
|
'module',
|
1295
|
'hidden',
|
1296
|
'external',
|
1297
|
'has_children',
|
1298
|
'expanded',
|
1299
|
'weight',
|
1300
|
'depth',
|
1301
|
'customized',
|
1302
|
'p1',
|
1303
|
'p2',
|
1304
|
'p3',
|
1305
|
'p4',
|
1306
|
'p5',
|
1307
|
'p6',
|
1308
|
'p7',
|
1309
|
'p8',
|
1310
|
'p9',
|
1311
|
'updated',
|
1312
|
))
|
1313
|
->values(array(
|
1314
|
'menu_name' => 'navigation',
|
1315
|
'mlid' => '1',
|
1316
|
'plid' => '0',
|
1317
|
'link_path' => 'batch',
|
1318
|
'router_path' => 'batch',
|
1319
|
'link_title' => '',
|
1320
|
'options' => 'a:0:{}',
|
1321
|
'module' => 'system',
|
1322
|
'hidden' => '-1',
|
1323
|
'external' => '0',
|
1324
|
'has_children' => '0',
|
1325
|
'expanded' => '0',
|
1326
|
'weight' => '0',
|
1327
|
'depth' => '1',
|
1328
|
'customized' => '0',
|
1329
|
'p1' => '1',
|
1330
|
'p2' => '0',
|
1331
|
'p3' => '0',
|
1332
|
'p4' => '0',
|
1333
|
'p5' => '0',
|
1334
|
'p6' => '0',
|
1335
|
'p7' => '0',
|
1336
|
'p8' => '0',
|
1337
|
'p9' => '0',
|
1338
|
'updated' => '0',
|
1339
|
))
|
1340
|
->values(array(
|
1341
|
'menu_name' => 'navigation',
|
1342
|
'mlid' => '2',
|
1343
|
'plid' => '0',
|
1344
|
'link_path' => 'admin',
|
1345
|
'router_path' => 'admin',
|
1346
|
'link_title' => 'Administer',
|
1347
|
'options' => 'a:0:{}',
|
1348
|
'module' => 'system',
|
1349
|
'hidden' => '0',
|
1350
|
'external' => '0',
|
1351
|
'has_children' => '1',
|
1352
|
'expanded' => '0',
|
1353
|
'weight' => '9',
|
1354
|
'depth' => '1',
|
1355
|
'customized' => '0',
|
1356
|
'p1' => '2',
|
1357
|
'p2' => '0',
|
1358
|
'p3' => '0',
|
1359
|
'p4' => '0',
|
1360
|
'p5' => '0',
|
1361
|
'p6' => '0',
|
1362
|
'p7' => '0',
|
1363
|
'p8' => '0',
|
1364
|
'p9' => '0',
|
1365
|
'updated' => '0',
|
1366
|
))
|
1367
|
->values(array(
|
1368
|
'menu_name' => 'navigation',
|
1369
|
'mlid' => '3',
|
1370
|
'plid' => '0',
|
1371
|
'link_path' => 'node',
|
1372
|
'router_path' => 'node',
|
1373
|
'link_title' => 'Content',
|
1374
|
'options' => 'a:0:{}',
|
1375
|
'module' => 'system',
|
1376
|
'hidden' => '-1',
|
1377
|
'external' => '0',
|
1378
|
'has_children' => '0',
|
1379
|
'expanded' => '0',
|
1380
|
'weight' => '0',
|
1381
|
'depth' => '1',
|
1382
|
'customized' => '0',
|
1383
|
'p1' => '3',
|
1384
|
'p2' => '0',
|
1385
|
'p3' => '0',
|
1386
|
'p4' => '0',
|
1387
|
'p5' => '0',
|
1388
|
'p6' => '0',
|
1389
|
'p7' => '0',
|
1390
|
'p8' => '0',
|
1391
|
'p9' => '0',
|
1392
|
'updated' => '0',
|
1393
|
))
|
1394
|
->values(array(
|
1395
|
'menu_name' => 'navigation',
|
1396
|
'mlid' => '4',
|
1397
|
'plid' => '0',
|
1398
|
'link_path' => 'logout',
|
1399
|
'router_path' => 'logout',
|
1400
|
'link_title' => 'Log out',
|
1401
|
'options' => 'a:0:{}',
|
1402
|
'module' => 'system',
|
1403
|
'hidden' => '0',
|
1404
|
'external' => '0',
|
1405
|
'has_children' => '0',
|
1406
|
'expanded' => '0',
|
1407
|
'weight' => '10',
|
1408
|
'depth' => '1',
|
1409
|
'customized' => '0',
|
1410
|
'p1' => '4',
|
1411
|
'p2' => '0',
|
1412
|
'p3' => '0',
|
1413
|
'p4' => '0',
|
1414
|
'p5' => '0',
|
1415
|
'p6' => '0',
|
1416
|
'p7' => '0',
|
1417
|
'p8' => '0',
|
1418
|
'p9' => '0',
|
1419
|
'updated' => '0',
|
1420
|
))
|
1421
|
->values(array(
|
1422
|
'menu_name' => 'navigation',
|
1423
|
'mlid' => '5',
|
1424
|
'plid' => '0',
|
1425
|
'link_path' => 'rss.xml',
|
1426
|
'router_path' => 'rss.xml',
|
1427
|
'link_title' => 'RSS feed',
|
1428
|
'options' => 'a:0:{}',
|
1429
|
'module' => 'system',
|
1430
|
'hidden' => '-1',
|
1431
|
'external' => '0',
|
1432
|
'has_children' => '0',
|
1433
|
'expanded' => '0',
|
1434
|
'weight' => '0',
|
1435
|
'depth' => '1',
|
1436
|
'customized' => '0',
|
1437
|
'p1' => '5',
|
1438
|
'p2' => '0',
|
1439
|
'p3' => '0',
|
1440
|
'p4' => '0',
|
1441
|
'p5' => '0',
|
1442
|
'p6' => '0',
|
1443
|
'p7' => '0',
|
1444
|
'p8' => '0',
|
1445
|
'p9' => '0',
|
1446
|
'updated' => '0',
|
1447
|
))
|
1448
|
->values(array(
|
1449
|
'menu_name' => 'navigation',
|
1450
|
'mlid' => '6',
|
1451
|
'plid' => '0',
|
1452
|
'link_path' => 'user',
|
1453
|
'router_path' => 'user',
|
1454
|
'link_title' => 'User account',
|
1455
|
'options' => 'a:0:{}',
|
1456
|
'module' => 'system',
|
1457
|
'hidden' => '-1',
|
1458
|
'external' => '0',
|
1459
|
'has_children' => '0',
|
1460
|
'expanded' => '0',
|
1461
|
'weight' => '0',
|
1462
|
'depth' => '1',
|
1463
|
'customized' => '0',
|
1464
|
'p1' => '6',
|
1465
|
'p2' => '0',
|
1466
|
'p3' => '0',
|
1467
|
'p4' => '0',
|
1468
|
'p5' => '0',
|
1469
|
'p6' => '0',
|
1470
|
'p7' => '0',
|
1471
|
'p8' => '0',
|
1472
|
'p9' => '0',
|
1473
|
'updated' => '0',
|
1474
|
))
|
1475
|
->values(array(
|
1476
|
'menu_name' => 'navigation',
|
1477
|
'mlid' => '7',
|
1478
|
'plid' => '0',
|
1479
|
'link_path' => 'node/%',
|
1480
|
'router_path' => 'node/%',
|
1481
|
'link_title' => '',
|
1482
|
'options' => 'a:0:{}',
|
1483
|
'module' => 'system',
|
1484
|
'hidden' => '-1',
|
1485
|
'external' => '0',
|
1486
|
'has_children' => '0',
|
1487
|
'expanded' => '0',
|
1488
|
'weight' => '0',
|
1489
|
'depth' => '1',
|
1490
|
'customized' => '0',
|
1491
|
'p1' => '7',
|
1492
|
'p2' => '0',
|
1493
|
'p3' => '0',
|
1494
|
'p4' => '0',
|
1495
|
'p5' => '0',
|
1496
|
'p6' => '0',
|
1497
|
'p7' => '0',
|
1498
|
'p8' => '0',
|
1499
|
'p9' => '0',
|
1500
|
'updated' => '0',
|
1501
|
))
|
1502
|
->values(array(
|
1503
|
'menu_name' => 'navigation',
|
1504
|
'mlid' => '8',
|
1505
|
'plid' => '2',
|
1506
|
'link_path' => 'admin/compact',
|
1507
|
'router_path' => 'admin/compact',
|
1508
|
'link_title' => 'Compact mode',
|
1509
|
'options' => 'a:0:{}',
|
1510
|
'module' => 'system',
|
1511
|
'hidden' => '-1',
|
1512
|
'external' => '0',
|
1513
|
'has_children' => '0',
|
1514
|
'expanded' => '0',
|
1515
|
'weight' => '0',
|
1516
|
'depth' => '2',
|
1517
|
'customized' => '0',
|
1518
|
'p1' => '2',
|
1519
|
'p2' => '8',
|
1520
|
'p3' => '0',
|
1521
|
'p4' => '0',
|
1522
|
'p5' => '0',
|
1523
|
'p6' => '0',
|
1524
|
'p7' => '0',
|
1525
|
'p8' => '0',
|
1526
|
'p9' => '0',
|
1527
|
'updated' => '0',
|
1528
|
))
|
1529
|
->values(array(
|
1530
|
'menu_name' => 'navigation',
|
1531
|
'mlid' => '9',
|
1532
|
'plid' => '0',
|
1533
|
'link_path' => 'filter/tips',
|
1534
|
'router_path' => 'filter/tips',
|
1535
|
'link_title' => 'Compose tips',
|
1536
|
'options' => 'a:0:{}',
|
1537
|
'module' => 'system',
|
1538
|
'hidden' => '1',
|
1539
|
'external' => '0',
|
1540
|
'has_children' => '0',
|
1541
|
'expanded' => '0',
|
1542
|
'weight' => '0',
|
1543
|
'depth' => '1',
|
1544
|
'customized' => '0',
|
1545
|
'p1' => '9',
|
1546
|
'p2' => '0',
|
1547
|
'p3' => '0',
|
1548
|
'p4' => '0',
|
1549
|
'p5' => '0',
|
1550
|
'p6' => '0',
|
1551
|
'p7' => '0',
|
1552
|
'p8' => '0',
|
1553
|
'p9' => '0',
|
1554
|
'updated' => '0',
|
1555
|
))
|
1556
|
->values(array(
|
1557
|
'menu_name' => 'navigation',
|
1558
|
'mlid' => '10',
|
1559
|
'plid' => '2',
|
1560
|
'link_path' => 'admin/content',
|
1561
|
'router_path' => 'admin/content',
|
1562
|
'link_title' => 'Content management',
|
1563
|
'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:27:\"Manage your site's content.\";}}",
|
1564
|
'module' => 'system',
|
1565
|
'hidden' => '0',
|
1566
|
'external' => '0',
|
1567
|
'has_children' => '1',
|
1568
|
'expanded' => '0',
|
1569
|
'weight' => '-10',
|
1570
|
'depth' => '2',
|
1571
|
'customized' => '0',
|
1572
|
'p1' => '2',
|
1573
|
'p2' => '10',
|
1574
|
'p3' => '0',
|
1575
|
'p4' => '0',
|
1576
|
'p5' => '0',
|
1577
|
'p6' => '0',
|
1578
|
'p7' => '0',
|
1579
|
'p8' => '0',
|
1580
|
'p9' => '0',
|
1581
|
'updated' => '0',
|
1582
|
))
|
1583
|
->values(array(
|
1584
|
'menu_name' => 'navigation',
|
1585
|
'mlid' => '11',
|
1586
|
'plid' => '0',
|
1587
|
'link_path' => 'node/add',
|
1588
|
'router_path' => 'node/add',
|
1589
|
'link_title' => 'Create content',
|
1590
|
'options' => 'a:0:{}',
|
1591
|
'module' => 'system',
|
1592
|
'hidden' => '0',
|
1593
|
'external' => '0',
|
1594
|
'has_children' => '1',
|
1595
|
'expanded' => '0',
|
1596
|
'weight' => '1',
|
1597
|
'depth' => '1',
|
1598
|
'customized' => '0',
|
1599
|
'p1' => '11',
|
1600
|
'p2' => '0',
|
1601
|
'p3' => '0',
|
1602
|
'p4' => '0',
|
1603
|
'p5' => '0',
|
1604
|
'p6' => '0',
|
1605
|
'p7' => '0',
|
1606
|
'p8' => '0',
|
1607
|
'p9' => '0',
|
1608
|
'updated' => '0',
|
1609
|
))
|
1610
|
->values(array(
|
1611
|
'menu_name' => 'navigation',
|
1612
|
'mlid' => '12',
|
1613
|
'plid' => '0',
|
1614
|
'link_path' => 'system/files',
|
1615
|
'router_path' => 'system/files',
|
1616
|
'link_title' => 'File download',
|
1617
|
'options' => 'a:0:{}',
|
1618
|
'module' => 'system',
|
1619
|
'hidden' => '-1',
|
1620
|
'external' => '0',
|
1621
|
'has_children' => '0',
|
1622
|
'expanded' => '0',
|
1623
|
'weight' => '0',
|
1624
|
'depth' => '1',
|
1625
|
'customized' => '0',
|
1626
|
'p1' => '12',
|
1627
|
'p2' => '0',
|
1628
|
'p3' => '0',
|
1629
|
'p4' => '0',
|
1630
|
'p5' => '0',
|
1631
|
'p6' => '0',
|
1632
|
'p7' => '0',
|
1633
|
'p8' => '0',
|
1634
|
'p9' => '0',
|
1635
|
'updated' => '0',
|
1636
|
))
|
1637
|
->values(array(
|
1638
|
'menu_name' => 'navigation',
|
1639
|
'mlid' => '13',
|
1640
|
'plid' => '2',
|
1641
|
'link_path' => 'admin/reports',
|
1642
|
'router_path' => 'admin/reports',
|
1643
|
'link_title' => 'Reports',
|
1644
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"View reports from system logs and other status information.";}}',
|
1645
|
'module' => 'system',
|
1646
|
'hidden' => '0',
|
1647
|
'external' => '0',
|
1648
|
'has_children' => '1',
|
1649
|
'expanded' => '0',
|
1650
|
'weight' => '5',
|
1651
|
'depth' => '2',
|
1652
|
'customized' => '0',
|
1653
|
'p1' => '2',
|
1654
|
'p2' => '13',
|
1655
|
'p3' => '0',
|
1656
|
'p4' => '0',
|
1657
|
'p5' => '0',
|
1658
|
'p6' => '0',
|
1659
|
'p7' => '0',
|
1660
|
'p8' => '0',
|
1661
|
'p9' => '0',
|
1662
|
'updated' => '0',
|
1663
|
))
|
1664
|
->values(array(
|
1665
|
'menu_name' => 'navigation',
|
1666
|
'mlid' => '14',
|
1667
|
'plid' => '2',
|
1668
|
'link_path' => 'admin/build',
|
1669
|
'router_path' => 'admin/build',
|
1670
|
'link_title' => 'Site building',
|
1671
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Control how your site looks and feels.";}}',
|
1672
|
'module' => 'system',
|
1673
|
'hidden' => '0',
|
1674
|
'external' => '0',
|
1675
|
'has_children' => '1',
|
1676
|
'expanded' => '0',
|
1677
|
'weight' => '-10',
|
1678
|
'depth' => '2',
|
1679
|
'customized' => '0',
|
1680
|
'p1' => '2',
|
1681
|
'p2' => '14',
|
1682
|
'p3' => '0',
|
1683
|
'p4' => '0',
|
1684
|
'p5' => '0',
|
1685
|
'p6' => '0',
|
1686
|
'p7' => '0',
|
1687
|
'p8' => '0',
|
1688
|
'p9' => '0',
|
1689
|
'updated' => '0',
|
1690
|
))
|
1691
|
->values(array(
|
1692
|
'menu_name' => 'navigation',
|
1693
|
'mlid' => '15',
|
1694
|
'plid' => '2',
|
1695
|
'link_path' => 'admin/settings',
|
1696
|
'router_path' => 'admin/settings',
|
1697
|
'link_title' => 'Site configuration',
|
1698
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:40:"Adjust basic site configuration options.";}}',
|
1699
|
'module' => 'system',
|
1700
|
'hidden' => '0',
|
1701
|
'external' => '0',
|
1702
|
'has_children' => '1',
|
1703
|
'expanded' => '0',
|
1704
|
'weight' => '-5',
|
1705
|
'depth' => '2',
|
1706
|
'customized' => '0',
|
1707
|
'p1' => '2',
|
1708
|
'p2' => '15',
|
1709
|
'p3' => '0',
|
1710
|
'p4' => '0',
|
1711
|
'p5' => '0',
|
1712
|
'p6' => '0',
|
1713
|
'p7' => '0',
|
1714
|
'p8' => '0',
|
1715
|
'p9' => '0',
|
1716
|
'updated' => '0',
|
1717
|
))
|
1718
|
->values(array(
|
1719
|
'menu_name' => 'navigation',
|
1720
|
'mlid' => '16',
|
1721
|
'plid' => '0',
|
1722
|
'link_path' => 'user/autocomplete',
|
1723
|
'router_path' => 'user/autocomplete',
|
1724
|
'link_title' => 'User autocomplete',
|
1725
|
'options' => 'a:0:{}',
|
1726
|
'module' => 'system',
|
1727
|
'hidden' => '-1',
|
1728
|
'external' => '0',
|
1729
|
'has_children' => '0',
|
1730
|
'expanded' => '0',
|
1731
|
'weight' => '0',
|
1732
|
'depth' => '1',
|
1733
|
'customized' => '0',
|
1734
|
'p1' => '16',
|
1735
|
'p2' => '0',
|
1736
|
'p3' => '0',
|
1737
|
'p4' => '0',
|
1738
|
'p5' => '0',
|
1739
|
'p6' => '0',
|
1740
|
'p7' => '0',
|
1741
|
'p8' => '0',
|
1742
|
'p9' => '0',
|
1743
|
'updated' => '0',
|
1744
|
))
|
1745
|
->values(array(
|
1746
|
'menu_name' => 'navigation',
|
1747
|
'mlid' => '17',
|
1748
|
'plid' => '2',
|
1749
|
'link_path' => 'admin/user',
|
1750
|
'router_path' => 'admin/user',
|
1751
|
'link_title' => 'User management',
|
1752
|
'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:61:\"Manage your site's users, groups and access to site features.\";}}",
|
1753
|
'module' => 'system',
|
1754
|
'hidden' => '0',
|
1755
|
'external' => '0',
|
1756
|
'has_children' => '1',
|
1757
|
'expanded' => '0',
|
1758
|
'weight' => '0',
|
1759
|
'depth' => '2',
|
1760
|
'customized' => '0',
|
1761
|
'p1' => '2',
|
1762
|
'p2' => '17',
|
1763
|
'p3' => '0',
|
1764
|
'p4' => '0',
|
1765
|
'p5' => '0',
|
1766
|
'p6' => '0',
|
1767
|
'p7' => '0',
|
1768
|
'p8' => '0',
|
1769
|
'p9' => '0',
|
1770
|
'updated' => '0',
|
1771
|
))
|
1772
|
->values(array(
|
1773
|
'menu_name' => 'navigation',
|
1774
|
'mlid' => '18',
|
1775
|
'plid' => '0',
|
1776
|
'link_path' => 'user/%',
|
1777
|
'router_path' => 'user/%',
|
1778
|
'link_title' => 'My account',
|
1779
|
'options' => 'a:0:{}',
|
1780
|
'module' => 'system',
|
1781
|
'hidden' => '0',
|
1782
|
'external' => '0',
|
1783
|
'has_children' => '0',
|
1784
|
'expanded' => '0',
|
1785
|
'weight' => '0',
|
1786
|
'depth' => '1',
|
1787
|
'customized' => '0',
|
1788
|
'p1' => '18',
|
1789
|
'p2' => '0',
|
1790
|
'p3' => '0',
|
1791
|
'p4' => '0',
|
1792
|
'p5' => '0',
|
1793
|
'p6' => '0',
|
1794
|
'p7' => '0',
|
1795
|
'p8' => '0',
|
1796
|
'p9' => '0',
|
1797
|
'updated' => '0',
|
1798
|
))
|
1799
|
->values(array(
|
1800
|
'menu_name' => 'navigation',
|
1801
|
'mlid' => '19',
|
1802
|
'plid' => '17',
|
1803
|
'link_path' => 'admin/user/rules',
|
1804
|
'router_path' => 'admin/user/rules',
|
1805
|
'link_title' => 'Access rules',
|
1806
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:80:"List and create rules to disallow usernames, e-mail addresses, and IP addresses.";}}',
|
1807
|
'module' => 'system',
|
1808
|
'hidden' => '0',
|
1809
|
'external' => '0',
|
1810
|
'has_children' => '0',
|
1811
|
'expanded' => '0',
|
1812
|
'weight' => '0',
|
1813
|
'depth' => '3',
|
1814
|
'customized' => '0',
|
1815
|
'p1' => '2',
|
1816
|
'p2' => '17',
|
1817
|
'p3' => '19',
|
1818
|
'p4' => '0',
|
1819
|
'p5' => '0',
|
1820
|
'p6' => '0',
|
1821
|
'p7' => '0',
|
1822
|
'p8' => '0',
|
1823
|
'p9' => '0',
|
1824
|
'updated' => '0',
|
1825
|
))
|
1826
|
->values(array(
|
1827
|
'menu_name' => 'navigation',
|
1828
|
'mlid' => '20',
|
1829
|
'plid' => '15',
|
1830
|
'link_path' => 'admin/settings/actions',
|
1831
|
'router_path' => 'admin/settings/actions',
|
1832
|
'link_title' => 'Actions',
|
1833
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"Manage the actions defined for your site.";}}',
|
1834
|
'module' => 'system',
|
1835
|
'hidden' => '0',
|
1836
|
'external' => '0',
|
1837
|
'has_children' => '0',
|
1838
|
'expanded' => '0',
|
1839
|
'weight' => '0',
|
1840
|
'depth' => '3',
|
1841
|
'customized' => '0',
|
1842
|
'p1' => '2',
|
1843
|
'p2' => '15',
|
1844
|
'p3' => '20',
|
1845
|
'p4' => '0',
|
1846
|
'p5' => '0',
|
1847
|
'p6' => '0',
|
1848
|
'p7' => '0',
|
1849
|
'p8' => '0',
|
1850
|
'p9' => '0',
|
1851
|
'updated' => '0',
|
1852
|
))
|
1853
|
->values(array(
|
1854
|
'menu_name' => 'navigation',
|
1855
|
'mlid' => '21',
|
1856
|
'plid' => '15',
|
1857
|
'link_path' => 'admin/settings/admin',
|
1858
|
'router_path' => 'admin/settings/admin',
|
1859
|
'link_title' => 'Administration theme',
|
1860
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Settings for how your administrative pages should look.";}}',
|
1861
|
'module' => 'system',
|
1862
|
'hidden' => '0',
|
1863
|
'external' => '0',
|
1864
|
'has_children' => '0',
|
1865
|
'expanded' => '0',
|
1866
|
'weight' => '0',
|
1867
|
'depth' => '3',
|
1868
|
'customized' => '0',
|
1869
|
'p1' => '2',
|
1870
|
'p2' => '15',
|
1871
|
'p3' => '21',
|
1872
|
'p4' => '0',
|
1873
|
'p5' => '0',
|
1874
|
'p6' => '0',
|
1875
|
'p7' => '0',
|
1876
|
'p8' => '0',
|
1877
|
'p9' => '0',
|
1878
|
'updated' => '0',
|
1879
|
))
|
1880
|
->values(array(
|
1881
|
'menu_name' => 'navigation',
|
1882
|
'mlid' => '22',
|
1883
|
'plid' => '14',
|
1884
|
'link_path' => 'admin/build/block',
|
1885
|
'router_path' => 'admin/build/block',
|
1886
|
'link_title' => 'Blocks',
|
1887
|
'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:79:\"Configure what block content appears in your site's sidebars and other regions.\";}}",
|
1888
|
'module' => 'system',
|
1889
|
'hidden' => '0',
|
1890
|
'external' => '0',
|
1891
|
'has_children' => '0',
|
1892
|
'expanded' => '0',
|
1893
|
'weight' => '0',
|
1894
|
'depth' => '3',
|
1895
|
'customized' => '0',
|
1896
|
'p1' => '2',
|
1897
|
'p2' => '14',
|
1898
|
'p3' => '22',
|
1899
|
'p4' => '0',
|
1900
|
'p5' => '0',
|
1901
|
'p6' => '0',
|
1902
|
'p7' => '0',
|
1903
|
'p8' => '0',
|
1904
|
'p9' => '0',
|
1905
|
'updated' => '0',
|
1906
|
))
|
1907
|
->values(array(
|
1908
|
'menu_name' => 'navigation',
|
1909
|
'mlid' => '23',
|
1910
|
'plid' => '15',
|
1911
|
'link_path' => 'admin/settings/clean-urls',
|
1912
|
'router_path' => 'admin/settings/clean-urls',
|
1913
|
'link_title' => 'Clean URLs',
|
1914
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"Enable or disable clean URLs for your site.";}}',
|
1915
|
'module' => 'system',
|
1916
|
'hidden' => '0',
|
1917
|
'external' => '0',
|
1918
|
'has_children' => '0',
|
1919
|
'expanded' => '0',
|
1920
|
'weight' => '0',
|
1921
|
'depth' => '3',
|
1922
|
'customized' => '0',
|
1923
|
'p1' => '2',
|
1924
|
'p2' => '15',
|
1925
|
'p3' => '23',
|
1926
|
'p4' => '0',
|
1927
|
'p5' => '0',
|
1928
|
'p6' => '0',
|
1929
|
'p7' => '0',
|
1930
|
'p8' => '0',
|
1931
|
'p9' => '0',
|
1932
|
'updated' => '0',
|
1933
|
))
|
1934
|
->values(array(
|
1935
|
'menu_name' => 'navigation',
|
1936
|
'mlid' => '24',
|
1937
|
'plid' => '10',
|
1938
|
'link_path' => 'admin/content/node',
|
1939
|
'router_path' => 'admin/content/node',
|
1940
|
'link_title' => 'Content',
|
1941
|
'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View, edit, and delete your site's content.\";}}",
|
1942
|
'module' => 'system',
|
1943
|
'hidden' => '0',
|
1944
|
'external' => '0',
|
1945
|
'has_children' => '0',
|
1946
|
'expanded' => '0',
|
1947
|
'weight' => '0',
|
1948
|
'depth' => '3',
|
1949
|
'customized' => '0',
|
1950
|
'p1' => '2',
|
1951
|
'p2' => '10',
|
1952
|
'p3' => '24',
|
1953
|
'p4' => '0',
|
1954
|
'p5' => '0',
|
1955
|
'p6' => '0',
|
1956
|
'p7' => '0',
|
1957
|
'p8' => '0',
|
1958
|
'p9' => '0',
|
1959
|
'updated' => '0',
|
1960
|
))
|
1961
|
->values(array(
|
1962
|
'menu_name' => 'navigation',
|
1963
|
'mlid' => '25',
|
1964
|
'plid' => '10',
|
1965
|
'link_path' => 'admin/content/types',
|
1966
|
'router_path' => 'admin/content/types',
|
1967
|
'link_title' => 'Content types',
|
1968
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:82:"Manage posts by content type, including default status, front page promotion, etc.";}}',
|
1969
|
'module' => 'system',
|
1970
|
'hidden' => '0',
|
1971
|
'external' => '0',
|
1972
|
'has_children' => '0',
|
1973
|
'expanded' => '0',
|
1974
|
'weight' => '0',
|
1975
|
'depth' => '3',
|
1976
|
'customized' => '0',
|
1977
|
'p1' => '2',
|
1978
|
'p2' => '10',
|
1979
|
'p3' => '25',
|
1980
|
'p4' => '0',
|
1981
|
'p5' => '0',
|
1982
|
'p6' => '0',
|
1983
|
'p7' => '0',
|
1984
|
'p8' => '0',
|
1985
|
'p9' => '0',
|
1986
|
'updated' => '0',
|
1987
|
))
|
1988
|
->values(array(
|
1989
|
'menu_name' => 'navigation',
|
1990
|
'mlid' => '26',
|
1991
|
'plid' => '15',
|
1992
|
'link_path' => 'admin/settings/date-time',
|
1993
|
'router_path' => 'admin/settings/date-time',
|
1994
|
'link_title' => 'Date and time',
|
1995
|
'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:89:\"Settings for how Drupal displays date and time, as well as the system's default timezone.\";}}",
|
1996
|
'module' => 'system',
|
1997
|
'hidden' => '0',
|
1998
|
'external' => '0',
|
1999
|
'has_children' => '0',
|
2000
|
'expanded' => '0',
|
2001
|
'weight' => '0',
|
2002
|
'depth' => '3',
|
2003
|
'customized' => '0',
|
2004
|
'p1' => '2',
|
2005
|
'p2' => '15',
|
2006
|
'p3' => '26',
|
2007
|
'p4' => '0',
|
2008
|
'p5' => '0',
|
2009
|
'p6' => '0',
|
2010
|
'p7' => '0',
|
2011
|
'p8' => '0',
|
2012
|
'p9' => '0',
|
2013
|
'updated' => '0',
|
2014
|
))
|
2015
|
->values(array(
|
2016
|
'menu_name' => 'navigation',
|
2017
|
'mlid' => '27',
|
2018
|
'plid' => '0',
|
2019
|
'link_path' => 'node/%/delete',
|
2020
|
'router_path' => 'node/%/delete',
|
2021
|
'link_title' => 'Delete',
|
2022
|
'options' => 'a:0:{}',
|
2023
|
'module' => 'system',
|
2024
|
'hidden' => '-1',
|
2025
|
'external' => '0',
|
2026
|
'has_children' => '0',
|
2027
|
'expanded' => '0',
|
2028
|
'weight' => '1',
|
2029
|
'depth' => '1',
|
2030
|
'customized' => '0',
|
2031
|
'p1' => '27',
|
2032
|
'p2' => '0',
|
2033
|
'p3' => '0',
|
2034
|
'p4' => '0',
|
2035
|
'p5' => '0',
|
2036
|
'p6' => '0',
|
2037
|
'p7' => '0',
|
2038
|
'p8' => '0',
|
2039
|
'p9' => '0',
|
2040
|
'updated' => '0',
|
2041
|
))
|
2042
|
->values(array(
|
2043
|
'menu_name' => 'navigation',
|
2044
|
'mlid' => '28',
|
2045
|
'plid' => '18',
|
2046
|
'link_path' => 'user/%/delete',
|
2047
|
'router_path' => 'user/%/delete',
|
2048
|
'link_title' => 'Delete',
|
2049
|
'options' => 'a:0:{}',
|
2050
|
'module' => 'system',
|
2051
|
'hidden' => '-1',
|
2052
|
'external' => '0',
|
2053
|
'has_children' => '0',
|
2054
|
'expanded' => '0',
|
2055
|
'weight' => '0',
|
2056
|
'depth' => '2',
|
2057
|
'customized' => '0',
|
2058
|
'p1' => '18',
|
2059
|
'p2' => '28',
|
2060
|
'p3' => '0',
|
2061
|
'p4' => '0',
|
2062
|
'p5' => '0',
|
2063
|
'p6' => '0',
|
2064
|
'p7' => '0',
|
2065
|
'p8' => '0',
|
2066
|
'p9' => '0',
|
2067
|
'updated' => '0',
|
2068
|
))
|
2069
|
->values(array(
|
2070
|
'menu_name' => 'navigation',
|
2071
|
'mlid' => '29',
|
2072
|
'plid' => '15',
|
2073
|
'link_path' => 'admin/settings/error-reporting',
|
2074
|
'router_path' => 'admin/settings/error-reporting',
|
2075
|
'link_title' => 'Error reporting',
|
2076
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:93:"Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.";}}',
|
2077
|
'module' => 'system',
|
2078
|
'hidden' => '0',
|
2079
|
'external' => '0',
|
2080
|
'has_children' => '0',
|
2081
|
'expanded' => '0',
|
2082
|
'weight' => '0',
|
2083
|
'depth' => '3',
|
2084
|
'customized' => '0',
|
2085
|
'p1' => '2',
|
2086
|
'p2' => '15',
|
2087
|
'p3' => '29',
|
2088
|
'p4' => '0',
|
2089
|
'p5' => '0',
|
2090
|
'p6' => '0',
|
2091
|
'p7' => '0',
|
2092
|
'p8' => '0',
|
2093
|
'p9' => '0',
|
2094
|
'updated' => '0',
|
2095
|
))
|
2096
|
->values(array(
|
2097
|
'menu_name' => 'navigation',
|
2098
|
'mlid' => '30',
|
2099
|
'plid' => '15',
|
2100
|
'link_path' => 'admin/settings/file-system',
|
2101
|
'router_path' => 'admin/settings/file-system',
|
2102
|
'link_title' => 'File system',
|
2103
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:68:"Tell Drupal where to store uploaded files and how they are accessed.";}}',
|
2104
|
'module' => 'system',
|
2105
|
'hidden' => '0',
|
2106
|
'external' => '0',
|
2107
|
'has_children' => '0',
|
2108
|
'expanded' => '0',
|
2109
|
'weight' => '0',
|
2110
|
'depth' => '3',
|
2111
|
'customized' => '0',
|
2112
|
'p1' => '2',
|
2113
|
'p2' => '15',
|
2114
|
'p3' => '30',
|
2115
|
'p4' => '0',
|
2116
|
'p5' => '0',
|
2117
|
'p6' => '0',
|
2118
|
'p7' => '0',
|
2119
|
'p8' => '0',
|
2120
|
'p9' => '0',
|
2121
|
'updated' => '0',
|
2122
|
))
|
2123
|
->values(array(
|
2124
|
'menu_name' => 'navigation',
|
2125
|
'mlid' => '31',
|
2126
|
'plid' => '15',
|
2127
|
'link_path' => 'admin/settings/image-toolkit',
|
2128
|
'router_path' => 'admin/settings/image-toolkit',
|
2129
|
'link_title' => 'Image toolkit',
|
2130
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:74:"Choose which image toolkit to use if you have installed optional toolkits.";}}',
|
2131
|
'module' => 'system',
|
2132
|
'hidden' => '0',
|
2133
|
'external' => '0',
|
2134
|
'has_children' => '0',
|
2135
|
'expanded' => '0',
|
2136
|
'weight' => '0',
|
2137
|
'depth' => '3',
|
2138
|
'customized' => '0',
|
2139
|
'p1' => '2',
|
2140
|
'p2' => '15',
|
2141
|
'p3' => '31',
|
2142
|
'p4' => '0',
|
2143
|
'p5' => '0',
|
2144
|
'p6' => '0',
|
2145
|
'p7' => '0',
|
2146
|
'p8' => '0',
|
2147
|
'p9' => '0',
|
2148
|
'updated' => '0',
|
2149
|
))
|
2150
|
->values(array(
|
2151
|
'menu_name' => 'navigation',
|
2152
|
'mlid' => '32',
|
2153
|
'plid' => '15',
|
2154
|
'link_path' => 'admin/settings/filters',
|
2155
|
'router_path' => 'admin/settings/filters',
|
2156
|
'link_title' => 'Input formats',
|
2157
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:127:"Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.";}}',
|
2158
|
'module' => 'system',
|
2159
|
'hidden' => '0',
|
2160
|
'external' => '0',
|
2161
|
'has_children' => '0',
|
2162
|
'expanded' => '0',
|
2163
|
'weight' => '0',
|
2164
|
'depth' => '3',
|
2165
|
'customized' => '0',
|
2166
|
'p1' => '2',
|
2167
|
'p2' => '15',
|
2168
|
'p3' => '32',
|
2169
|
'p4' => '0',
|
2170
|
'p5' => '0',
|
2171
|
'p6' => '0',
|
2172
|
'p7' => '0',
|
2173
|
'p8' => '0',
|
2174
|
'p9' => '0',
|
2175
|
'updated' => '0',
|
2176
|
))
|
2177
|
->values(array(
|
2178
|
'menu_name' => 'navigation',
|
2179
|
'mlid' => '33',
|
2180
|
'plid' => '15',
|
2181
|
'link_path' => 'admin/settings/logging',
|
2182
|
'router_path' => 'admin/settings/logging',
|
2183
|
'link_title' => 'Logging and alerts',
|
2184
|
'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:156:\"Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.\";}}",
|
2185
|
'module' => 'system',
|
2186
|
'hidden' => '0',
|
2187
|
'external' => '0',
|
2188
|
'has_children' => '1',
|
2189
|
'expanded' => '0',
|
2190
|
'weight' => '0',
|
2191
|
'depth' => '3',
|
2192
|
'customized' => '0',
|
2193
|
'p1' => '2',
|
2194
|
'p2' => '15',
|
2195
|
'p3' => '33',
|
2196
|
'p4' => '0',
|
2197
|
'p5' => '0',
|
2198
|
'p6' => '0',
|
2199
|
'p7' => '0',
|
2200
|
'p8' => '0',
|
2201
|
'p9' => '0',
|
2202
|
'updated' => '0',
|
2203
|
))
|
2204
|
->values(array(
|
2205
|
'menu_name' => 'navigation',
|
2206
|
'mlid' => '34',
|
2207
|
'plid' => '14',
|
2208
|
'link_path' => 'admin/build/modules',
|
2209
|
'router_path' => 'admin/build/modules',
|
2210
|
'link_title' => 'Modules',
|
2211
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:47:"Enable or disable add-on modules for your site.";}}',
|
2212
|
'module' => 'system',
|
2213
|
'hidden' => '0',
|
2214
|
'external' => '0',
|
2215
|
'has_children' => '0',
|
2216
|
'expanded' => '0',
|
2217
|
'weight' => '0',
|
2218
|
'depth' => '3',
|
2219
|
'customized' => '0',
|
2220
|
'p1' => '2',
|
2221
|
'p2' => '14',
|
2222
|
'p3' => '34',
|
2223
|
'p4' => '0',
|
2224
|
'p5' => '0',
|
2225
|
'p6' => '0',
|
2226
|
'p7' => '0',
|
2227
|
'p8' => '0',
|
2228
|
'p9' => '0',
|
2229
|
'updated' => '0',
|
2230
|
))
|
2231
|
->values(array(
|
2232
|
'menu_name' => 'navigation',
|
2233
|
'mlid' => '35',
|
2234
|
'plid' => '15',
|
2235
|
'link_path' => 'admin/settings/performance',
|
2236
|
'router_path' => 'admin/settings/performance',
|
2237
|
'link_title' => 'Performance',
|
2238
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:101:"Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.";}}',
|
2239
|
'module' => 'system',
|
2240
|
'hidden' => '0',
|
2241
|
'external' => '0',
|
2242
|
'has_children' => '0',
|
2243
|
'expanded' => '0',
|
2244
|
'weight' => '0',
|
2245
|
'depth' => '3',
|
2246
|
'customized' => '0',
|
2247
|
'p1' => '2',
|
2248
|
'p2' => '15',
|
2249
|
'p3' => '35',
|
2250
|
'p4' => '0',
|
2251
|
'p5' => '0',
|
2252
|
'p6' => '0',
|
2253
|
'p7' => '0',
|
2254
|
'p8' => '0',
|
2255
|
'p9' => '0',
|
2256
|
'updated' => '0',
|
2257
|
))
|
2258
|
->values(array(
|
2259
|
'menu_name' => 'navigation',
|
2260
|
'mlid' => '36',
|
2261
|
'plid' => '17',
|
2262
|
'link_path' => 'admin/user/permissions',
|
2263
|
'router_path' => 'admin/user/permissions',
|
2264
|
'link_title' => 'Permissions',
|
2265
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:64:"Determine access to features by selecting permissions for roles.";}}',
|
2266
|
'module' => 'system',
|
2267
|
'hidden' => '0',
|
2268
|
'external' => '0',
|
2269
|
'has_children' => '0',
|
2270
|
'expanded' => '0',
|
2271
|
'weight' => '0',
|
2272
|
'depth' => '3',
|
2273
|
'customized' => '0',
|
2274
|
'p1' => '2',
|
2275
|
'p2' => '17',
|
2276
|
'p3' => '36',
|
2277
|
'p4' => '0',
|
2278
|
'p5' => '0',
|
2279
|
'p6' => '0',
|
2280
|
'p7' => '0',
|
2281
|
'p8' => '0',
|
2282
|
'p9' => '0',
|
2283
|
'updated' => '0',
|
2284
|
))
|
2285
|
->values(array(
|
2286
|
'menu_name' => 'navigation',
|
2287
|
'mlid' => '37',
|
2288
|
'plid' => '10',
|
2289
|
'link_path' => 'admin/content/node-settings',
|
2290
|
'router_path' => 'admin/content/node-settings',
|
2291
|
'link_title' => 'Post settings',
|
2292
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:126:"Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.";}}',
|
2293
|
'module' => 'system',
|
2294
|
'hidden' => '0',
|
2295
|
'external' => '0',
|
2296
|
'has_children' => '0',
|
2297
|
'expanded' => '0',
|
2298
|
'weight' => '0',
|
2299
|
'depth' => '3',
|
2300
|
'customized' => '0',
|
2301
|
'p1' => '2',
|
2302
|
'p2' => '10',
|
2303
|
'p3' => '37',
|
2304
|
'p4' => '0',
|
2305
|
'p5' => '0',
|
2306
|
'p6' => '0',
|
2307
|
'p7' => '0',
|
2308
|
'p8' => '0',
|
2309
|
'p9' => '0',
|
2310
|
'updated' => '0',
|
2311
|
))
|
2312
|
->values(array(
|
2313
|
'menu_name' => 'navigation',
|
2314
|
'mlid' => '38',
|
2315
|
'plid' => '10',
|
2316
|
'link_path' => 'admin/content/rss-publishing',
|
2317
|
'router_path' => 'admin/content/rss-publishing',
|
2318
|
'link_title' => 'RSS publishing',
|
2319
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:92:"Configure the number of items per feed and whether feeds should be titles/teasers/full-text.";}}',
|
2320
|
'module' => 'system',
|
2321
|
'hidden' => '0',
|
2322
|
'external' => '0',
|
2323
|
'has_children' => '0',
|
2324
|
'expanded' => '0',
|
2325
|
'weight' => '0',
|
2326
|
'depth' => '3',
|
2327
|
'customized' => '0',
|
2328
|
'p1' => '2',
|
2329
|
'p2' => '10',
|
2330
|
'p3' => '38',
|
2331
|
'p4' => '0',
|
2332
|
'p5' => '0',
|
2333
|
'p6' => '0',
|
2334
|
'p7' => '0',
|
2335
|
'p8' => '0',
|
2336
|
'p9' => '0',
|
2337
|
'updated' => '0',
|
2338
|
))
|
2339
|
->values(array(
|
2340
|
'menu_name' => 'navigation',
|
2341
|
'mlid' => '39',
|
2342
|
'plid' => '13',
|
2343
|
'link_path' => 'admin/reports/dblog',
|
2344
|
'router_path' => 'admin/reports/dblog',
|
2345
|
'link_title' => 'Recent log entries',
|
2346
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"View events that have recently been logged.";}}',
|
2347
|
'module' => 'system',
|
2348
|
'hidden' => '0',
|
2349
|
'external' => '0',
|
2350
|
'has_children' => '0',
|
2351
|
'expanded' => '0',
|
2352
|
'weight' => '-1',
|
2353
|
'depth' => '3',
|
2354
|
'customized' => '0',
|
2355
|
'p1' => '2',
|
2356
|
'p2' => '13',
|
2357
|
'p3' => '39',
|
2358
|
'p4' => '0',
|
2359
|
'p5' => '0',
|
2360
|
'p6' => '0',
|
2361
|
'p7' => '0',
|
2362
|
'p8' => '0',
|
2363
|
'p9' => '0',
|
2364
|
'updated' => '0',
|
2365
|
))
|
2366
|
->values(array(
|
2367
|
'menu_name' => 'navigation',
|
2368
|
'mlid' => '40',
|
2369
|
'plid' => '17',
|
2370
|
'link_path' => 'admin/user/roles',
|
2371
|
'router_path' => 'admin/user/roles',
|
2372
|
'link_title' => 'Roles',
|
2373
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:30:"List, edit, or add user roles.";}}',
|
2374
|
'module' => 'system',
|
2375
|
'hidden' => '0',
|
2376
|
'external' => '0',
|
2377
|
'has_children' => '0',
|
2378
|
'expanded' => '0',
|
2379
|
'weight' => '0',
|
2380
|
'depth' => '3',
|
2381
|
'customized' => '0',
|
2382
|
'p1' => '2',
|
2383
|
'p2' => '17',
|
2384
|
'p3' => '40',
|
2385
|
'p4' => '0',
|
2386
|
'p5' => '0',
|
2387
|
'p6' => '0',
|
2388
|
'p7' => '0',
|
2389
|
'p8' => '0',
|
2390
|
'p9' => '0',
|
2391
|
'updated' => '0',
|
2392
|
))
|
2393
|
->values(array(
|
2394
|
'menu_name' => 'navigation',
|
2395
|
'mlid' => '41',
|
2396
|
'plid' => '15',
|
2397
|
'link_path' => 'admin/settings/site-information',
|
2398
|
'router_path' => 'admin/settings/site-information',
|
2399
|
'link_title' => 'Site information',
|
2400
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:107:"Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.";}}',
|
2401
|
'module' => 'system',
|
2402
|
'hidden' => '0',
|
2403
|
'external' => '0',
|
2404
|
'has_children' => '0',
|
2405
|
'expanded' => '0',
|
2406
|
'weight' => '0',
|
2407
|
'depth' => '3',
|
2408
|
'customized' => '0',
|
2409
|
'p1' => '2',
|
2410
|
'p2' => '15',
|
2411
|
'p3' => '41',
|
2412
|
'p4' => '0',
|
2413
|
'p5' => '0',
|
2414
|
'p6' => '0',
|
2415
|
'p7' => '0',
|
2416
|
'p8' => '0',
|
2417
|
'p9' => '0',
|
2418
|
'updated' => '0',
|
2419
|
))
|
2420
|
->values(array(
|
2421
|
'menu_name' => 'navigation',
|
2422
|
'mlid' => '42',
|
2423
|
'plid' => '15',
|
2424
|
'link_path' => 'admin/settings/site-maintenance',
|
2425
|
'router_path' => 'admin/settings/site-maintenance',
|
2426
|
'link_title' => 'Site maintenance',
|
2427
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:63:"Take the site off-line for maintenance or bring it back online.";}}',
|
2428
|
'module' => 'system',
|
2429
|
'hidden' => '0',
|
2430
|
'external' => '0',
|
2431
|
'has_children' => '0',
|
2432
|
'expanded' => '0',
|
2433
|
'weight' => '0',
|
2434
|
'depth' => '3',
|
2435
|
'customized' => '0',
|
2436
|
'p1' => '2',
|
2437
|
'p2' => '15',
|
2438
|
'p3' => '42',
|
2439
|
'p4' => '0',
|
2440
|
'p5' => '0',
|
2441
|
'p6' => '0',
|
2442
|
'p7' => '0',
|
2443
|
'p8' => '0',
|
2444
|
'p9' => '0',
|
2445
|
'updated' => '0',
|
2446
|
))
|
2447
|
->values(array(
|
2448
|
'menu_name' => 'navigation',
|
2449
|
'mlid' => '43',
|
2450
|
'plid' => '13',
|
2451
|
'link_path' => 'admin/reports/status',
|
2452
|
'router_path' => 'admin/reports/status',
|
2453
|
'link_title' => 'Status report',
|
2454
|
'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:74:\"Get a status report about your site's operation and any detected problems.\";}}",
|
2455
|
'module' => 'system',
|
2456
|
'hidden' => '0',
|
2457
|
'external' => '0',
|
2458
|
'has_children' => '0',
|
2459
|
'expanded' => '0',
|
2460
|
'weight' => '10',
|
2461
|
'depth' => '3',
|
2462
|
'customized' => '0',
|
2463
|
'p1' => '2',
|
2464
|
'p2' => '13',
|
2465
|
'p3' => '43',
|
2466
|
'p4' => '0',
|
2467
|
'p5' => '0',
|
2468
|
'p6' => '0',
|
2469
|
'p7' => '0',
|
2470
|
'p8' => '0',
|
2471
|
'p9' => '0',
|
2472
|
'updated' => '0',
|
2473
|
))
|
2474
|
->values(array(
|
2475
|
'menu_name' => 'navigation',
|
2476
|
'mlid' => '44',
|
2477
|
'plid' => '14',
|
2478
|
'link_path' => 'admin/build/themes',
|
2479
|
'router_path' => 'admin/build/themes',
|
2480
|
'link_title' => 'Themes',
|
2481
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:57:"Change which theme your site uses or allows users to set.";}}',
|
2482
|
'module' => 'system',
|
2483
|
'hidden' => '0',
|
2484
|
'external' => '0',
|
2485
|
'has_children' => '0',
|
2486
|
'expanded' => '0',
|
2487
|
'weight' => '0',
|
2488
|
'depth' => '3',
|
2489
|
'customized' => '0',
|
2490
|
'p1' => '2',
|
2491
|
'p2' => '14',
|
2492
|
'p3' => '44',
|
2493
|
'p4' => '0',
|
2494
|
'p5' => '0',
|
2495
|
'p6' => '0',
|
2496
|
'p7' => '0',
|
2497
|
'p8' => '0',
|
2498
|
'p9' => '0',
|
2499
|
'updated' => '0',
|
2500
|
))
|
2501
|
->values(array(
|
2502
|
'menu_name' => 'navigation',
|
2503
|
'mlid' => '45',
|
2504
|
'plid' => '13',
|
2505
|
'link_path' => 'admin/reports/access-denied',
|
2506
|
'router_path' => 'admin/reports/access-denied',
|
2507
|
'link_title' => "Top 'access denied' errors",
|
2508
|
'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"View 'access denied' errors (403s).\";}}",
|
2509
|
'module' => 'system',
|
2510
|
'hidden' => '0',
|
2511
|
'external' => '0',
|
2512
|
'has_children' => '0',
|
2513
|
'expanded' => '0',
|
2514
|
'weight' => '0',
|
2515
|
'depth' => '3',
|
2516
|
'customized' => '0',
|
2517
|
'p1' => '2',
|
2518
|
'p2' => '13',
|
2519
|
'p3' => '45',
|
2520
|
'p4' => '0',
|
2521
|
'p5' => '0',
|
2522
|
'p6' => '0',
|
2523
|
'p7' => '0',
|
2524
|
'p8' => '0',
|
2525
|
'p9' => '0',
|
2526
|
'updated' => '0',
|
2527
|
))
|
2528
|
->values(array(
|
2529
|
'menu_name' => 'navigation',
|
2530
|
'mlid' => '46',
|
2531
|
'plid' => '13',
|
2532
|
'link_path' => 'admin/reports/page-not-found',
|
2533
|
'router_path' => 'admin/reports/page-not-found',
|
2534
|
'link_title' => "Top 'page not found' errors",
|
2535
|
'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"View 'page not found' errors (404s).\";}}",
|
2536
|
'module' => 'system',
|
2537
|
'hidden' => '0',
|
2538
|
'external' => '0',
|
2539
|
'has_children' => '0',
|
2540
|
'expanded' => '0',
|
2541
|
'weight' => '0',
|
2542
|
'depth' => '3',
|
2543
|
'customized' => '0',
|
2544
|
'p1' => '2',
|
2545
|
'p2' => '13',
|
2546
|
'p3' => '46',
|
2547
|
'p4' => '0',
|
2548
|
'p5' => '0',
|
2549
|
'p6' => '0',
|
2550
|
'p7' => '0',
|
2551
|
'p8' => '0',
|
2552
|
'p9' => '0',
|
2553
|
'updated' => '0',
|
2554
|
))
|
2555
|
->values(array(
|
2556
|
'menu_name' => 'navigation',
|
2557
|
'mlid' => '47',
|
2558
|
'plid' => '17',
|
2559
|
'link_path' => 'admin/user/settings',
|
2560
|
'router_path' => 'admin/user/settings',
|
2561
|
'link_title' => 'User settings',
|
2562
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:101:"Configure default behavior of users, including registration requirements, e-mails, and user pictures.";}}',
|
2563
|
'module' => 'system',
|
2564
|
'hidden' => '0',
|
2565
|
'external' => '0',
|
2566
|
'has_children' => '0',
|
2567
|
'expanded' => '0',
|
2568
|
'weight' => '0',
|
2569
|
'depth' => '3',
|
2570
|
'customized' => '0',
|
2571
|
'p1' => '2',
|
2572
|
'p2' => '17',
|
2573
|
'p3' => '47',
|
2574
|
'p4' => '0',
|
2575
|
'p5' => '0',
|
2576
|
'p6' => '0',
|
2577
|
'p7' => '0',
|
2578
|
'p8' => '0',
|
2579
|
'p9' => '0',
|
2580
|
'updated' => '0',
|
2581
|
))
|
2582
|
->values(array(
|
2583
|
'menu_name' => 'navigation',
|
2584
|
'mlid' => '48',
|
2585
|
'plid' => '17',
|
2586
|
'link_path' => 'admin/user/user',
|
2587
|
'router_path' => 'admin/user/user',
|
2588
|
'link_title' => 'Users',
|
2589
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:26:"List, add, and edit users.";}}',
|
2590
|
'module' => 'system',
|
2591
|
'hidden' => '0',
|
2592
|
'external' => '0',
|
2593
|
'has_children' => '0',
|
2594
|
'expanded' => '0',
|
2595
|
'weight' => '0',
|
2596
|
'depth' => '3',
|
2597
|
'customized' => '0',
|
2598
|
'p1' => '2',
|
2599
|
'p2' => '17',
|
2600
|
'p3' => '48',
|
2601
|
'p4' => '0',
|
2602
|
'p5' => '0',
|
2603
|
'p6' => '0',
|
2604
|
'p7' => '0',
|
2605
|
'p8' => '0',
|
2606
|
'p9' => '0',
|
2607
|
'updated' => '0',
|
2608
|
))
|
2609
|
->values(array(
|
2610
|
'menu_name' => 'navigation',
|
2611
|
'mlid' => '49',
|
2612
|
'plid' => '32',
|
2613
|
'link_path' => 'admin/settings/filters/%',
|
2614
|
'router_path' => 'admin/settings/filters/%',
|
2615
|
'link_title' => '',
|
2616
|
'options' => 'a:0:{}',
|
2617
|
'module' => 'system',
|
2618
|
'hidden' => '-1',
|
2619
|
'external' => '0',
|
2620
|
'has_children' => '0',
|
2621
|
'expanded' => '0',
|
2622
|
'weight' => '0',
|
2623
|
'depth' => '4',
|
2624
|
'customized' => '0',
|
2625
|
'p1' => '2',
|
2626
|
'p2' => '15',
|
2627
|
'p3' => '32',
|
2628
|
'p4' => '49',
|
2629
|
'p5' => '0',
|
2630
|
'p6' => '0',
|
2631
|
'p7' => '0',
|
2632
|
'p8' => '0',
|
2633
|
'p9' => '0',
|
2634
|
'updated' => '0',
|
2635
|
))
|
2636
|
->values(array(
|
2637
|
'menu_name' => 'navigation',
|
2638
|
'mlid' => '50',
|
2639
|
'plid' => '23',
|
2640
|
'link_path' => 'admin/settings/clean-urls/check',
|
2641
|
'router_path' => 'admin/settings/clean-urls/check',
|
2642
|
'link_title' => 'Clean URL check',
|
2643
|
'options' => 'a:0:{}',
|
2644
|
'module' => 'system',
|
2645
|
'hidden' => '-1',
|
2646
|
'external' => '0',
|
2647
|
'has_children' => '0',
|
2648
|
'expanded' => '0',
|
2649
|
'weight' => '0',
|
2650
|
'depth' => '4',
|
2651
|
'customized' => '0',
|
2652
|
'p1' => '2',
|
2653
|
'p2' => '15',
|
2654
|
'p3' => '23',
|
2655
|
'p4' => '50',
|
2656
|
'p5' => '0',
|
2657
|
'p6' => '0',
|
2658
|
'p7' => '0',
|
2659
|
'p8' => '0',
|
2660
|
'p9' => '0',
|
2661
|
'updated' => '0',
|
2662
|
))
|
2663
|
->values(array(
|
2664
|
'menu_name' => 'navigation',
|
2665
|
'mlid' => '51',
|
2666
|
'plid' => '20',
|
2667
|
'link_path' => 'admin/settings/actions/configure',
|
2668
|
'router_path' => 'admin/settings/actions/configure',
|
2669
|
'link_title' => 'Configure an advanced action',
|
2670
|
'options' => 'a:0:{}',
|
2671
|
'module' => 'system',
|
2672
|
'hidden' => '-1',
|
2673
|
'external' => '0',
|
2674
|
'has_children' => '0',
|
2675
|
'expanded' => '0',
|
2676
|
'weight' => '0',
|
2677
|
'depth' => '4',
|
2678
|
'customized' => '0',
|
2679
|
'p1' => '2',
|
2680
|
'p2' => '15',
|
2681
|
'p3' => '20',
|
2682
|
'p4' => '51',
|
2683
|
'p5' => '0',
|
2684
|
'p6' => '0',
|
2685
|
'p7' => '0',
|
2686
|
'p8' => '0',
|
2687
|
'p9' => '0',
|
2688
|
'updated' => '0',
|
2689
|
))
|
2690
|
->values(array(
|
2691
|
'menu_name' => 'navigation',
|
2692
|
'mlid' => '52',
|
2693
|
'plid' => '22',
|
2694
|
'link_path' => 'admin/build/block/configure',
|
2695
|
'router_path' => 'admin/build/block/configure',
|
2696
|
'link_title' => 'Configure block',
|
2697
|
'options' => 'a:0:{}',
|
2698
|
'module' => 'system',
|
2699
|
'hidden' => '-1',
|
2700
|
'external' => '0',
|
2701
|
'has_children' => '0',
|
2702
|
'expanded' => '0',
|
2703
|
'weight' => '0',
|
2704
|
'depth' => '4',
|
2705
|
'customized' => '0',
|
2706
|
'p1' => '2',
|
2707
|
'p2' => '14',
|
2708
|
'p3' => '22',
|
2709
|
'p4' => '52',
|
2710
|
'p5' => '0',
|
2711
|
'p6' => '0',
|
2712
|
'p7' => '0',
|
2713
|
'p8' => '0',
|
2714
|
'p9' => '0',
|
2715
|
'updated' => '0',
|
2716
|
))
|
2717
|
->values(array(
|
2718
|
'menu_name' => 'navigation',
|
2719
|
'mlid' => '53',
|
2720
|
'plid' => '33',
|
2721
|
'link_path' => 'admin/settings/logging/dblog',
|
2722
|
'router_path' => 'admin/settings/logging/dblog',
|
2723
|
'link_title' => 'Database logging',
|
2724
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:169:"Settings for logging to the Drupal database logs. This is the most common method for small to medium sites on shared hosting. The logs are viewable from the admin pages.";}}',
|
2725
|
'module' => 'system',
|
2726
|
'hidden' => '0',
|
2727
|
'external' => '0',
|
2728
|
'has_children' => '0',
|
2729
|
'expanded' => '0',
|
2730
|
'weight' => '0',
|
2731
|
'depth' => '4',
|
2732
|
'customized' => '0',
|
2733
|
'p1' => '2',
|
2734
|
'p2' => '15',
|
2735
|
'p3' => '33',
|
2736
|
'p4' => '53',
|
2737
|
'p5' => '0',
|
2738
|
'p6' => '0',
|
2739
|
'p7' => '0',
|
2740
|
'p8' => '0',
|
2741
|
'p9' => '0',
|
2742
|
'updated' => '0',
|
2743
|
))
|
2744
|
->values(array(
|
2745
|
'menu_name' => 'navigation',
|
2746
|
'mlid' => '54',
|
2747
|
'plid' => '26',
|
2748
|
'link_path' => 'admin/settings/date-time/lookup',
|
2749
|
'router_path' => 'admin/settings/date-time/lookup',
|
2750
|
'link_title' => 'Date and time lookup',
|
2751
|
'options' => 'a:0:{}',
|
2752
|
'module' => 'system',
|
2753
|
'hidden' => '-1',
|
2754
|
'external' => '0',
|
2755
|
'has_children' => '0',
|
2756
|
'expanded' => '0',
|
2757
|
'weight' => '0',
|
2758
|
'depth' => '4',
|
2759
|
'customized' => '0',
|
2760
|
'p1' => '2',
|
2761
|
'p2' => '15',
|
2762
|
'p3' => '26',
|
2763
|
'p4' => '54',
|
2764
|
'p5' => '0',
|
2765
|
'p6' => '0',
|
2766
|
'p7' => '0',
|
2767
|
'p8' => '0',
|
2768
|
'p9' => '0',
|
2769
|
'updated' => '0',
|
2770
|
))
|
2771
|
->values(array(
|
2772
|
'menu_name' => 'navigation',
|
2773
|
'mlid' => '55',
|
2774
|
'plid' => '22',
|
2775
|
'link_path' => 'admin/build/block/delete',
|
2776
|
'router_path' => 'admin/build/block/delete',
|
2777
|
'link_title' => 'Delete block',
|
2778
|
'options' => 'a:0:{}',
|
2779
|
'module' => 'system',
|
2780
|
'hidden' => '-1',
|
2781
|
'external' => '0',
|
2782
|
'has_children' => '0',
|
2783
|
'expanded' => '0',
|
2784
|
'weight' => '0',
|
2785
|
'depth' => '4',
|
2786
|
'customized' => '0',
|
2787
|
'p1' => '2',
|
2788
|
'p2' => '14',
|
2789
|
'p3' => '22',
|
2790
|
'p4' => '55',
|
2791
|
'p5' => '0',
|
2792
|
'p6' => '0',
|
2793
|
'p7' => '0',
|
2794
|
'p8' => '0',
|
2795
|
'p9' => '0',
|
2796
|
'updated' => '0',
|
2797
|
))
|
2798
|
->values(array(
|
2799
|
'menu_name' => 'navigation',
|
2800
|
'mlid' => '56',
|
2801
|
'plid' => '32',
|
2802
|
'link_path' => 'admin/settings/filters/delete',
|
2803
|
'router_path' => 'admin/settings/filters/delete',
|
2804
|
'link_title' => 'Delete input format',
|
2805
|
'options' => 'a:0:{}',
|
2806
|
'module' => 'system',
|
2807
|
'hidden' => '-1',
|
2808
|
'external' => '0',
|
2809
|
'has_children' => '0',
|
2810
|
'expanded' => '0',
|
2811
|
'weight' => '0',
|
2812
|
'depth' => '4',
|
2813
|
'customized' => '0',
|
2814
|
'p1' => '2',
|
2815
|
'p2' => '15',
|
2816
|
'p3' => '32',
|
2817
|
'p4' => '56',
|
2818
|
'p5' => '0',
|
2819
|
'p6' => '0',
|
2820
|
'p7' => '0',
|
2821
|
'p8' => '0',
|
2822
|
'p9' => '0',
|
2823
|
'updated' => '0',
|
2824
|
))
|
2825
|
->values(array(
|
2826
|
'menu_name' => 'navigation',
|
2827
|
'mlid' => '57',
|
2828
|
'plid' => '19',
|
2829
|
'link_path' => 'admin/user/rules/delete',
|
2830
|
'router_path' => 'admin/user/rules/delete',
|
2831
|
'link_title' => 'Delete rule',
|
2832
|
'options' => 'a:0:{}',
|
2833
|
'module' => 'system',
|
2834
|
'hidden' => '-1',
|
2835
|
'external' => '0',
|
2836
|
'has_children' => '0',
|
2837
|
'expanded' => '0',
|
2838
|
'weight' => '0',
|
2839
|
'depth' => '4',
|
2840
|
'customized' => '0',
|
2841
|
'p1' => '2',
|
2842
|
'p2' => '17',
|
2843
|
'p3' => '19',
|
2844
|
'p4' => '57',
|
2845
|
'p5' => '0',
|
2846
|
'p6' => '0',
|
2847
|
'p7' => '0',
|
2848
|
'p8' => '0',
|
2849
|
'p9' => '0',
|
2850
|
'updated' => '0',
|
2851
|
))
|
2852
|
->values(array(
|
2853
|
'menu_name' => 'navigation',
|
2854
|
'mlid' => '58',
|
2855
|
'plid' => '13',
|
2856
|
'link_path' => 'admin/reports/event/%',
|
2857
|
'router_path' => 'admin/reports/event/%',
|
2858
|
'link_title' => 'Details',
|
2859
|
'options' => 'a:0:{}',
|
2860
|
'module' => 'system',
|
2861
|
'hidden' => '-1',
|
2862
|
'external' => '0',
|
2863
|
'has_children' => '0',
|
2864
|
'expanded' => '0',
|
2865
|
'weight' => '0',
|
2866
|
'depth' => '3',
|
2867
|
'customized' => '0',
|
2868
|
'p1' => '2',
|
2869
|
'p2' => '13',
|
2870
|
'p3' => '58',
|
2871
|
'p4' => '0',
|
2872
|
'p5' => '0',
|
2873
|
'p6' => '0',
|
2874
|
'p7' => '0',
|
2875
|
'p8' => '0',
|
2876
|
'p9' => '0',
|
2877
|
'updated' => '0',
|
2878
|
))
|
2879
|
->values(array(
|
2880
|
'menu_name' => 'navigation',
|
2881
|
'mlid' => '59',
|
2882
|
'plid' => '40',
|
2883
|
'link_path' => 'admin/user/roles/edit',
|
2884
|
'router_path' => 'admin/user/roles/edit',
|
2885
|
'link_title' => 'Edit role',
|
2886
|
'options' => 'a:0:{}',
|
2887
|
'module' => 'system',
|
2888
|
'hidden' => '-1',
|
2889
|
'external' => '0',
|
2890
|
'has_children' => '0',
|
2891
|
'expanded' => '0',
|
2892
|
'weight' => '0',
|
2893
|
'depth' => '4',
|
2894
|
'customized' => '0',
|
2895
|
'p1' => '2',
|
2896
|
'p2' => '17',
|
2897
|
'p3' => '40',
|
2898
|
'p4' => '59',
|
2899
|
'p5' => '0',
|
2900
|
'p6' => '0',
|
2901
|
'p7' => '0',
|
2902
|
'p8' => '0',
|
2903
|
'p9' => '0',
|
2904
|
'updated' => '0',
|
2905
|
))
|
2906
|
->values(array(
|
2907
|
'menu_name' => 'navigation',
|
2908
|
'mlid' => '60',
|
2909
|
'plid' => '19',
|
2910
|
'link_path' => 'admin/user/rules/edit',
|
2911
|
'router_path' => 'admin/user/rules/edit',
|
2912
|
'link_title' => 'Edit rule',
|
2913
|
'options' => 'a:0:{}',
|
2914
|
'module' => 'system',
|
2915
|
'hidden' => '-1',
|
2916
|
'external' => '0',
|
2917
|
'has_children' => '0',
|
2918
|
'expanded' => '0',
|
2919
|
'weight' => '0',
|
2920
|
'depth' => '4',
|
2921
|
'customized' => '0',
|
2922
|
'p1' => '2',
|
2923
|
'p2' => '17',
|
2924
|
'p3' => '19',
|
2925
|
'p4' => '60',
|
2926
|
'p5' => '0',
|
2927
|
'p6' => '0',
|
2928
|
'p7' => '0',
|
2929
|
'p8' => '0',
|
2930
|
'p9' => '0',
|
2931
|
'updated' => '0',
|
2932
|
))
|
2933
|
->values(array(
|
2934
|
'menu_name' => 'navigation',
|
2935
|
'mlid' => '61',
|
2936
|
'plid' => '43',
|
2937
|
'link_path' => 'admin/reports/status/php',
|
2938
|
'router_path' => 'admin/reports/status/php',
|
2939
|
'link_title' => 'PHP',
|
2940
|
'options' => 'a:0:{}',
|
2941
|
'module' => 'system',
|
2942
|
'hidden' => '-1',
|
2943
|
'external' => '0',
|
2944
|
'has_children' => '0',
|
2945
|
'expanded' => '0',
|
2946
|
'weight' => '0',
|
2947
|
'depth' => '4',
|
2948
|
'customized' => '0',
|
2949
|
'p1' => '2',
|
2950
|
'p2' => '13',
|
2951
|
'p3' => '43',
|
2952
|
'p4' => '61',
|
2953
|
'p5' => '0',
|
2954
|
'p6' => '0',
|
2955
|
'p7' => '0',
|
2956
|
'p8' => '0',
|
2957
|
'p9' => '0',
|
2958
|
'updated' => '0',
|
2959
|
))
|
2960
|
->values(array(
|
2961
|
'menu_name' => 'navigation',
|
2962
|
'mlid' => '62',
|
2963
|
'plid' => '37',
|
2964
|
'link_path' => 'admin/content/node-settings/rebuild',
|
2965
|
'router_path' => 'admin/content/node-settings/rebuild',
|
2966
|
'link_title' => 'Rebuild permissions',
|
2967
|
'options' => 'a:0:{}',
|
2968
|
'module' => 'system',
|
2969
|
'hidden' => '-1',
|
2970
|
'external' => '0',
|
2971
|
'has_children' => '0',
|
2972
|
'expanded' => '0',
|
2973
|
'weight' => '0',
|
2974
|
'depth' => '4',
|
2975
|
'customized' => '0',
|
2976
|
'p1' => '2',
|
2977
|
'p2' => '10',
|
2978
|
'p3' => '37',
|
2979
|
'p4' => '62',
|
2980
|
'p5' => '0',
|
2981
|
'p6' => '0',
|
2982
|
'p7' => '0',
|
2983
|
'p8' => '0',
|
2984
|
'p9' => '0',
|
2985
|
'updated' => '0',
|
2986
|
))
|
2987
|
->values(array(
|
2988
|
'menu_name' => 'navigation',
|
2989
|
'mlid' => '63',
|
2990
|
'plid' => '20',
|
2991
|
'link_path' => 'admin/settings/actions/orphan',
|
2992
|
'router_path' => 'admin/settings/actions/orphan',
|
2993
|
'link_title' => 'Remove orphans',
|
2994
|
'options' => 'a:0:{}',
|
2995
|
'module' => 'system',
|
2996
|
'hidden' => '-1',
|
2997
|
'external' => '0',
|
2998
|
'has_children' => '0',
|
2999
|
'expanded' => '0',
|
3000
|
'weight' => '0',
|
3001
|
'depth' => '4',
|
3002
|
'customized' => '0',
|
3003
|
'p1' => '2',
|
3004
|
'p2' => '15',
|
3005
|
'p3' => '20',
|
3006
|
'p4' => '63',
|
3007
|
'p5' => '0',
|
3008
|
'p6' => '0',
|
3009
|
'p7' => '0',
|
3010
|
'p8' => '0',
|
3011
|
'p9' => '0',
|
3012
|
'updated' => '0',
|
3013
|
))
|
3014
|
->values(array(
|
3015
|
'menu_name' => 'navigation',
|
3016
|
'mlid' => '64',
|
3017
|
'plid' => '43',
|
3018
|
'link_path' => 'admin/reports/status/run-cron',
|
3019
|
'router_path' => 'admin/reports/status/run-cron',
|
3020
|
'link_title' => 'Run cron',
|
3021
|
'options' => 'a:0:{}',
|
3022
|
'module' => 'system',
|
3023
|
'hidden' => '-1',
|
3024
|
'external' => '0',
|
3025
|
'has_children' => '0',
|
3026
|
'expanded' => '0',
|
3027
|
'weight' => '0',
|
3028
|
'depth' => '4',
|
3029
|
'customized' => '0',
|
3030
|
'p1' => '2',
|
3031
|
'p2' => '13',
|
3032
|
'p3' => '43',
|
3033
|
'p4' => '64',
|
3034
|
'p5' => '0',
|
3035
|
'p6' => '0',
|
3036
|
'p7' => '0',
|
3037
|
'p8' => '0',
|
3038
|
'p9' => '0',
|
3039
|
'updated' => '0',
|
3040
|
))
|
3041
|
->values(array(
|
3042
|
'menu_name' => 'navigation',
|
3043
|
'mlid' => '65',
|
3044
|
'plid' => '43',
|
3045
|
'link_path' => 'admin/reports/status/sql',
|
3046
|
'router_path' => 'admin/reports/status/sql',
|
3047
|
'link_title' => 'SQL',
|
3048
|
'options' => 'a:0:{}',
|
3049
|
'module' => 'system',
|
3050
|
'hidden' => '-1',
|
3051
|
'external' => '0',
|
3052
|
'has_children' => '0',
|
3053
|
'expanded' => '0',
|
3054
|
'weight' => '0',
|
3055
|
'depth' => '4',
|
3056
|
'customized' => '0',
|
3057
|
'p1' => '2',
|
3058
|
'p2' => '13',
|
3059
|
'p3' => '43',
|
3060
|
'p4' => '65',
|
3061
|
'p5' => '0',
|
3062
|
'p6' => '0',
|
3063
|
'p7' => '0',
|
3064
|
'p8' => '0',
|
3065
|
'p9' => '0',
|
3066
|
'updated' => '0',
|
3067
|
))
|
3068
|
->values(array(
|
3069
|
'menu_name' => 'navigation',
|
3070
|
'mlid' => '66',
|
3071
|
'plid' => '20',
|
3072
|
'link_path' => 'admin/settings/actions/delete/%',
|
3073
|
'router_path' => 'admin/settings/actions/delete/%',
|
3074
|
'link_title' => 'Delete action',
|
3075
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:17:"Delete an action.";}}',
|
3076
|
'module' => 'system',
|
3077
|
'hidden' => '-1',
|
3078
|
'external' => '0',
|
3079
|
'has_children' => '0',
|
3080
|
'expanded' => '0',
|
3081
|
'weight' => '0',
|
3082
|
'depth' => '4',
|
3083
|
'customized' => '0',
|
3084
|
'p1' => '2',
|
3085
|
'p2' => '15',
|
3086
|
'p3' => '20',
|
3087
|
'p4' => '66',
|
3088
|
'p5' => '0',
|
3089
|
'p6' => '0',
|
3090
|
'p7' => '0',
|
3091
|
'p8' => '0',
|
3092
|
'p9' => '0',
|
3093
|
'updated' => '0',
|
3094
|
))
|
3095
|
->values(array(
|
3096
|
'menu_name' => 'navigation',
|
3097
|
'mlid' => '67',
|
3098
|
'plid' => '22',
|
3099
|
'link_path' => 'admin/build/block/list/js',
|
3100
|
'router_path' => 'admin/build/block/list/js',
|
3101
|
'link_title' => 'JavaScript List Form',
|
3102
|
'options' => 'a:0:{}',
|
3103
|
'module' => 'system',
|
3104
|
'hidden' => '-1',
|
3105
|
'external' => '0',
|
3106
|
'has_children' => '0',
|
3107
|
'expanded' => '0',
|
3108
|
'weight' => '0',
|
3109
|
'depth' => '4',
|
3110
|
'customized' => '0',
|
3111
|
'p1' => '2',
|
3112
|
'p2' => '14',
|
3113
|
'p3' => '22',
|
3114
|
'p4' => '67',
|
3115
|
'p5' => '0',
|
3116
|
'p6' => '0',
|
3117
|
'p7' => '0',
|
3118
|
'p8' => '0',
|
3119
|
'p9' => '0',
|
3120
|
'updated' => '0',
|
3121
|
))
|
3122
|
->values(array(
|
3123
|
'menu_name' => 'navigation',
|
3124
|
'mlid' => '68',
|
3125
|
'plid' => '34',
|
3126
|
'link_path' => 'admin/build/modules/list/confirm',
|
3127
|
'router_path' => 'admin/build/modules/list/confirm',
|
3128
|
'link_title' => 'List',
|
3129
|
'options' => 'a:0:{}',
|
3130
|
'module' => 'system',
|
3131
|
'hidden' => '-1',
|
3132
|
'external' => '0',
|
3133
|
'has_children' => '0',
|
3134
|
'expanded' => '0',
|
3135
|
'weight' => '0',
|
3136
|
'depth' => '4',
|
3137
|
'customized' => '0',
|
3138
|
'p1' => '2',
|
3139
|
'p2' => '14',
|
3140
|
'p3' => '34',
|
3141
|
'p4' => '68',
|
3142
|
'p5' => '0',
|
3143
|
'p6' => '0',
|
3144
|
'p7' => '0',
|
3145
|
'p8' => '0',
|
3146
|
'p9' => '0',
|
3147
|
'updated' => '0',
|
3148
|
))
|
3149
|
->values(array(
|
3150
|
'menu_name' => 'navigation',
|
3151
|
'mlid' => '69',
|
3152
|
'plid' => '0',
|
3153
|
'link_path' => 'user/reset/%/%/%',
|
3154
|
'router_path' => 'user/reset/%/%/%',
|
3155
|
'link_title' => 'Reset password',
|
3156
|
'options' => 'a:0:{}',
|
3157
|
'module' => 'system',
|
3158
|
'hidden' => '-1',
|
3159
|
'external' => '0',
|
3160
|
'has_children' => '0',
|
3161
|
'expanded' => '0',
|
3162
|
'weight' => '0',
|
3163
|
'depth' => '1',
|
3164
|
'customized' => '0',
|
3165
|
'p1' => '69',
|
3166
|
'p2' => '0',
|
3167
|
'p3' => '0',
|
3168
|
'p4' => '0',
|
3169
|
'p5' => '0',
|
3170
|
'p6' => '0',
|
3171
|
'p7' => '0',
|
3172
|
'p8' => '0',
|
3173
|
'p9' => '0',
|
3174
|
'updated' => '0',
|
3175
|
))
|
3176
|
->values(array(
|
3177
|
'menu_name' => 'navigation',
|
3178
|
'mlid' => '70',
|
3179
|
'plid' => '34',
|
3180
|
'link_path' => 'admin/build/modules/uninstall/confirm',
|
3181
|
'router_path' => 'admin/build/modules/uninstall/confirm',
|
3182
|
'link_title' => 'Uninstall',
|
3183
|
'options' => 'a:0:{}',
|
3184
|
'module' => 'system',
|
3185
|
'hidden' => '-1',
|
3186
|
'external' => '0',
|
3187
|
'has_children' => '0',
|
3188
|
'expanded' => '0',
|
3189
|
'weight' => '0',
|
3190
|
'depth' => '4',
|
3191
|
'customized' => '0',
|
3192
|
'p1' => '2',
|
3193
|
'p2' => '14',
|
3194
|
'p3' => '34',
|
3195
|
'p4' => '70',
|
3196
|
'p5' => '0',
|
3197
|
'p6' => '0',
|
3198
|
'p7' => '0',
|
3199
|
'p8' => '0',
|
3200
|
'p9' => '0',
|
3201
|
'updated' => '0',
|
3202
|
))
|
3203
|
->values(array(
|
3204
|
'menu_name' => 'navigation',
|
3205
|
'mlid' => '71',
|
3206
|
'plid' => '0',
|
3207
|
'link_path' => 'node/%/revisions/%/delete',
|
3208
|
'router_path' => 'node/%/revisions/%/delete',
|
3209
|
'link_title' => 'Delete earlier revision',
|
3210
|
'options' => 'a:0:{}',
|
3211
|
'module' => 'system',
|
3212
|
'hidden' => '-1',
|
3213
|
'external' => '0',
|
3214
|
'has_children' => '0',
|
3215
|
'expanded' => '0',
|
3216
|
'weight' => '0',
|
3217
|
'depth' => '1',
|
3218
|
'customized' => '0',
|
3219
|
'p1' => '71',
|
3220
|
'p2' => '0',
|
3221
|
'p3' => '0',
|
3222
|
'p4' => '0',
|
3223
|
'p5' => '0',
|
3224
|
'p6' => '0',
|
3225
|
'p7' => '0',
|
3226
|
'p8' => '0',
|
3227
|
'p9' => '0',
|
3228
|
'updated' => '0',
|
3229
|
))
|
3230
|
->values(array(
|
3231
|
'menu_name' => 'navigation',
|
3232
|
'mlid' => '72',
|
3233
|
'plid' => '0',
|
3234
|
'link_path' => 'node/%/revisions/%/revert',
|
3235
|
'router_path' => 'node/%/revisions/%/revert',
|
3236
|
'link_title' => 'Revert to earlier revision',
|
3237
|
'options' => 'a:0:{}',
|
3238
|
'module' => 'system',
|
3239
|
'hidden' => '-1',
|
3240
|
'external' => '0',
|
3241
|
'has_children' => '0',
|
3242
|
'expanded' => '0',
|
3243
|
'weight' => '0',
|
3244
|
'depth' => '1',
|
3245
|
'customized' => '0',
|
3246
|
'p1' => '72',
|
3247
|
'p2' => '0',
|
3248
|
'p3' => '0',
|
3249
|
'p4' => '0',
|
3250
|
'p5' => '0',
|
3251
|
'p6' => '0',
|
3252
|
'p7' => '0',
|
3253
|
'p8' => '0',
|
3254
|
'p9' => '0',
|
3255
|
'updated' => '0',
|
3256
|
))
|
3257
|
->values(array(
|
3258
|
'menu_name' => 'navigation',
|
3259
|
'mlid' => '73',
|
3260
|
'plid' => '0',
|
3261
|
'link_path' => 'node/%/revisions/%/view',
|
3262
|
'router_path' => 'node/%/revisions/%/view',
|
3263
|
'link_title' => 'Revisions',
|
3264
|
'options' => 'a:0:{}',
|
3265
|
'module' => 'system',
|
3266
|
'hidden' => '-1',
|
3267
|
'external' => '0',
|
3268
|
'has_children' => '0',
|
3269
|
'expanded' => '0',
|
3270
|
'weight' => '0',
|
3271
|
'depth' => '1',
|
3272
|
'customized' => '0',
|
3273
|
'p1' => '73',
|
3274
|
'p2' => '0',
|
3275
|
'p3' => '0',
|
3276
|
'p4' => '0',
|
3277
|
'p5' => '0',
|
3278
|
'p6' => '0',
|
3279
|
'p7' => '0',
|
3280
|
'p8' => '0',
|
3281
|
'p9' => '0',
|
3282
|
'updated' => '0',
|
3283
|
))
|
3284
|
->values(array(
|
3285
|
'menu_name' => 'navigation',
|
3286
|
'mlid' => '74',
|
3287
|
'plid' => '13',
|
3288
|
'link_path' => 'admin/reports/updates',
|
3289
|
'router_path' => 'admin/reports/updates',
|
3290
|
'link_title' => 'Available updates',
|
3291
|
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:82:"Get a status report about available updates for your installed modules and themes.";}}',
|
3292
|
'module' => 'system',
|
3293
|
'hidden' => '0',
|
3294
|
'external' => '0',
|
3295
|
'has_children' => '0',
|
3296
|
'expanded' => '0',
|
3297
|
'weight' => '10',
|
3298
|
'depth' => '3',
|
3299
|
'customized' => '0',
|
3300
|
'p1' => '2',
|
3301
|
'p2' => '13',
|
3302
|
'p3' => '74',
|
3303
|
'p4' => '0',
|
3304
|
'p5' => '0',
|
3305
|
'p6' => '0',
|
3306
|
'p7' => '0',
|
3307
|
'p8' => '0',
|
3308
|
'p9' => '0',
|
3309
|
'updated' => '0',
|
3310
|
))
|
3311
|
->values(array(
|
3312
|
'menu_name' => 'navigation',
|
3313
|
'mlid' => '75',
|
3314
|
'plid' => '11',
|
3315
|
'link_path' => 'node/add/page',
|
3316
|
'router_path' => 'node/add/page',
|
3317
|
'link_title' => 'Page',
|
3318
|
'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:296:\"A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.\";}}",
|
3319
|
'module' => 'system',
|
3320
|
'hidden' => '0',
|
3321
|
'external' => '0',
|
3322
|
'has_children' => '0',
|
3323
|
'expanded' => '0',
|
3324
|
'weight' => '0',
|
3325
|
'depth' => '2',
|
3326
|
'customized' => '0',
|
3327
|
'p1' => '11',
|
3328
|
'p2' => '75',
|
3329
|
'p3' => '0',
|
3330
|
'p4' => '0',
|
3331
|
'p5' => '0',
|
3332
|
'p6' => '0',
|
3333
|
'p7' => '0',
|
3334
|
'p8' => '0',
|
3335
|
'p9' => '0',
|
3336
|
'updated' => '0',
|
3337
|
))
|
3338
|
->values(array(
|
3339
|
'menu_name' => 'navigation',
|
3340
|
'mlid' => '76',
|
3341
|
'plid' => '11',
|
3342
|
'link_path' => 'node/add/story',
|
3343
|
'router_path' => 'node/add/story',
|
3344
|
'link_title' => 'Story',
|
3345
|
'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";}}",
|
3346
|
'module' => 'system',
|
3347
|
'hidden' => '0',
|
3348
|
'external' => '0',
|
3349
|
'has_children' => '0',
|
3350
|
'expanded' => '0',
|
3351
|
'weight' => '0',
|
3352
|
'depth' => '2',
|
3353
|
'customized' => '0',
|
3354
|
'p1' => '11',
|
3355
|
'p2' => '76',
|
3356
|
'p3' => '0',
|
3357
|
'p4' => '0',
|
3358
|
'p5' => '0',
|
3359
|
'p6' => '0',
|
3360
|
'p7' => '0',
|
3361
|
'p8' => '0',
|
3362
|
'p9' => '0',
|
3363
|
'updated' => '0',
|
3364
|
))
|
3365
|
->values(array(
|
3366
|
'menu_name' => 'navigation',
|
3367
|
'mlid' => '77',
|
3368
|
'plid' => '74',
|
3369
|
'link_path' => 'admin/reports/updates/check',
|
3370
|
'router_path' => 'admin/reports/updates/check',
|
3371
|
'link_title' => 'Manual update check',
|
3372
|
'options' => 'a:0:{}',
|
3373
|
'module' => 'system',
|
3374
|
'hidden' => '-1',
|
3375
|
'external' => '0',
|
3376
|
'has_children' => '0',
|
3377
|
'expanded' => '0',
|
3378
|
'weight' => '0',
|
3379
|
'depth' => '4',
|
3380
|
'customized' => '0',
|
3381
|
'p1' => '2',
|
3382
|
'p2' => '13',
|
3383
|
'p3' => '74',
|
3384
|
'p4' => '77',
|
3385
|
'p5' => '0',
|
3386
|
'p6' => '0',
|
3387
|
'p7' => '0',
|
3388
|
'p8' => '0',
|
3389
|
'p9' => '0',
|
3390
|
'updated' => '0',
|
3391
|
))
|
3392
|
->values(array(
|
3393
|
'menu_name' => 'navigation',
|
3394
|
'mlid' => '78',
|
3395
|
'plid' => '10',
|
3396
|
'link_path' => 'admin/content/node-type/page',
|
3397
|
'router_path' => 'admin/content/node-type/page',
|
3398
|
'link_title' => 'Page',
|
3399
|
'options' => 'a:0:{}',
|
3400
|
'module' => 'system',
|
3401
|
'hidden' => '-1',
|
3402
|
'external' => '0',
|
3403
|
'has_children' => '0',
|
3404
|
'expanded' => '0',
|
3405
|
'weight' => '0',
|
3406
|
'depth' => '3',
|
3407
|
'customized' => '0',
|
3408
|
'p1' => '2',
|
3409
|
'p2' => '10',
|
3410
|
'p3' => '78',
|
3411
|
'p4' => '0',
|
3412
|
'p5' => '0',
|
3413
|
'p6' => '0',
|
3414
|
'p7' => '0',
|
3415
|
'p8' => '0',
|
3416
|
'p9' => '0',
|
3417
|
'updated' => '0',
|
3418
|
))
|
3419
|
->values(array(
|
3420
|
'menu_name' => 'navigation',
|
3421
|
'mlid' => '79',
|
3422
|
'plid' => '10',
|
3423
|
'link_path' => 'admin/content/node-type/story',
|
3424
|
'router_path' => 'admin/content/node-type/story',
|
3425
|
'link_title' => 'Story',
|
3426
|
'options' => 'a:0:{}',
|
3427
|
'module' => 'system',
|
3428
|
'hidden' => '-1',
|
3429
|
'external' => '0',
|
3430
|
'has_children' => '0',
|
3431
|
'expanded' => '0',
|
3432
|
'weight' => '0',
|
3433
|
'depth' => '3',
|
3434
|
'customized' => '0',
|
3435
|
'p1' => '2',
|
3436
|
'p2' => '10',
|
3437
|
'p3' => '79',
|
3438
|
'p4' => '0',
|
3439
|
'p5' => '0',
|
3440
|
'p6' => '0',
|
3441
|
'p7' => '0',
|
3442
|
'p8' => '0',
|
3443
|
'p9' => '0',
|
3444
|
'updated' => '0',
|
3445
|
))
|
3446
|
->values(array(
|
3447
|
'menu_name' => 'navigation',
|
3448
|
'mlid' => '80',
|
3449
|
'plid' => '0',
|
3450
|
'link_path' => 'admin/content/node-type/page/delete',
|
3451
|
'router_path' => 'admin/content/node-type/page/delete',
|
3452
|
'link_title' => 'Delete',
|
3453
|
'options' => 'a:0:{}',
|
3454
|
'module' => 'system',
|
3455
|
'hidden' => '-1',
|
3456
|
'external' => '0',
|
3457
|
'has_children' => '0',
|
3458
|
'expanded' => '0',
|
3459
|
'weight' => '0',
|
3460
|
'depth' => '1',
|
3461
|
'customized' => '0',
|
3462
|
'p1' => '80',
|
3463
|
'p2' => '0',
|
3464
|
'p3' => '0',
|
3465
|
'p4' => '0',
|
3466
|
'p5' => '0',
|
3467
|
'p6' => '0',
|
3468
|
'p7' => '0',
|
3469
|
'p8' => '0',
|
3470
|
'p9' => '0',
|
3471
|
'updated' => '0',
|
3472
|
))
|
3473
|
->values(array(
|
3474
|
'menu_name' => 'navigation',
|
3475
|
'mlid' => '81',
|
3476
|
'plid' => '0',
|
3477
|
'link_path' => 'admin/content/node-type/story/delete',
|
3478
|
'router_path' => 'admin/content/node-type/story/delete',
|
3479
|
'link_title' => 'Delete',
|
3480
|
'options' => 'a:0:{}',
|
3481
|
'module' => 'system',
|
3482
|
'hidden' => '-1',
|
3483
|
'external' => '0',
|
3484
|
'has_children' => '0',
|
3485
|
'expanded' => '0',
|
3486
|
'weight' => '0',
|
3487
|
'depth' => '1',
|
3488
|
'customized' => '0',
|
3489
|
'p1' => '81',
|
3490
|
'p2' => '0',
|
3491
|
'p3' => '0',
|
3492
|
'p4' => '0',
|
3493
|
'p5' => '0',
|
3494
|
'p6' => '0',
|
3495
|
'p7' => '0',
|
3496
|
'p8' => '0',
|
3497
|
'p9' => '0',
|
3498
|
'updated' => '0',
|
3499
|
))
|
3500
|
->execute();
|
3501
|
|
3502
|
db_create_table('menu_router', array(
|
3503
|
'fields' => array(
|
3504
|
'path' => array(
|
3505
|
'type' => 'varchar',
|
3506
|
'length' => 255,
|
3507
|
'not null' => TRUE,
|
3508
|
'default' => '',
|
3509
|
),
|
3510
|
'load_functions' => array(
|
3511
|
'type' => 'text',
|
3512
|
'not null' => TRUE,
|
3513
|
),
|
3514
|
'to_arg_functions' => array(
|
3515
|
'type' => 'text',
|
3516
|
'not null' => TRUE,
|
3517
|
),
|
3518
|
'access_callback' => array(
|
3519
|
'type' => 'varchar',
|
3520
|
'length' => 255,
|
3521
|
'not null' => TRUE,
|
3522
|
'default' => '',
|
3523
|
),
|
3524
|
'access_arguments' => array(
|
3525
|
'type' => 'text',
|
3526
|
'not null' => FALSE,
|
3527
|
),
|
3528
|
'page_callback' => array(
|
3529
|
'type' => 'varchar',
|
3530
|
'length' => 255,
|
3531
|
'not null' => TRUE,
|
3532
|
'default' => '',
|
3533
|
),
|
3534
|
'page_arguments' => array(
|
3535
|
'type' => 'text',
|
3536
|
'not null' => FALSE,
|
3537
|
),
|
3538
|
'fit' => array(
|
3539
|
'type' => 'int',
|
3540
|
'not null' => TRUE,
|
3541
|
'default' => 0,
|
3542
|
),
|
3543
|
'number_parts' => array(
|
3544
|
'type' => 'int',
|
3545
|
'not null' => TRUE,
|
3546
|
'default' => 0,
|
3547
|
'size' => 'small',
|
3548
|
),
|
3549
|
'tab_parent' => array(
|
3550
|
'type' => 'varchar',
|
3551
|
'length' => 255,
|
3552
|
'not null' => TRUE,
|
3553
|
'default' => '',
|
3554
|
),
|
3555
|
'tab_root' => array(
|
3556
|
'type' => 'varchar',
|
3557
|
'length' => 255,
|
3558
|
'not null' => TRUE,
|
3559
|
'default' => '',
|
3560
|
),
|
3561
|
'title' => array(
|
3562
|
'type' => 'varchar',
|
3563
|
'length' => 255,
|
3564
|
'not null' => TRUE,
|
3565
|
'default' => '',
|
3566
|
),
|
3567
|
'title_callback' => array(
|
3568
|
'type' => 'varchar',
|
3569
|
'length' => 255,
|
3570
|
'not null' => TRUE,
|
3571
|
'default' => '',
|
3572
|
),
|
3573
|
'title_arguments' => array(
|
3574
|
'type' => 'varchar',
|
3575
|
'length' => 255,
|
3576
|
'not null' => TRUE,
|
3577
|
'default' => '',
|
3578
|
),
|
3579
|
'type' => array(
|
3580
|
'type' => 'int',
|
3581
|
'not null' => TRUE,
|
3582
|
'default' => 0,
|
3583
|
),
|
3584
|
'block_callback' => array(
|
3585
|
'type' => 'varchar',
|
3586
|
'length' => 255,
|
3587
|
'not null' => TRUE,
|
3588
|
'default' => '',
|
3589
|
),
|
3590
|
'description' => array(
|
3591
|
'type' => 'text',
|
3592
|
'not null' => TRUE,
|
3593
|
),
|
3594
|
'position' => array(
|
3595
|
'type' => 'varchar',
|
3596
|
'length' => 255,
|
3597
|
'not null' => TRUE,
|
3598
|
'default' => '',
|
3599
|
),
|
3600
|
'weight' => array(
|
3601
|
'type' => 'int',
|
3602
|
'not null' => TRUE,
|
3603
|
'default' => 0,
|
3604
|
),
|
3605
|
'file' => array(
|
3606
|
'type' => 'text',
|
3607
|
'size' => 'medium',
|
3608
|
),
|
3609
|
),
|
3610
|
'indexes' => array(
|
3611
|
'fit' => array(
|
3612
|
'fit',
|
3613
|
),
|
3614
|
'tab_parent' => array(
|
3615
|
'tab_parent',
|
3616
|
),
|
3617
|
'tab_root_weight_title' => array(
|
3618
|
array(
|
3619
|
'tab_root',
|
3620
|
64,
|
3621
|
),
|
3622
|
'weight',
|
3623
|
'title',
|
3624
|
),
|
3625
|
),
|
3626
|
'primary key' => array(
|
3627
|
'path',
|
3628
|
),
|
3629
|
'module' => 'system',
|
3630
|
'name' => 'menu_router',
|
3631
|
));
|
3632
|
db_insert('menu_router')->fields(array(
|
3633
|
'path',
|
3634
|
'load_functions',
|
3635
|
'to_arg_functions',
|
3636
|
'access_callback',
|
3637
|
'access_arguments',
|
3638
|
'page_callback',
|
3639
|
'page_arguments',
|
3640
|
'fit',
|
3641
|
'number_parts',
|
3642
|
'tab_parent',
|
3643
|
'tab_root',
|
3644
|
'title',
|
3645
|
'title_callback',
|
3646
|
'title_arguments',
|
3647
|
'type',
|
3648
|
'block_callback',
|
3649
|
'description',
|
3650
|
'position',
|
3651
|
'weight',
|
3652
|
'file',
|
3653
|
))
|
3654
|
->values(array(
|
3655
|
'path' => 'admin',
|
3656
|
'load_functions' => '',
|
3657
|
'to_arg_functions' => '',
|
3658
|
'access_callback' => 'user_access',
|
3659
|
'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
|
3660
|
'page_callback' => 'system_main_admin_page',
|
3661
|
'page_arguments' => 'a:0:{}',
|
3662
|
'fit' => '1',
|
3663
|
'number_parts' => '1',
|
3664
|
'tab_parent' => '',
|
3665
|
'tab_root' => 'admin',
|
3666
|
'title' => 'Administer',
|
3667
|
'title_callback' => 't',
|
3668
|
'title_arguments' => '',
|
3669
|
'type' => '6',
|
3670
|
'block_callback' => '',
|
3671
|
'description' => '',
|
3672
|
'position' => '',
|
3673
|
'weight' => '9',
|
3674
|
'file' => 'modules/system/system.admin.inc',
|
3675
|
))
|
3676
|
->values(array(
|
3677
|
'path' => 'admin/build',
|
3678
|
'load_functions' => '',
|
3679
|
'to_arg_functions' => '',
|
3680
|
'access_callback' => 'user_access',
|
3681
|
'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
|
3682
|
'page_callback' => 'system_admin_menu_block_page',
|
3683
|
'page_arguments' => 'a:0:{}',
|
3684
|
'fit' => '3',
|
3685
|
'number_parts' => '2',
|
3686
|
'tab_parent' => '',
|
3687
|
'tab_root' => 'admin/build',
|
3688
|
'title' => 'Site building',
|
3689
|
'title_callback' => 't',
|
3690
|
'title_arguments' => '',
|
3691
|
'type' => '6',
|
3692
|
'block_callback' => '',
|
3693
|
'description' => 'Control how your site looks and feels.',
|
3694
|
'position' => 'right',
|
3695
|
'weight' => '-10',
|
3696
|
'file' => 'modules/system/system.admin.inc',
|
3697
|
))
|
3698
|
->values(array(
|
3699
|
'path' => 'admin/build/block',
|
3700
|
'load_functions' => '',
|
3701
|
'to_arg_functions' => '',
|
3702
|
'access_callback' => 'user_access',
|
3703
|
'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
|
3704
|
'page_callback' => 'block_admin_display',
|
3705
|
'page_arguments' => 'a:0:{}',
|
3706
|
'fit' => '7',
|
3707
|
'number_parts' => '3',
|
3708
|
'tab_parent' => '',
|
3709
|
'tab_root' => 'admin/build/block',
|
3710
|
'title' => 'Blocks',
|
3711
|
'title_callback' => 't',
|
3712
|
'title_arguments' => '',
|
3713
|
'type' => '6',
|
3714
|
'block_callback' => '',
|
3715
|
'description' => "Configure what block content appears in your site's sidebars and other regions.",
|
3716
|
'position' => '',
|
3717
|
'weight' => '0',
|
3718
|
'file' => 'modules/block/block.admin.inc',
|
3719
|
))
|
3720
|
->values(array(
|
3721
|
'path' => 'admin/build/block/add',
|
3722
|
'load_functions' => '',
|
3723
|
'to_arg_functions' => '',
|
3724
|
'access_callback' => 'user_access',
|
3725
|
'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
|
3726
|
'page_callback' => 'drupal_get_form',
|
3727
|
'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
|
3728
|
'fit' => '15',
|
3729
|
'number_parts' => '4',
|
3730
|
'tab_parent' => 'admin/build/block',
|
3731
|
'tab_root' => 'admin/build/block',
|
3732
|
'title' => 'Add block',
|
3733
|
'title_callback' => 't',
|
3734
|
'title_arguments' => '',
|
3735
|
'type' => '128',
|
3736
|
'block_callback' => '',
|
3737
|
'description' => '',
|
3738
|
'position' => '',
|
3739
|
'weight' => '0',
|
3740
|
'file' => 'modules/block/block.admin.inc',
|
3741
|
))
|
3742
|
->values(array(
|
3743
|
'path' => 'admin/build/block/configure',
|
3744
|
'load_functions' => '',
|
3745
|
'to_arg_functions' => '',
|
3746
|
'access_callback' => 'user_access',
|
3747
|
'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
|
3748
|
'page_callback' => 'drupal_get_form',
|
3749
|
'page_arguments' => 'a:1:{i:0;s:21:"block_admin_configure";}',
|
3750
|
'fit' => '15',
|
3751
|
'number_parts' => '4',
|
3752
|
'tab_parent' => '',
|
3753
|
'tab_root' => 'admin/build/block/configure',
|
3754
|
'title' => 'Configure block',
|
3755
|
'title_callback' => 't',
|
3756
|
'title_arguments' => '',
|
3757
|
'type' => '4',
|
3758
|
'block_callback' => '',
|
3759
|
'description' => '',
|
3760
|
'position' => '',
|
3761
|
'weight' => '0',
|
3762
|
'file' => 'modules/block/block.admin.inc',
|
3763
|
))
|
3764
|
->values(array(
|
3765
|
'path' => 'admin/build/block/delete',
|
3766
|
'load_functions' => '',
|
3767
|
'to_arg_functions' => '',
|
3768
|
'access_callback' => 'user_access',
|
3769
|
'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
|
3770
|
'page_callback' => 'drupal_get_form',
|
3771
|
'page_arguments' => 'a:1:{i:0;s:16:"block_box_delete";}',
|
3772
|
'fit' => '15',
|
3773
|
'number_parts' => '4',
|
3774
|
'tab_parent' => '',
|
3775
|
'tab_root' => 'admin/build/block/delete',
|
3776
|
'title' => 'Delete block',
|
3777
|
'title_callback' => 't',
|
3778
|
'title_arguments' => '',
|
3779
|
'type' => '4',
|
3780
|
'block_callback' => '',
|
3781
|
'description' => '',
|
3782
|
'position' => '',
|
3783
|
'weight' => '0',
|
3784
|
'file' => 'modules/block/block.admin.inc',
|
3785
|
))
|
3786
|
->values(array(
|
3787
|
'path' => 'admin/build/block/list',
|
3788
|
'load_functions' => '',
|
3789
|
'to_arg_functions' => '',
|
3790
|
'access_callback' => 'user_access',
|
3791
|
'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
|
3792
|
'page_callback' => 'block_admin_display',
|
3793
|
'page_arguments' => 'a:0:{}',
|
3794
|
'fit' => '15',
|
3795
|
'number_parts' => '4',
|
3796
|
'tab_parent' => 'admin/build/block',
|
3797
|
'tab_root' => 'admin/build/block',
|
3798
|
'title' => 'List',
|
3799
|
'title_callback' => 't',
|
3800
|
'title_arguments' => '',
|
3801
|
'type' => '136',
|
3802
|
'block_callback' => '',
|
3803
|
'description' => '',
|
3804
|
'position' => '',
|
3805
|
'weight' => '-10',
|
3806
|
'file' => 'modules/block/block.admin.inc',
|
3807
|
))
|
3808
|
->values(array(
|
3809
|
'path' => 'admin/build/block/list/bluemarine',
|
3810
|
'load_functions' => '',
|
3811
|
'to_arg_functions' => '',
|
3812
|
'access_callback' => '_block_themes_access',
|
3813
|
'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/bluemarine/bluemarine.info";s:4:"name";s:10:"bluemarine";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
|
3814
|
'page_callback' => 'block_admin_display',
|
3815
|
'page_arguments' => 'a:1:{i:0;s:10:"bluemarine";}',
|
3816
|
'fit' => '31',
|
3817
|
'number_parts' => '5',
|
3818
|
'tab_parent' => 'admin/build/block/list',
|
3819
|
'tab_root' => 'admin/build/block',
|
3820
|
'title' => 'Bluemarine',
|
3821
|
'title_callback' => 't',
|
3822
|
'title_arguments' => '',
|
3823
|
'type' => '128',
|
3824
|
'block_callback' => '',
|
3825
|
'description' => '',
|
3826
|
'position' => '',
|
3827
|
'weight' => '0',
|
3828
|
'file' => 'modules/block/block.admin.inc',
|
3829
|
))
|
3830
|
->values(array(
|
3831
|
'path' => 'admin/build/block/list/chameleon',
|
3832
|
'load_functions' => '',
|
3833
|
'to_arg_functions' => '',
|
3834
|
'access_callback' => '_block_themes_access',
|
3835
|
'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:31:"themes/chameleon/chameleon.info";s:4:"name";s:9:"chameleon";s:4:"type";s:5:"theme";s:5:"owner";s:32:"themes/chameleon/chameleon.theme";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:12:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}}}',
|
3836
|
'page_callback' => 'block_admin_display',
|
3837
|
'page_arguments' => 'a:1:{i:0;s:9:"chameleon";}',
|
3838
|
'fit' => '31',
|
3839
|
'number_parts' => '5',
|
3840
|
'tab_parent' => 'admin/build/block/list',
|
3841
|
'tab_root' => 'admin/build/block',
|
3842
|
'title' => 'Chameleon',
|
3843
|
'title_callback' => 't',
|
3844
|
'title_arguments' => '',
|
3845
|
'type' => '128',
|
3846
|
'block_callback' => '',
|
3847
|
'description' => '',
|
3848
|
'position' => '',
|
3849
|
'weight' => '0',
|
3850
|
'file' => 'modules/block/block.admin.inc',
|
3851
|
))
|
3852
|
->values(array(
|
3853
|
'path' => 'admin/build/block/list/garland',
|
3854
|
'load_functions' => '',
|
3855
|
'to_arg_functions' => '',
|
3856
|
'access_callback' => '_block_themes_access',
|
3857
|
'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}',
|
3858
|
'page_callback' => 'block_admin_display',
|
3859
|
'page_arguments' => 'a:1:{i:0;s:7:"garland";}',
|
3860
|
'fit' => '31',
|
3861
|
'number_parts' => '5',
|
3862
|
'tab_parent' => 'admin/build/block/list',
|
3863
|
'tab_root' => 'admin/build/block',
|
3864
|
'title' => 'Garland',
|
3865
|
'title_callback' => 't',
|
3866
|
'title_arguments' => '',
|
3867
|
'type' => '136',
|
3868
|
'block_callback' => '',
|
3869
|
'description' => '',
|
3870
|
'position' => '',
|
3871
|
'weight' => '-10',
|
3872
|
'file' => 'modules/block/block.admin.inc',
|
3873
|
))
|
3874
|
->values(array(
|
3875
|
'path' => 'admin/build/block/list/js',
|
3876
|
'load_functions' => '',
|
3877
|
'to_arg_functions' => '',
|
3878
|
'access_callback' => 'user_access',
|
3879
|
'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
|
3880
|
'page_callback' => 'block_admin_display_js',
|
3881
|
'page_arguments' => 'a:0:{}',
|
3882
|
'fit' => '31',
|
3883
|
'number_parts' => '5',
|
3884
|
'tab_parent' => '',
|
3885
|
'tab_root' => 'admin/build/block/list/js',
|
3886
|
'title' => 'JavaScript List Form',
|
3887
|
'title_callback' => 't',
|
3888
|
'title_arguments' => '',
|
3889
|
'type' => '4',
|
3890
|
'block_callback' => '',
|
3891
|
'description' => '',
|
3892
|
'position' => '',
|
3893
|
'weight' => '0',
|
3894
|
'file' => 'modules/block/block.admin.inc',
|
3895
|
))
|
3896
|
->values(array(
|
3897
|
'path' => 'admin/build/block/list/marvin',
|
3898
|
'load_functions' => '',
|
3899
|
'to_arg_functions' => '',
|
3900
|
'access_callback' => '_block_themes_access',
|
3901
|
'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:35:"themes/chameleon/marvin/marvin.info";s:4:"name";s:6:"marvin";s:4:"type";s:5:"theme";s:5:"owner";s:0:"";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:10:"base_theme";s:9:"chameleon";}}',
|
3902
|
'page_callback' => 'block_admin_display',
|
3903
|
'page_arguments' => 'a:1:{i:0;s:6:"marvin";}',
|
3904
|
'fit' => '31',
|
3905
|
'number_parts' => '5',
|
3906
|
'tab_parent' => 'admin/build/block/list',
|
3907
|
'tab_root' => 'admin/build/block',
|
3908
|
'title' => 'Marvin',
|
3909
|
'title_callback' => 't',
|
3910
|
'title_arguments' => '',
|
3911
|
'type' => '128',
|
3912
|
'block_callback' => '',
|
3913
|
'description' => '',
|
3914
|
'position' => '',
|
3915
|
'weight' => '0',
|
3916
|
'file' => 'modules/block/block.admin.inc',
|
3917
|
))
|
3918
|
->values(array(
|
3919
|
'path' => 'admin/build/block/list/minnelli',
|
3920
|
'load_functions' => '',
|
3921
|
'to_arg_functions' => '',
|
3922
|
'access_callback' => '_block_themes_access',
|
3923
|
'access_arguments' => 'a:1:{i:0;O:8:"stdClass":13:{s:8:"filename";s:37:"themes/garland/minnelli/minnelli.info";s:4:"name";s:8:"minnelli";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:14:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:6:"engine";s:11:"phptemplate";s:10:"base_theme";s:7:"garland";}}',
|
3924
|
'page_callback' => 'block_admin_display',
|
3925
|
'page_arguments' => 'a:1:{i:0;s:8:"minnelli";}',
|
3926
|
'fit' => '31',
|
3927
|
'number_parts' => '5',
|
3928
|
'tab_parent' => 'admin/build/block/list',
|
3929
|
'tab_root' => 'admin/build/block',
|
3930
|
'title' => 'Minnelli',
|
3931
|
'title_callback' => 't',
|
3932
|
'title_arguments' => '',
|
3933
|
'type' => '128',
|
3934
|
'block_callback' => '',
|
3935
|
'description' => '',
|
3936
|
'position' => '',
|
3937
|
'weight' => '0',
|
3938
|
'file' => 'modules/block/block.admin.inc',
|
3939
|
))
|
3940
|
->values(array(
|
3941
|
'path' => 'admin/build/block/list/pushbutton',
|
3942
|
'load_functions' => '',
|
3943
|
'to_arg_functions' => '',
|
3944
|
'access_callback' => '_block_themes_access',
|
3945
|
'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/pushbutton/pushbutton.info";s:4:"name";s:10:"pushbutton";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
|
3946
|
'page_callback' => 'block_admin_display',
|
3947
|
'page_arguments' => 'a:1:{i:0;s:10:"pushbutton";}',
|
3948
|
'fit' => '31',
|
3949
|
'number_parts' => '5',
|
3950
|
'tab_parent' => 'admin/build/block/list',
|
3951
|
'tab_root' => 'admin/build/block',
|
3952
|
'title' => 'Pushbutton',
|
3953
|
'title_callback' => 't',
|
3954
|
'title_arguments' => '',
|
3955
|
'type' => '128',
|
3956
|
'block_callback' => '',
|
3957
|
'description' => '',
|
3958
|
'position' => '',
|
3959
|
'weight' => '0',
|
3960
|
'file' => 'modules/block/block.admin.inc',
|
3961
|
))
|
3962
|
->values(array(
|
3963
|
'path' => 'admin/build/modules',
|
3964
|
'load_functions' => '',
|
3965
|
'to_arg_functions' => '',
|
3966
|
'access_callback' => 'user_access',
|
3967
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
3968
|
'page_callback' => 'drupal_get_form',
|
3969
|
'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
|
3970
|
'fit' => '7',
|
3971
|
'number_parts' => '3',
|
3972
|
'tab_parent' => '',
|
3973
|
'tab_root' => 'admin/build/modules',
|
3974
|
'title' => 'Modules',
|
3975
|
'title_callback' => 't',
|
3976
|
'title_arguments' => '',
|
3977
|
'type' => '6',
|
3978
|
'block_callback' => '',
|
3979
|
'description' => 'Enable or disable add-on modules for your site.',
|
3980
|
'position' => '',
|
3981
|
'weight' => '0',
|
3982
|
'file' => 'modules/system/system.admin.inc',
|
3983
|
))
|
3984
|
->values(array(
|
3985
|
'path' => 'admin/build/modules/list',
|
3986
|
'load_functions' => '',
|
3987
|
'to_arg_functions' => '',
|
3988
|
'access_callback' => 'user_access',
|
3989
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
3990
|
'page_callback' => 'drupal_get_form',
|
3991
|
'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
|
3992
|
'fit' => '15',
|
3993
|
'number_parts' => '4',
|
3994
|
'tab_parent' => 'admin/build/modules',
|
3995
|
'tab_root' => 'admin/build/modules',
|
3996
|
'title' => 'List',
|
3997
|
'title_callback' => 't',
|
3998
|
'title_arguments' => '',
|
3999
|
'type' => '136',
|
4000
|
'block_callback' => '',
|
4001
|
'description' => '',
|
4002
|
'position' => '',
|
4003
|
'weight' => '0',
|
4004
|
'file' => 'modules/system/system.admin.inc',
|
4005
|
))
|
4006
|
->values(array(
|
4007
|
'path' => 'admin/build/modules/list/confirm',
|
4008
|
'load_functions' => '',
|
4009
|
'to_arg_functions' => '',
|
4010
|
'access_callback' => 'user_access',
|
4011
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
4012
|
'page_callback' => 'drupal_get_form',
|
4013
|
'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
|
4014
|
'fit' => '31',
|
4015
|
'number_parts' => '5',
|
4016
|
'tab_parent' => '',
|
4017
|
'tab_root' => 'admin/build/modules/list/confirm',
|
4018
|
'title' => 'List',
|
4019
|
'title_callback' => 't',
|
4020
|
'title_arguments' => '',
|
4021
|
'type' => '4',
|
4022
|
'block_callback' => '',
|
4023
|
'description' => '',
|
4024
|
'position' => '',
|
4025
|
'weight' => '0',
|
4026
|
'file' => 'modules/system/system.admin.inc',
|
4027
|
))
|
4028
|
->values(array(
|
4029
|
'path' => 'admin/build/modules/uninstall',
|
4030
|
'load_functions' => '',
|
4031
|
'to_arg_functions' => '',
|
4032
|
'access_callback' => 'user_access',
|
4033
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
4034
|
'page_callback' => 'drupal_get_form',
|
4035
|
'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
|
4036
|
'fit' => '15',
|
4037
|
'number_parts' => '4',
|
4038
|
'tab_parent' => 'admin/build/modules',
|
4039
|
'tab_root' => 'admin/build/modules',
|
4040
|
'title' => 'Uninstall',
|
4041
|
'title_callback' => 't',
|
4042
|
'title_arguments' => '',
|
4043
|
'type' => '128',
|
4044
|
'block_callback' => '',
|
4045
|
'description' => '',
|
4046
|
'position' => '',
|
4047
|
'weight' => '0',
|
4048
|
'file' => 'modules/system/system.admin.inc',
|
4049
|
))
|
4050
|
->values(array(
|
4051
|
'path' => 'admin/build/modules/uninstall/confirm',
|
4052
|
'load_functions' => '',
|
4053
|
'to_arg_functions' => '',
|
4054
|
'access_callback' => 'user_access',
|
4055
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
4056
|
'page_callback' => 'drupal_get_form',
|
4057
|
'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
|
4058
|
'fit' => '31',
|
4059
|
'number_parts' => '5',
|
4060
|
'tab_parent' => '',
|
4061
|
'tab_root' => 'admin/build/modules/uninstall/confirm',
|
4062
|
'title' => 'Uninstall',
|
4063
|
'title_callback' => 't',
|
4064
|
'title_arguments' => '',
|
4065
|
'type' => '4',
|
4066
|
'block_callback' => '',
|
4067
|
'description' => '',
|
4068
|
'position' => '',
|
4069
|
'weight' => '0',
|
4070
|
'file' => 'modules/system/system.admin.inc',
|
4071
|
))
|
4072
|
->values(array(
|
4073
|
'path' => 'admin/build/themes',
|
4074
|
'load_functions' => '',
|
4075
|
'to_arg_functions' => '',
|
4076
|
'access_callback' => 'user_access',
|
4077
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
4078
|
'page_callback' => 'drupal_get_form',
|
4079
|
'page_arguments' => 'a:2:{i:0;s:18:"system_themes_form";i:1;N;}',
|
4080
|
'fit' => '7',
|
4081
|
'number_parts' => '3',
|
4082
|
'tab_parent' => '',
|
4083
|
'tab_root' => 'admin/build/themes',
|
4084
|
'title' => 'Themes',
|
4085
|
'title_callback' => 't',
|
4086
|
'title_arguments' => '',
|
4087
|
'type' => '6',
|
4088
|
'block_callback' => '',
|
4089
|
'description' => 'Change which theme your site uses or allows users to set.',
|
4090
|
'position' => '',
|
4091
|
'weight' => '0',
|
4092
|
'file' => 'modules/system/system.admin.inc',
|
4093
|
))
|
4094
|
->values(array(
|
4095
|
'path' => 'admin/build/themes/select',
|
4096
|
'load_functions' => '',
|
4097
|
'to_arg_functions' => '',
|
4098
|
'access_callback' => 'user_access',
|
4099
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
4100
|
'page_callback' => 'drupal_get_form',
|
4101
|
'page_arguments' => 'a:2:{i:0;s:18:"system_themes_form";i:1;N;}',
|
4102
|
'fit' => '15',
|
4103
|
'number_parts' => '4',
|
4104
|
'tab_parent' => 'admin/build/themes',
|
4105
|
'tab_root' => 'admin/build/themes',
|
4106
|
'title' => 'List',
|
4107
|
'title_callback' => 't',
|
4108
|
'title_arguments' => '',
|
4109
|
'type' => '136',
|
4110
|
'block_callback' => '',
|
4111
|
'description' => 'Select the default theme.',
|
4112
|
'position' => '',
|
4113
|
'weight' => '-1',
|
4114
|
'file' => 'modules/system/system.admin.inc',
|
4115
|
))
|
4116
|
->values(array(
|
4117
|
'path' => 'admin/build/themes/settings',
|
4118
|
'load_functions' => '',
|
4119
|
'to_arg_functions' => '',
|
4120
|
'access_callback' => 'user_access',
|
4121
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
4122
|
'page_callback' => 'drupal_get_form',
|
4123
|
'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
|
4124
|
'fit' => '15',
|
4125
|
'number_parts' => '4',
|
4126
|
'tab_parent' => 'admin/build/themes',
|
4127
|
'tab_root' => 'admin/build/themes',
|
4128
|
'title' => 'Configure',
|
4129
|
'title_callback' => 't',
|
4130
|
'title_arguments' => '',
|
4131
|
'type' => '128',
|
4132
|
'block_callback' => '',
|
4133
|
'description' => '',
|
4134
|
'position' => '',
|
4135
|
'weight' => '0',
|
4136
|
'file' => 'modules/system/system.admin.inc',
|
4137
|
))
|
4138
|
->values(array(
|
4139
|
'path' => 'admin/build/themes/settings/bluemarine',
|
4140
|
'load_functions' => '',
|
4141
|
'to_arg_functions' => '',
|
4142
|
'access_callback' => '_system_themes_access',
|
4143
|
'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/bluemarine/bluemarine.info";s:4:"name";s:10:"bluemarine";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
|
4144
|
'page_callback' => 'drupal_get_form',
|
4145
|
'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"bluemarine";}',
|
4146
|
'fit' => '31',
|
4147
|
'number_parts' => '5',
|
4148
|
'tab_parent' => 'admin/build/themes/settings',
|
4149
|
'tab_root' => 'admin/build/themes',
|
4150
|
'title' => 'Bluemarine',
|
4151
|
'title_callback' => 't',
|
4152
|
'title_arguments' => '',
|
4153
|
'type' => '128',
|
4154
|
'block_callback' => '',
|
4155
|
'description' => '',
|
4156
|
'position' => '',
|
4157
|
'weight' => '0',
|
4158
|
'file' => 'modules/system/system.admin.inc',
|
4159
|
))
|
4160
|
->values(array(
|
4161
|
'path' => 'admin/build/themes/settings/chameleon',
|
4162
|
'load_functions' => '',
|
4163
|
'to_arg_functions' => '',
|
4164
|
'access_callback' => '_system_themes_access',
|
4165
|
'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:31:"themes/chameleon/chameleon.info";s:4:"name";s:9:"chameleon";s:4:"type";s:5:"theme";s:5:"owner";s:32:"themes/chameleon/chameleon.theme";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:12:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}}}',
|
4166
|
'page_callback' => 'drupal_get_form',
|
4167
|
'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:9:"chameleon";}',
|
4168
|
'fit' => '31',
|
4169
|
'number_parts' => '5',
|
4170
|
'tab_parent' => 'admin/build/themes/settings',
|
4171
|
'tab_root' => 'admin/build/themes',
|
4172
|
'title' => 'Chameleon',
|
4173
|
'title_callback' => 't',
|
4174
|
'title_arguments' => '',
|
4175
|
'type' => '128',
|
4176
|
'block_callback' => '',
|
4177
|
'description' => '',
|
4178
|
'position' => '',
|
4179
|
'weight' => '0',
|
4180
|
'file' => 'modules/system/system.admin.inc',
|
4181
|
))
|
4182
|
->values(array(
|
4183
|
'path' => 'admin/build/themes/settings/garland',
|
4184
|
'load_functions' => '',
|
4185
|
'to_arg_functions' => '',
|
4186
|
'access_callback' => '_system_themes_access',
|
4187
|
'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}',
|
4188
|
'page_callback' => 'drupal_get_form',
|
4189
|
'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:7:"garland";}',
|
4190
|
'fit' => '31',
|
4191
|
'number_parts' => '5',
|
4192
|
'tab_parent' => 'admin/build/themes/settings',
|
4193
|
'tab_root' => 'admin/build/themes',
|
4194
|
'title' => 'Garland',
|
4195
|
'title_callback' => 't',
|
4196
|
'title_arguments' => '',
|
4197
|
'type' => '128',
|
4198
|
'block_callback' => '',
|
4199
|
'description' => '',
|
4200
|
'position' => '',
|
4201
|
'weight' => '0',
|
4202
|
'file' => 'modules/system/system.admin.inc',
|
4203
|
))
|
4204
|
->values(array(
|
4205
|
'path' => 'admin/build/themes/settings/global',
|
4206
|
'load_functions' => '',
|
4207
|
'to_arg_functions' => '',
|
4208
|
'access_callback' => 'user_access',
|
4209
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
4210
|
'page_callback' => 'drupal_get_form',
|
4211
|
'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
|
4212
|
'fit' => '31',
|
4213
|
'number_parts' => '5',
|
4214
|
'tab_parent' => 'admin/build/themes/settings',
|
4215
|
'tab_root' => 'admin/build/themes',
|
4216
|
'title' => 'Global settings',
|
4217
|
'title_callback' => 't',
|
4218
|
'title_arguments' => '',
|
4219
|
'type' => '136',
|
4220
|
'block_callback' => '',
|
4221
|
'description' => '',
|
4222
|
'position' => '',
|
4223
|
'weight' => '-1',
|
4224
|
'file' => 'modules/system/system.admin.inc',
|
4225
|
))
|
4226
|
->values(array(
|
4227
|
'path' => 'admin/build/themes/settings/marvin',
|
4228
|
'load_functions' => '',
|
4229
|
'to_arg_functions' => '',
|
4230
|
'access_callback' => '_system_themes_access',
|
4231
|
'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:35:"themes/chameleon/marvin/marvin.info";s:4:"name";s:6:"marvin";s:4:"type";s:5:"theme";s:5:"owner";s:0:"";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:10:"base_theme";s:9:"chameleon";}}',
|
4232
|
'page_callback' => 'drupal_get_form',
|
4233
|
'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:6:"marvin";}',
|
4234
|
'fit' => '31',
|
4235
|
'number_parts' => '5',
|
4236
|
'tab_parent' => 'admin/build/themes/settings',
|
4237
|
'tab_root' => 'admin/build/themes',
|
4238
|
'title' => 'Marvin',
|
4239
|
'title_callback' => 't',
|
4240
|
'title_arguments' => '',
|
4241
|
'type' => '128',
|
4242
|
'block_callback' => '',
|
4243
|
'description' => '',
|
4244
|
'position' => '',
|
4245
|
'weight' => '0',
|
4246
|
'file' => 'modules/system/system.admin.inc',
|
4247
|
))
|
4248
|
->values(array(
|
4249
|
'path' => 'admin/build/themes/settings/minnelli',
|
4250
|
'load_functions' => '',
|
4251
|
'to_arg_functions' => '',
|
4252
|
'access_callback' => '_system_themes_access',
|
4253
|
'access_arguments' => 'a:1:{i:0;O:8:"stdClass":13:{s:8:"filename";s:37:"themes/garland/minnelli/minnelli.info";s:4:"name";s:8:"minnelli";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:14:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:6:"engine";s:11:"phptemplate";s:10:"base_theme";s:7:"garland";}}',
|
4254
|
'page_callback' => 'drupal_get_form',
|
4255
|
'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:8:"minnelli";}',
|
4256
|
'fit' => '31',
|
4257
|
'number_parts' => '5',
|
4258
|
'tab_parent' => 'admin/build/themes/settings',
|
4259
|
'tab_root' => 'admin/build/themes',
|
4260
|
'title' => 'Minnelli',
|
4261
|
'title_callback' => 't',
|
4262
|
'title_arguments' => '',
|
4263
|
'type' => '128',
|
4264
|
'block_callback' => '',
|
4265
|
'description' => '',
|
4266
|
'position' => '',
|
4267
|
'weight' => '0',
|
4268
|
'file' => 'modules/system/system.admin.inc',
|
4269
|
))
|
4270
|
->values(array(
|
4271
|
'path' => 'admin/build/themes/settings/pushbutton',
|
4272
|
'load_functions' => '',
|
4273
|
'to_arg_functions' => '',
|
4274
|
'access_callback' => '_system_themes_access',
|
4275
|
'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/pushbutton/pushbutton.info";s:4:"name";s:10:"pushbutton";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
|
4276
|
'page_callback' => 'drupal_get_form',
|
4277
|
'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"pushbutton";}',
|
4278
|
'fit' => '31',
|
4279
|
'number_parts' => '5',
|
4280
|
'tab_parent' => 'admin/build/themes/settings',
|
4281
|
'tab_root' => 'admin/build/themes',
|
4282
|
'title' => 'Pushbutton',
|
4283
|
'title_callback' => 't',
|
4284
|
'title_arguments' => '',
|
4285
|
'type' => '128',
|
4286
|
'block_callback' => '',
|
4287
|
'description' => '',
|
4288
|
'position' => '',
|
4289
|
'weight' => '0',
|
4290
|
'file' => 'modules/system/system.admin.inc',
|
4291
|
))
|
4292
|
->values(array(
|
4293
|
'path' => 'admin/by-module',
|
4294
|
'load_functions' => '',
|
4295
|
'to_arg_functions' => '',
|
4296
|
'access_callback' => 'user_access',
|
4297
|
'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
|
4298
|
'page_callback' => 'system_admin_by_module',
|
4299
|
'page_arguments' => 'a:0:{}',
|
4300
|
'fit' => '3',
|
4301
|
'number_parts' => '2',
|
4302
|
'tab_parent' => 'admin',
|
4303
|
'tab_root' => 'admin',
|
4304
|
'title' => 'By module',
|
4305
|
'title_callback' => 't',
|
4306
|
'title_arguments' => '',
|
4307
|
'type' => '128',
|
4308
|
'block_callback' => '',
|
4309
|
'description' => '',
|
4310
|
'position' => '',
|
4311
|
'weight' => '2',
|
4312
|
'file' => 'modules/system/system.admin.inc',
|
4313
|
))
|
4314
|
->values(array(
|
4315
|
'path' => 'admin/by-task',
|
4316
|
'load_functions' => '',
|
4317
|
'to_arg_functions' => '',
|
4318
|
'access_callback' => 'user_access',
|
4319
|
'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
|
4320
|
'page_callback' => 'system_main_admin_page',
|
4321
|
'page_arguments' => 'a:0:{}',
|
4322
|
'fit' => '3',
|
4323
|
'number_parts' => '2',
|
4324
|
'tab_parent' => 'admin',
|
4325
|
'tab_root' => 'admin',
|
4326
|
'title' => 'By task',
|
4327
|
'title_callback' => 't',
|
4328
|
'title_arguments' => '',
|
4329
|
'type' => '136',
|
4330
|
'block_callback' => '',
|
4331
|
'description' => '',
|
4332
|
'position' => '',
|
4333
|
'weight' => '0',
|
4334
|
'file' => 'modules/system/system.admin.inc',
|
4335
|
))
|
4336
|
->values(array(
|
4337
|
'path' => 'admin/compact',
|
4338
|
'load_functions' => '',
|
4339
|
'to_arg_functions' => '',
|
4340
|
'access_callback' => 'user_access',
|
4341
|
'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
|
4342
|
'page_callback' => 'system_admin_compact_page',
|
4343
|
'page_arguments' => 'a:0:{}',
|
4344
|
'fit' => '3',
|
4345
|
'number_parts' => '2',
|
4346
|
'tab_parent' => '',
|
4347
|
'tab_root' => 'admin/compact',
|
4348
|
'title' => 'Compact mode',
|
4349
|
'title_callback' => 't',
|
4350
|
'title_arguments' => '',
|
4351
|
'type' => '4',
|
4352
|
'block_callback' => '',
|
4353
|
'description' => '',
|
4354
|
'position' => '',
|
4355
|
'weight' => '0',
|
4356
|
'file' => 'modules/system/system.admin.inc',
|
4357
|
))
|
4358
|
->values(array(
|
4359
|
'path' => 'admin/content',
|
4360
|
'load_functions' => '',
|
4361
|
'to_arg_functions' => '',
|
4362
|
'access_callback' => 'user_access',
|
4363
|
'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
|
4364
|
'page_callback' => 'system_admin_menu_block_page',
|
4365
|
'page_arguments' => 'a:0:{}',
|
4366
|
'fit' => '3',
|
4367
|
'number_parts' => '2',
|
4368
|
'tab_parent' => '',
|
4369
|
'tab_root' => 'admin/content',
|
4370
|
'title' => 'Content management',
|
4371
|
'title_callback' => 't',
|
4372
|
'title_arguments' => '',
|
4373
|
'type' => '6',
|
4374
|
'block_callback' => '',
|
4375
|
'description' => "Manage your site's content.",
|
4376
|
'position' => 'left',
|
4377
|
'weight' => '-10',
|
4378
|
'file' => 'modules/system/system.admin.inc',
|
4379
|
))
|
4380
|
->values(array(
|
4381
|
'path' => 'admin/content/node',
|
4382
|
'load_functions' => '',
|
4383
|
'to_arg_functions' => '',
|
4384
|
'access_callback' => 'user_access',
|
4385
|
'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
|
4386
|
'page_callback' => 'drupal_get_form',
|
4387
|
'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
|
4388
|
'fit' => '7',
|
4389
|
'number_parts' => '3',
|
4390
|
'tab_parent' => '',
|
4391
|
'tab_root' => 'admin/content/node',
|
4392
|
'title' => 'Content',
|
4393
|
'title_callback' => 't',
|
4394
|
'title_arguments' => '',
|
4395
|
'type' => '6',
|
4396
|
'block_callback' => '',
|
4397
|
'description' => "View, edit, and delete your site's content.",
|
4398
|
'position' => '',
|
4399
|
'weight' => '0',
|
4400
|
'file' => 'modules/node/node.admin.inc',
|
4401
|
))
|
4402
|
->values(array(
|
4403
|
'path' => 'admin/content/node-settings',
|
4404
|
'load_functions' => '',
|
4405
|
'to_arg_functions' => '',
|
4406
|
'access_callback' => 'user_access',
|
4407
|
'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
|
4408
|
'page_callback' => 'drupal_get_form',
|
4409
|
'page_arguments' => 'a:1:{i:0;s:14:"node_configure";}',
|
4410
|
'fit' => '7',
|
4411
|
'number_parts' => '3',
|
4412
|
'tab_parent' => '',
|
4413
|
'tab_root' => 'admin/content/node-settings',
|
4414
|
'title' => 'Post settings',
|
4415
|
'title_callback' => 't',
|
4416
|
'title_arguments' => '',
|
4417
|
'type' => '6',
|
4418
|
'block_callback' => '',
|
4419
|
'description' => 'Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.',
|
4420
|
'position' => '',
|
4421
|
'weight' => '0',
|
4422
|
'file' => 'modules/node/node.admin.inc',
|
4423
|
))
|
4424
|
->values(array(
|
4425
|
'path' => 'admin/content/node-settings/rebuild',
|
4426
|
'load_functions' => '',
|
4427
|
'to_arg_functions' => '',
|
4428
|
'access_callback' => 'user_access',
|
4429
|
'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
|
4430
|
'page_callback' => 'drupal_get_form',
|
4431
|
'page_arguments' => 'a:1:{i:0;s:30:"node_configure_rebuild_confirm";}',
|
4432
|
'fit' => '15',
|
4433
|
'number_parts' => '4',
|
4434
|
'tab_parent' => '',
|
4435
|
'tab_root' => 'admin/content/node-settings/rebuild',
|
4436
|
'title' => 'Rebuild permissions',
|
4437
|
'title_callback' => 't',
|
4438
|
'title_arguments' => '',
|
4439
|
'type' => '4',
|
4440
|
'block_callback' => '',
|
4441
|
'description' => '',
|
4442
|
'position' => '',
|
4443
|
'weight' => '0',
|
4444
|
'file' => 'modules/node/node.admin.inc',
|
4445
|
))
|
4446
|
->values(array(
|
4447
|
'path' => 'admin/content/node-type/page',
|
4448
|
'load_functions' => '',
|
4449
|
'to_arg_functions' => '',
|
4450
|
'access_callback' => 'user_access',
|
4451
|
'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
|
4452
|
'page_callback' => 'drupal_get_form',
|
4453
|
'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:4:\"Page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";}}",
|
4454
|
'fit' => '15',
|
4455
|
'number_parts' => '4',
|
4456
|
'tab_parent' => '',
|
4457
|
'tab_root' => 'admin/content/node-type/page',
|
4458
|
'title' => 'Page',
|
4459
|
'title_callback' => 't',
|
4460
|
'title_arguments' => '',
|
4461
|
'type' => '4',
|
4462
|
'block_callback' => '',
|
4463
|
'description' => '',
|
4464
|
'position' => '',
|
4465
|
'weight' => '0',
|
4466
|
'file' => 'modules/node/content_types.inc',
|
4467
|
))
|
4468
|
->values(array(
|
4469
|
'path' => 'admin/content/node-type/page/delete',
|
4470
|
'load_functions' => '',
|
4471
|
'to_arg_functions' => '',
|
4472
|
'access_callback' => 'user_access',
|
4473
|
'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
|
4474
|
'page_callback' => 'drupal_get_form',
|
4475
|
'page_arguments' => "a:2:{i:0;s:24:\"node_type_delete_confirm\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:4:\"Page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";}}",
|
4476
|
'fit' => '31',
|
4477
|
'number_parts' => '5',
|
4478
|
'tab_parent' => '',
|
4479
|
'tab_root' => 'admin/content/node-type/page/delete',
|
4480
|
'title' => 'Delete',
|
4481
|
'title_callback' => 't',
|
4482
|
'title_arguments' => '',
|
4483
|
'type' => '4',
|
4484
|
'block_callback' => '',
|
4485
|
'description' => '',
|
4486
|
'position' => '',
|
4487
|
'weight' => '0',
|
4488
|
'file' => 'modules/node/content_types.inc',
|
4489
|
))
|
4490
|
->values(array(
|
4491
|
'path' => 'admin/content/node-type/page/edit',
|
4492
|
'load_functions' => '',
|
4493
|
'to_arg_functions' => '',
|
4494
|
'access_callback' => 'user_access',
|
4495
|
'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
|
4496
|
'page_callback' => 'drupal_get_form',
|
4497
|
'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:4:\"Page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";}}",
|
4498
|
'fit' => '31',
|
4499
|
'number_parts' => '5',
|
4500
|
'tab_parent' => 'admin/content/node-type/page',
|
4501
|
'tab_root' => 'admin/content/node-type/page',
|
4502
|
'title' => 'Edit',
|
4503
|
'title_callback' => 't',
|
4504
|
'title_arguments' => '',
|
4505
|
'type' => '136',
|
4506
|
'block_callback' => '',
|
4507
|
'description' => '',
|
4508
|
'position' => '',
|
4509
|
'weight' => '0',
|
4510
|
'file' => 'modules/node/content_types.inc',
|
4511
|
))
|
4512
|
->values(array(
|
4513
|
'path' => 'admin/content/node-type/story',
|
4514
|
'load_functions' => '',
|
4515
|
'to_arg_functions' => '',
|
4516
|
'access_callback' => 'user_access',
|
4517
|
'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
|
4518
|
'page_callback' => 'drupal_get_form',
|
4519
|
'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";}}",
|
4520
|
'fit' => '15',
|
4521
|
'number_parts' => '4',
|
4522
|
'tab_parent' => '',
|
4523
|
'tab_root' => 'admin/content/node-type/story',
|
4524
|
'title' => 'Story',
|
4525
|
'title_callback' => 't',
|
4526
|
'title_arguments' => '',
|
4527
|
'type' => '4',
|
4528
|
'block_callback' => '',
|
4529
|
'description' => '',
|
4530
|
'position' => '',
|
4531
|
'weight' => '0',
|
4532
|
'file' => 'modules/node/content_types.inc',
|
4533
|
))
|
4534
|
->values(array(
|
4535
|
'path' => 'admin/content/node-type/story/delete',
|
4536
|
'load_functions' => '',
|
4537
|
'to_arg_functions' => '',
|
4538
|
'access_callback' => 'user_access',
|
4539
|
'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
|
4540
|
'page_callback' => 'drupal_get_form',
|
4541
|
'page_arguments' => "a:2:{i:0;s:24:\"node_type_delete_confirm\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";}}",
|
4542
|
'fit' => '31',
|
4543
|
'number_parts' => '5',
|
4544
|
'tab_parent' => '',
|
4545
|
'tab_root' => 'admin/content/node-type/story/delete',
|
4546
|
'title' => 'Delete',
|
4547
|
'title_callback' => 't',
|
4548
|
'title_arguments' => '',
|
4549
|
'type' => '4',
|
4550
|
'block_callback' => '',
|
4551
|
'description' => '',
|
4552
|
'position' => '',
|
4553
|
'weight' => '0',
|
4554
|
'file' => 'modules/node/content_types.inc',
|
4555
|
))
|
4556
|
->values(array(
|
4557
|
'path' => 'admin/content/node-type/story/edit',
|
4558
|
'load_functions' => '',
|
4559
|
'to_arg_functions' => '',
|
4560
|
'access_callback' => 'user_access',
|
4561
|
'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
|
4562
|
'page_callback' => 'drupal_get_form',
|
4563
|
'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";}}",
|
4564
|
'fit' => '31',
|
4565
|
'number_parts' => '5',
|
4566
|
'tab_parent' => 'admin/content/node-type/story',
|
4567
|
'tab_root' => 'admin/content/node-type/story',
|
4568
|
'title' => 'Edit',
|
4569
|
'title_callback' => 't',
|
4570
|
'title_arguments' => '',
|
4571
|
'type' => '136',
|
4572
|
'block_callback' => '',
|
4573
|
'description' => '',
|
4574
|
'position' => '',
|
4575
|
'weight' => '0',
|
4576
|
'file' => 'modules/node/content_types.inc',
|
4577
|
))
|
4578
|
->values(array(
|
4579
|
'path' => 'admin/content/node/overview',
|
4580
|
'load_functions' => '',
|
4581
|
'to_arg_functions' => '',
|
4582
|
'access_callback' => 'user_access',
|
4583
|
'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
|
4584
|
'page_callback' => 'drupal_get_form',
|
4585
|
'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
|
4586
|
'fit' => '15',
|
4587
|
'number_parts' => '4',
|
4588
|
'tab_parent' => 'admin/content/node',
|
4589
|
'tab_root' => 'admin/content/node',
|
4590
|
'title' => 'List',
|
4591
|
'title_callback' => 't',
|
4592
|
'title_arguments' => '',
|
4593
|
'type' => '136',
|
4594
|
'block_callback' => '',
|
4595
|
'description' => '',
|
4596
|
'position' => '',
|
4597
|
'weight' => '-10',
|
4598
|
'file' => 'modules/node/node.admin.inc',
|
4599
|
))
|
4600
|
->values(array(
|
4601
|
'path' => 'admin/content/rss-publishing',
|
4602
|
'load_functions' => '',
|
4603
|
'to_arg_functions' => '',
|
4604
|
'access_callback' => 'user_access',
|
4605
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
4606
|
'page_callback' => 'drupal_get_form',
|
4607
|
'page_arguments' => 'a:1:{i:0;s:25:"system_rss_feeds_settings";}',
|
4608
|
'fit' => '7',
|
4609
|
'number_parts' => '3',
|
4610
|
'tab_parent' => '',
|
4611
|
'tab_root' => 'admin/content/rss-publishing',
|
4612
|
'title' => 'RSS publishing',
|
4613
|
'title_callback' => 't',
|
4614
|
'title_arguments' => '',
|
4615
|
'type' => '6',
|
4616
|
'block_callback' => '',
|
4617
|
'description' => 'Configure the number of items per feed and whether feeds should be titles/teasers/full-text.',
|
4618
|
'position' => '',
|
4619
|
'weight' => '0',
|
4620
|
'file' => 'modules/system/system.admin.inc',
|
4621
|
))
|
4622
|
->values(array(
|
4623
|
'path' => 'admin/content/types',
|
4624
|
'load_functions' => '',
|
4625
|
'to_arg_functions' => '',
|
4626
|
'access_callback' => 'user_access',
|
4627
|
'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
|
4628
|
'page_callback' => 'node_overview_types',
|
4629
|
'page_arguments' => 'a:0:{}',
|
4630
|
'fit' => '7',
|
4631
|
'number_parts' => '3',
|
4632
|
'tab_parent' => '',
|
4633
|
'tab_root' => 'admin/content/types',
|
4634
|
'title' => 'Content types',
|
4635
|
'title_callback' => 't',
|
4636
|
'title_arguments' => '',
|
4637
|
'type' => '6',
|
4638
|
'block_callback' => '',
|
4639
|
'description' => 'Manage posts by content type, including default status, front page promotion, etc.',
|
4640
|
'position' => '',
|
4641
|
'weight' => '0',
|
4642
|
'file' => 'modules/node/content_types.inc',
|
4643
|
))
|
4644
|
->values(array(
|
4645
|
'path' => 'admin/content/types/add',
|
4646
|
'load_functions' => '',
|
4647
|
'to_arg_functions' => '',
|
4648
|
'access_callback' => 'user_access',
|
4649
|
'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
|
4650
|
'page_callback' => 'drupal_get_form',
|
4651
|
'page_arguments' => 'a:1:{i:0;s:14:"node_type_form";}',
|
4652
|
'fit' => '15',
|
4653
|
'number_parts' => '4',
|
4654
|
'tab_parent' => 'admin/content/types',
|
4655
|
'tab_root' => 'admin/content/types',
|
4656
|
'title' => 'Add content type',
|
4657
|
'title_callback' => 't',
|
4658
|
'title_arguments' => '',
|
4659
|
'type' => '128',
|
4660
|
'block_callback' => '',
|
4661
|
'description' => '',
|
4662
|
'position' => '',
|
4663
|
'weight' => '0',
|
4664
|
'file' => 'modules/node/content_types.inc',
|
4665
|
))
|
4666
|
->values(array(
|
4667
|
'path' => 'admin/content/types/list',
|
4668
|
'load_functions' => '',
|
4669
|
'to_arg_functions' => '',
|
4670
|
'access_callback' => 'user_access',
|
4671
|
'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
|
4672
|
'page_callback' => 'node_overview_types',
|
4673
|
'page_arguments' => 'a:0:{}',
|
4674
|
'fit' => '15',
|
4675
|
'number_parts' => '4',
|
4676
|
'tab_parent' => 'admin/content/types',
|
4677
|
'tab_root' => 'admin/content/types',
|
4678
|
'title' => 'List',
|
4679
|
'title_callback' => 't',
|
4680
|
'title_arguments' => '',
|
4681
|
'type' => '136',
|
4682
|
'block_callback' => '',
|
4683
|
'description' => '',
|
4684
|
'position' => '',
|
4685
|
'weight' => '-10',
|
4686
|
'file' => 'modules/node/content_types.inc',
|
4687
|
))
|
4688
|
->values(array(
|
4689
|
'path' => 'admin/reports',
|
4690
|
'load_functions' => '',
|
4691
|
'to_arg_functions' => '',
|
4692
|
'access_callback' => 'user_access',
|
4693
|
'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
|
4694
|
'page_callback' => 'system_admin_menu_block_page',
|
4695
|
'page_arguments' => 'a:0:{}',
|
4696
|
'fit' => '3',
|
4697
|
'number_parts' => '2',
|
4698
|
'tab_parent' => '',
|
4699
|
'tab_root' => 'admin/reports',
|
4700
|
'title' => 'Reports',
|
4701
|
'title_callback' => 't',
|
4702
|
'title_arguments' => '',
|
4703
|
'type' => '6',
|
4704
|
'block_callback' => '',
|
4705
|
'description' => 'View reports from system logs and other status information.',
|
4706
|
'position' => 'left',
|
4707
|
'weight' => '5',
|
4708
|
'file' => 'modules/system/system.admin.inc',
|
4709
|
))
|
4710
|
->values(array(
|
4711
|
'path' => 'admin/reports/access-denied',
|
4712
|
'load_functions' => '',
|
4713
|
'to_arg_functions' => '',
|
4714
|
'access_callback' => 'user_access',
|
4715
|
'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
|
4716
|
'page_callback' => 'dblog_top',
|
4717
|
'page_arguments' => 'a:1:{i:0;s:13:"access denied";}',
|
4718
|
'fit' => '7',
|
4719
|
'number_parts' => '3',
|
4720
|
'tab_parent' => '',
|
4721
|
'tab_root' => 'admin/reports/access-denied',
|
4722
|
'title' => "Top 'access denied' errors",
|
4723
|
'title_callback' => 't',
|
4724
|
'title_arguments' => '',
|
4725
|
'type' => '6',
|
4726
|
'block_callback' => '',
|
4727
|
'description' => "View 'access denied' errors (403s).",
|
4728
|
'position' => '',
|
4729
|
'weight' => '0',
|
4730
|
'file' => 'modules/dblog/dblog.admin.inc',
|
4731
|
))
|
4732
|
->values(array(
|
4733
|
'path' => 'admin/reports/dblog',
|
4734
|
'load_functions' => '',
|
4735
|
'to_arg_functions' => '',
|
4736
|
'access_callback' => 'user_access',
|
4737
|
'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
|
4738
|
'page_callback' => 'dblog_overview',
|
4739
|
'page_arguments' => 'a:0:{}',
|
4740
|
'fit' => '7',
|
4741
|
'number_parts' => '3',
|
4742
|
'tab_parent' => '',
|
4743
|
'tab_root' => 'admin/reports/dblog',
|
4744
|
'title' => 'Recent log entries',
|
4745
|
'title_callback' => 't',
|
4746
|
'title_arguments' => '',
|
4747
|
'type' => '6',
|
4748
|
'block_callback' => '',
|
4749
|
'description' => 'View events that have recently been logged.',
|
4750
|
'position' => '',
|
4751
|
'weight' => '-1',
|
4752
|
'file' => 'modules/dblog/dblog.admin.inc',
|
4753
|
))
|
4754
|
->values(array(
|
4755
|
'path' => 'admin/reports/event/%',
|
4756
|
'load_functions' => 'a:1:{i:3;N;}',
|
4757
|
'to_arg_functions' => '',
|
4758
|
'access_callback' => 'user_access',
|
4759
|
'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
|
4760
|
'page_callback' => 'dblog_event',
|
4761
|
'page_arguments' => 'a:1:{i:0;i:3;}',
|
4762
|
'fit' => '14',
|
4763
|
'number_parts' => '4',
|
4764
|
'tab_parent' => '',
|
4765
|
'tab_root' => 'admin/reports/event/%',
|
4766
|
'title' => 'Details',
|
4767
|
'title_callback' => 't',
|
4768
|
'title_arguments' => '',
|
4769
|
'type' => '4',
|
4770
|
'block_callback' => '',
|
4771
|
'description' => '',
|
4772
|
'position' => '',
|
4773
|
'weight' => '0',
|
4774
|
'file' => 'modules/dblog/dblog.admin.inc',
|
4775
|
))
|
4776
|
->values(array(
|
4777
|
'path' => 'admin/reports/page-not-found',
|
4778
|
'load_functions' => '',
|
4779
|
'to_arg_functions' => '',
|
4780
|
'access_callback' => 'user_access',
|
4781
|
'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
|
4782
|
'page_callback' => 'dblog_top',
|
4783
|
'page_arguments' => 'a:1:{i:0;s:14:"page not found";}',
|
4784
|
'fit' => '7',
|
4785
|
'number_parts' => '3',
|
4786
|
'tab_parent' => '',
|
4787
|
'tab_root' => 'admin/reports/page-not-found',
|
4788
|
'title' => "Top 'page not found' errors",
|
4789
|
'title_callback' => 't',
|
4790
|
'title_arguments' => '',
|
4791
|
'type' => '6',
|
4792
|
'block_callback' => '',
|
4793
|
'description' => "View 'page not found' errors (404s).",
|
4794
|
'position' => '',
|
4795
|
'weight' => '0',
|
4796
|
'file' => 'modules/dblog/dblog.admin.inc',
|
4797
|
))
|
4798
|
->values(array(
|
4799
|
'path' => 'admin/reports/status',
|
4800
|
'load_functions' => '',
|
4801
|
'to_arg_functions' => '',
|
4802
|
'access_callback' => 'user_access',
|
4803
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
4804
|
'page_callback' => 'system_status',
|
4805
|
'page_arguments' => 'a:0:{}',
|
4806
|
'fit' => '7',
|
4807
|
'number_parts' => '3',
|
4808
|
'tab_parent' => '',
|
4809
|
'tab_root' => 'admin/reports/status',
|
4810
|
'title' => 'Status report',
|
4811
|
'title_callback' => 't',
|
4812
|
'title_arguments' => '',
|
4813
|
'type' => '6',
|
4814
|
'block_callback' => '',
|
4815
|
'description' => "Get a status report about your site's operation and any detected problems.",
|
4816
|
'position' => '',
|
4817
|
'weight' => '10',
|
4818
|
'file' => 'modules/system/system.admin.inc',
|
4819
|
))
|
4820
|
->values(array(
|
4821
|
'path' => 'admin/reports/status/php',
|
4822
|
'load_functions' => '',
|
4823
|
'to_arg_functions' => '',
|
4824
|
'access_callback' => 'user_access',
|
4825
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
4826
|
'page_callback' => 'system_php',
|
4827
|
'page_arguments' => 'a:0:{}',
|
4828
|
'fit' => '15',
|
4829
|
'number_parts' => '4',
|
4830
|
'tab_parent' => '',
|
4831
|
'tab_root' => 'admin/reports/status/php',
|
4832
|
'title' => 'PHP',
|
4833
|
'title_callback' => 't',
|
4834
|
'title_arguments' => '',
|
4835
|
'type' => '4',
|
4836
|
'block_callback' => '',
|
4837
|
'description' => '',
|
4838
|
'position' => '',
|
4839
|
'weight' => '0',
|
4840
|
'file' => 'modules/system/system.admin.inc',
|
4841
|
))
|
4842
|
->values(array(
|
4843
|
'path' => 'admin/reports/status/run-cron',
|
4844
|
'load_functions' => '',
|
4845
|
'to_arg_functions' => '',
|
4846
|
'access_callback' => 'user_access',
|
4847
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
4848
|
'page_callback' => 'system_run_cron',
|
4849
|
'page_arguments' => 'a:0:{}',
|
4850
|
'fit' => '15',
|
4851
|
'number_parts' => '4',
|
4852
|
'tab_parent' => '',
|
4853
|
'tab_root' => 'admin/reports/status/run-cron',
|
4854
|
'title' => 'Run cron',
|
4855
|
'title_callback' => 't',
|
4856
|
'title_arguments' => '',
|
4857
|
'type' => '4',
|
4858
|
'block_callback' => '',
|
4859
|
'description' => '',
|
4860
|
'position' => '',
|
4861
|
'weight' => '0',
|
4862
|
'file' => 'modules/system/system.admin.inc',
|
4863
|
))
|
4864
|
->values(array(
|
4865
|
'path' => 'admin/reports/status/sql',
|
4866
|
'load_functions' => '',
|
4867
|
'to_arg_functions' => '',
|
4868
|
'access_callback' => 'user_access',
|
4869
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
4870
|
'page_callback' => 'system_sql',
|
4871
|
'page_arguments' => 'a:0:{}',
|
4872
|
'fit' => '15',
|
4873
|
'number_parts' => '4',
|
4874
|
'tab_parent' => '',
|
4875
|
'tab_root' => 'admin/reports/status/sql',
|
4876
|
'title' => 'SQL',
|
4877
|
'title_callback' => 't',
|
4878
|
'title_arguments' => '',
|
4879
|
'type' => '4',
|
4880
|
'block_callback' => '',
|
4881
|
'description' => '',
|
4882
|
'position' => '',
|
4883
|
'weight' => '0',
|
4884
|
'file' => 'modules/system/system.admin.inc',
|
4885
|
))
|
4886
|
->values(array(
|
4887
|
'path' => 'admin/reports/updates',
|
4888
|
'load_functions' => '',
|
4889
|
'to_arg_functions' => '',
|
4890
|
'access_callback' => 'user_access',
|
4891
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
4892
|
'page_callback' => 'update_status',
|
4893
|
'page_arguments' => 'a:0:{}',
|
4894
|
'fit' => '7',
|
4895
|
'number_parts' => '3',
|
4896
|
'tab_parent' => '',
|
4897
|
'tab_root' => 'admin/reports/updates',
|
4898
|
'title' => 'Available updates',
|
4899
|
'title_callback' => 't',
|
4900
|
'title_arguments' => '',
|
4901
|
'type' => '6',
|
4902
|
'block_callback' => '',
|
4903
|
'description' => 'Get a status report about available updates for your installed modules and themes.',
|
4904
|
'position' => '',
|
4905
|
'weight' => '10',
|
4906
|
'file' => 'modules/update/update.report.inc',
|
4907
|
))
|
4908
|
->values(array(
|
4909
|
'path' => 'admin/reports/updates/check',
|
4910
|
'load_functions' => '',
|
4911
|
'to_arg_functions' => '',
|
4912
|
'access_callback' => 'user_access',
|
4913
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
4914
|
'page_callback' => 'update_manual_status',
|
4915
|
'page_arguments' => 'a:0:{}',
|
4916
|
'fit' => '15',
|
4917
|
'number_parts' => '4',
|
4918
|
'tab_parent' => '',
|
4919
|
'tab_root' => 'admin/reports/updates/check',
|
4920
|
'title' => 'Manual update check',
|
4921
|
'title_callback' => 't',
|
4922
|
'title_arguments' => '',
|
4923
|
'type' => '4',
|
4924
|
'block_callback' => '',
|
4925
|
'description' => '',
|
4926
|
'position' => '',
|
4927
|
'weight' => '0',
|
4928
|
'file' => 'modules/update/update.fetch.inc',
|
4929
|
))
|
4930
|
->values(array(
|
4931
|
'path' => 'admin/reports/updates/list',
|
4932
|
'load_functions' => '',
|
4933
|
'to_arg_functions' => '',
|
4934
|
'access_callback' => 'user_access',
|
4935
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
4936
|
'page_callback' => 'update_status',
|
4937
|
'page_arguments' => 'a:0:{}',
|
4938
|
'fit' => '15',
|
4939
|
'number_parts' => '4',
|
4940
|
'tab_parent' => 'admin/reports/updates',
|
4941
|
'tab_root' => 'admin/reports/updates',
|
4942
|
'title' => 'List',
|
4943
|
'title_callback' => 't',
|
4944
|
'title_arguments' => '',
|
4945
|
'type' => '136',
|
4946
|
'block_callback' => '',
|
4947
|
'description' => '',
|
4948
|
'position' => '',
|
4949
|
'weight' => '0',
|
4950
|
'file' => 'modules/update/update.report.inc',
|
4951
|
))
|
4952
|
->values(array(
|
4953
|
'path' => 'admin/reports/updates/settings',
|
4954
|
'load_functions' => '',
|
4955
|
'to_arg_functions' => '',
|
4956
|
'access_callback' => 'user_access',
|
4957
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
4958
|
'page_callback' => 'drupal_get_form',
|
4959
|
'page_arguments' => 'a:1:{i:0;s:15:"update_settings";}',
|
4960
|
'fit' => '15',
|
4961
|
'number_parts' => '4',
|
4962
|
'tab_parent' => 'admin/reports/updates',
|
4963
|
'tab_root' => 'admin/reports/updates',
|
4964
|
'title' => 'Settings',
|
4965
|
'title_callback' => 't',
|
4966
|
'title_arguments' => '',
|
4967
|
'type' => '128',
|
4968
|
'block_callback' => '',
|
4969
|
'description' => '',
|
4970
|
'position' => '',
|
4971
|
'weight' => '0',
|
4972
|
'file' => 'modules/update/update.settings.inc',
|
4973
|
))
|
4974
|
->values(array(
|
4975
|
'path' => 'admin/settings',
|
4976
|
'load_functions' => '',
|
4977
|
'to_arg_functions' => '',
|
4978
|
'access_callback' => 'user_access',
|
4979
|
'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
|
4980
|
'page_callback' => 'system_settings_overview',
|
4981
|
'page_arguments' => 'a:0:{}',
|
4982
|
'fit' => '3',
|
4983
|
'number_parts' => '2',
|
4984
|
'tab_parent' => '',
|
4985
|
'tab_root' => 'admin/settings',
|
4986
|
'title' => 'Site configuration',
|
4987
|
'title_callback' => 't',
|
4988
|
'title_arguments' => '',
|
4989
|
'type' => '6',
|
4990
|
'block_callback' => '',
|
4991
|
'description' => 'Adjust basic site configuration options.',
|
4992
|
'position' => 'right',
|
4993
|
'weight' => '-5',
|
4994
|
'file' => 'modules/system/system.admin.inc',
|
4995
|
))
|
4996
|
->values(array(
|
4997
|
'path' => 'admin/settings/actions',
|
4998
|
'load_functions' => '',
|
4999
|
'to_arg_functions' => '',
|
5000
|
'access_callback' => 'user_access',
|
5001
|
'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
|
5002
|
'page_callback' => 'system_actions_manage',
|
5003
|
'page_arguments' => 'a:0:{}',
|
5004
|
'fit' => '7',
|
5005
|
'number_parts' => '3',
|
5006
|
'tab_parent' => '',
|
5007
|
'tab_root' => 'admin/settings/actions',
|
5008
|
'title' => 'Actions',
|
5009
|
'title_callback' => 't',
|
5010
|
'title_arguments' => '',
|
5011
|
'type' => '6',
|
5012
|
'block_callback' => '',
|
5013
|
'description' => 'Manage the actions defined for your site.',
|
5014
|
'position' => '',
|
5015
|
'weight' => '0',
|
5016
|
'file' => '',
|
5017
|
))
|
5018
|
->values(array(
|
5019
|
'path' => 'admin/settings/actions/configure',
|
5020
|
'load_functions' => '',
|
5021
|
'to_arg_functions' => '',
|
5022
|
'access_callback' => 'user_access',
|
5023
|
'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
|
5024
|
'page_callback' => 'drupal_get_form',
|
5025
|
'page_arguments' => 'a:1:{i:0;s:24:"system_actions_configure";}',
|
5026
|
'fit' => '15',
|
5027
|
'number_parts' => '4',
|
5028
|
'tab_parent' => '',
|
5029
|
'tab_root' => 'admin/settings/actions/configure',
|
5030
|
'title' => 'Configure an advanced action',
|
5031
|
'title_callback' => 't',
|
5032
|
'title_arguments' => '',
|
5033
|
'type' => '4',
|
5034
|
'block_callback' => '',
|
5035
|
'description' => '',
|
5036
|
'position' => '',
|
5037
|
'weight' => '0',
|
5038
|
'file' => '',
|
5039
|
))
|
5040
|
->values(array(
|
5041
|
'path' => 'admin/settings/actions/delete/%',
|
5042
|
'load_functions' => 'a:1:{i:4;s:12:"actions_load";}',
|
5043
|
'to_arg_functions' => '',
|
5044
|
'access_callback' => 'user_access',
|
5045
|
'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
|
5046
|
'page_callback' => 'drupal_get_form',
|
5047
|
'page_arguments' => 'a:2:{i:0;s:26:"system_actions_delete_form";i:1;i:4;}',
|
5048
|
'fit' => '30',
|
5049
|
'number_parts' => '5',
|
5050
|
'tab_parent' => '',
|
5051
|
'tab_root' => 'admin/settings/actions/delete/%',
|
5052
|
'title' => 'Delete action',
|
5053
|
'title_callback' => 't',
|
5054
|
'title_arguments' => '',
|
5055
|
'type' => '4',
|
5056
|
'block_callback' => '',
|
5057
|
'description' => 'Delete an action.',
|
5058
|
'position' => '',
|
5059
|
'weight' => '0',
|
5060
|
'file' => '',
|
5061
|
))
|
5062
|
->values(array(
|
5063
|
'path' => 'admin/settings/actions/manage',
|
5064
|
'load_functions' => '',
|
5065
|
'to_arg_functions' => '',
|
5066
|
'access_callback' => 'user_access',
|
5067
|
'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
|
5068
|
'page_callback' => 'system_actions_manage',
|
5069
|
'page_arguments' => 'a:0:{}',
|
5070
|
'fit' => '15',
|
5071
|
'number_parts' => '4',
|
5072
|
'tab_parent' => 'admin/settings/actions',
|
5073
|
'tab_root' => 'admin/settings/actions',
|
5074
|
'title' => 'Manage actions',
|
5075
|
'title_callback' => 't',
|
5076
|
'title_arguments' => '',
|
5077
|
'type' => '136',
|
5078
|
'block_callback' => '',
|
5079
|
'description' => 'Manage the actions defined for your site.',
|
5080
|
'position' => '',
|
5081
|
'weight' => '-2',
|
5082
|
'file' => '',
|
5083
|
))
|
5084
|
->values(array(
|
5085
|
'path' => 'admin/settings/actions/orphan',
|
5086
|
'load_functions' => '',
|
5087
|
'to_arg_functions' => '',
|
5088
|
'access_callback' => 'user_access',
|
5089
|
'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
|
5090
|
'page_callback' => 'system_actions_remove_orphans',
|
5091
|
'page_arguments' => 'a:0:{}',
|
5092
|
'fit' => '15',
|
5093
|
'number_parts' => '4',
|
5094
|
'tab_parent' => '',
|
5095
|
'tab_root' => 'admin/settings/actions/orphan',
|
5096
|
'title' => 'Remove orphans',
|
5097
|
'title_callback' => 't',
|
5098
|
'title_arguments' => '',
|
5099
|
'type' => '4',
|
5100
|
'block_callback' => '',
|
5101
|
'description' => '',
|
5102
|
'position' => '',
|
5103
|
'weight' => '0',
|
5104
|
'file' => '',
|
5105
|
))
|
5106
|
->values(array(
|
5107
|
'path' => 'admin/settings/admin',
|
5108
|
'load_functions' => '',
|
5109
|
'to_arg_functions' => '',
|
5110
|
'access_callback' => 'user_access',
|
5111
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
5112
|
'page_callback' => 'drupal_get_form',
|
5113
|
'page_arguments' => 'a:1:{i:0;s:27:"system_admin_theme_settings";}',
|
5114
|
'fit' => '7',
|
5115
|
'number_parts' => '3',
|
5116
|
'tab_parent' => '',
|
5117
|
'tab_root' => 'admin/settings/admin',
|
5118
|
'title' => 'Administration theme',
|
5119
|
'title_callback' => 't',
|
5120
|
'title_arguments' => '',
|
5121
|
'type' => '6',
|
5122
|
'block_callback' => 'system_admin_theme_settings',
|
5123
|
'description' => 'Settings for how your administrative pages should look.',
|
5124
|
'position' => 'left',
|
5125
|
'weight' => '0',
|
5126
|
'file' => 'modules/system/system.admin.inc',
|
5127
|
))
|
5128
|
->values(array(
|
5129
|
'path' => 'admin/settings/clean-urls',
|
5130
|
'load_functions' => '',
|
5131
|
'to_arg_functions' => '',
|
5132
|
'access_callback' => 'user_access',
|
5133
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
5134
|
'page_callback' => 'drupal_get_form',
|
5135
|
'page_arguments' => 'a:1:{i:0;s:25:"system_clean_url_settings";}',
|
5136
|
'fit' => '7',
|
5137
|
'number_parts' => '3',
|
5138
|
'tab_parent' => '',
|
5139
|
'tab_root' => 'admin/settings/clean-urls',
|
5140
|
'title' => 'Clean URLs',
|
5141
|
'title_callback' => 't',
|
5142
|
'title_arguments' => '',
|
5143
|
'type' => '6',
|
5144
|
'block_callback' => '',
|
5145
|
'description' => 'Enable or disable clean URLs for your site.',
|
5146
|
'position' => '',
|
5147
|
'weight' => '0',
|
5148
|
'file' => 'modules/system/system.admin.inc',
|
5149
|
))
|
5150
|
->values(array(
|
5151
|
'path' => 'admin/settings/clean-urls/check',
|
5152
|
'load_functions' => '',
|
5153
|
'to_arg_functions' => '',
|
5154
|
'access_callback' => '1',
|
5155
|
'access_arguments' => 'a:0:{}',
|
5156
|
'page_callback' => 'drupal_json',
|
5157
|
'page_arguments' => 'a:1:{i:0;a:1:{s:6:"status";b:1;}}',
|
5158
|
'fit' => '15',
|
5159
|
'number_parts' => '4',
|
5160
|
'tab_parent' => '',
|
5161
|
'tab_root' => 'admin/settings/clean-urls/check',
|
5162
|
'title' => 'Clean URL check',
|
5163
|
'title_callback' => 't',
|
5164
|
'title_arguments' => '',
|
5165
|
'type' => '4',
|
5166
|
'block_callback' => '',
|
5167
|
'description' => '',
|
5168
|
'position' => '',
|
5169
|
'weight' => '0',
|
5170
|
'file' => '',
|
5171
|
))
|
5172
|
->values(array(
|
5173
|
'path' => 'admin/settings/date-time',
|
5174
|
'load_functions' => '',
|
5175
|
'to_arg_functions' => '',
|
5176
|
'access_callback' => 'user_access',
|
5177
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
5178
|
'page_callback' => 'drupal_get_form',
|
5179
|
'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}',
|
5180
|
'fit' => '7',
|
5181
|
'number_parts' => '3',
|
5182
|
'tab_parent' => '',
|
5183
|
'tab_root' => 'admin/settings/date-time',
|
5184
|
'title' => 'Date and time',
|
5185
|
'title_callback' => 't',
|
5186
|
'title_arguments' => '',
|
5187
|
'type' => '6',
|
5188
|
'block_callback' => '',
|
5189
|
'description' => "Settings for how Drupal displays date and time, as well as the system's default timezone.",
|
5190
|
'position' => '',
|
5191
|
'weight' => '0',
|
5192
|
'file' => 'modules/system/system.admin.inc',
|
5193
|
))
|
5194
|
->values(array(
|
5195
|
'path' => 'admin/settings/date-time/lookup',
|
5196
|
'load_functions' => '',
|
5197
|
'to_arg_functions' => '',
|
5198
|
'access_callback' => 'user_access',
|
5199
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
5200
|
'page_callback' => 'system_date_time_lookup',
|
5201
|
'page_arguments' => 'a:0:{}',
|
5202
|
'fit' => '15',
|
5203
|
'number_parts' => '4',
|
5204
|
'tab_parent' => '',
|
5205
|
'tab_root' => 'admin/settings/date-time/lookup',
|
5206
|
'title' => 'Date and time lookup',
|
5207
|
'title_callback' => 't',
|
5208
|
'title_arguments' => '',
|
5209
|
'type' => '4',
|
5210
|
'block_callback' => '',
|
5211
|
'description' => '',
|
5212
|
'position' => '',
|
5213
|
'weight' => '0',
|
5214
|
'file' => 'modules/system/system.admin.inc',
|
5215
|
))
|
5216
|
->values(array(
|
5217
|
'path' => 'admin/settings/error-reporting',
|
5218
|
'load_functions' => '',
|
5219
|
'to_arg_functions' => '',
|
5220
|
'access_callback' => 'user_access',
|
5221
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
5222
|
'page_callback' => 'drupal_get_form',
|
5223
|
'page_arguments' => 'a:1:{i:0;s:31:"system_error_reporting_settings";}',
|
5224
|
'fit' => '7',
|
5225
|
'number_parts' => '3',
|
5226
|
'tab_parent' => '',
|
5227
|
'tab_root' => 'admin/settings/error-reporting',
|
5228
|
'title' => 'Error reporting',
|
5229
|
'title_callback' => 't',
|
5230
|
'title_arguments' => '',
|
5231
|
'type' => '6',
|
5232
|
'block_callback' => '',
|
5233
|
'description' => 'Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.',
|
5234
|
'position' => '',
|
5235
|
'weight' => '0',
|
5236
|
'file' => 'modules/system/system.admin.inc',
|
5237
|
))
|
5238
|
->values(array(
|
5239
|
'path' => 'admin/settings/file-system',
|
5240
|
'load_functions' => '',
|
5241
|
'to_arg_functions' => '',
|
5242
|
'access_callback' => 'user_access',
|
5243
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
5244
|
'page_callback' => 'drupal_get_form',
|
5245
|
'page_arguments' => 'a:1:{i:0;s:27:"system_file_system_settings";}',
|
5246
|
'fit' => '7',
|
5247
|
'number_parts' => '3',
|
5248
|
'tab_parent' => '',
|
5249
|
'tab_root' => 'admin/settings/file-system',
|
5250
|
'title' => 'File system',
|
5251
|
'title_callback' => 't',
|
5252
|
'title_arguments' => '',
|
5253
|
'type' => '6',
|
5254
|
'block_callback' => '',
|
5255
|
'description' => 'Tell Drupal where to store uploaded files and how they are accessed.',
|
5256
|
'position' => '',
|
5257
|
'weight' => '0',
|
5258
|
'file' => 'modules/system/system.admin.inc',
|
5259
|
))
|
5260
|
->values(array(
|
5261
|
'path' => 'admin/settings/filters',
|
5262
|
'load_functions' => '',
|
5263
|
'to_arg_functions' => '',
|
5264
|
'access_callback' => 'user_access',
|
5265
|
'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
|
5266
|
'page_callback' => 'drupal_get_form',
|
5267
|
'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
|
5268
|
'fit' => '7',
|
5269
|
'number_parts' => '3',
|
5270
|
'tab_parent' => '',
|
5271
|
'tab_root' => 'admin/settings/filters',
|
5272
|
'title' => 'Input formats',
|
5273
|
'title_callback' => 't',
|
5274
|
'title_arguments' => '',
|
5275
|
'type' => '6',
|
5276
|
'block_callback' => '',
|
5277
|
'description' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.',
|
5278
|
'position' => '',
|
5279
|
'weight' => '0',
|
5280
|
'file' => 'modules/filter/filter.admin.inc',
|
5281
|
))
|
5282
|
->values(array(
|
5283
|
'path' => 'admin/settings/filters/%',
|
5284
|
'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
|
5285
|
'to_arg_functions' => '',
|
5286
|
'access_callback' => 'user_access',
|
5287
|
'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
|
5288
|
'page_callback' => 'filter_admin_format_page',
|
5289
|
'page_arguments' => 'a:1:{i:0;i:3;}',
|
5290
|
'fit' => '14',
|
5291
|
'number_parts' => '4',
|
5292
|
'tab_parent' => '',
|
5293
|
'tab_root' => 'admin/settings/filters/%',
|
5294
|
'title' => '',
|
5295
|
'title_callback' => 'filter_admin_format_title',
|
5296
|
'title_arguments' => 'a:1:{i:0;i:3;}',
|
5297
|
'type' => '4',
|
5298
|
'block_callback' => '',
|
5299
|
'description' => '',
|
5300
|
'position' => '',
|
5301
|
'weight' => '0',
|
5302
|
'file' => 'modules/filter/filter.admin.inc',
|
5303
|
))
|
5304
|
->values(array(
|
5305
|
'path' => 'admin/settings/filters/%/configure',
|
5306
|
'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
|
5307
|
'to_arg_functions' => '',
|
5308
|
'access_callback' => 'user_access',
|
5309
|
'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
|
5310
|
'page_callback' => 'filter_admin_configure_page',
|
5311
|
'page_arguments' => 'a:1:{i:0;i:3;}',
|
5312
|
'fit' => '29',
|
5313
|
'number_parts' => '5',
|
5314
|
'tab_parent' => 'admin/settings/filters/%',
|
5315
|
'tab_root' => 'admin/settings/filters/%',
|
5316
|
'title' => 'Configure',
|
5317
|
'title_callback' => 't',
|
5318
|
'title_arguments' => '',
|
5319
|
'type' => '128',
|
5320
|
'block_callback' => '',
|
5321
|
'description' => '',
|
5322
|
'position' => '',
|
5323
|
'weight' => '1',
|
5324
|
'file' => 'modules/filter/filter.admin.inc',
|
5325
|
))
|
5326
|
->values(array(
|
5327
|
'path' => 'admin/settings/filters/%/edit',
|
5328
|
'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
|
5329
|
'to_arg_functions' => '',
|
5330
|
'access_callback' => 'user_access',
|
5331
|
'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
|
5332
|
'page_callback' => 'filter_admin_format_page',
|
5333
|
'page_arguments' => 'a:1:{i:0;i:3;}',
|
5334
|
'fit' => '29',
|
5335
|
'number_parts' => '5',
|
5336
|
'tab_parent' => 'admin/settings/filters/%',
|
5337
|
'tab_root' => 'admin/settings/filters/%',
|
5338
|
'title' => 'Edit',
|
5339
|
'title_callback' => 't',
|
5340
|
'title_arguments' => '',
|
5341
|
'type' => '136',
|
5342
|
'block_callback' => '',
|
5343
|
'description' => '',
|
5344
|
'position' => '',
|
5345
|
'weight' => '0',
|
5346
|
'file' => 'modules/filter/filter.admin.inc',
|
5347
|
))
|
5348
|
->values(array(
|
5349
|
'path' => 'admin/settings/filters/%/order',
|
5350
|
'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
|
5351
|
'to_arg_functions' => '',
|
5352
|
'access_callback' => 'user_access',
|
5353
|
'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
|
5354
|
'page_callback' => 'filter_admin_order_page',
|
5355
|
'page_arguments' => 'a:1:{i:0;i:3;}',
|
5356
|
'fit' => '29',
|
5357
|
'number_parts' => '5',
|
5358
|
'tab_parent' => 'admin/settings/filters/%',
|
5359
|
'tab_root' => 'admin/settings/filters/%',
|
5360
|
'title' => 'Rearrange',
|
5361
|
'title_callback' => 't',
|
5362
|
'title_arguments' => '',
|
5363
|
'type' => '128',
|
5364
|
'block_callback' => '',
|
5365
|
'description' => '',
|
5366
|
'position' => '',
|
5367
|
'weight' => '2',
|
5368
|
'file' => 'modules/filter/filter.admin.inc',
|
5369
|
))
|
5370
|
->values(array(
|
5371
|
'path' => 'admin/settings/filters/add',
|
5372
|
'load_functions' => '',
|
5373
|
'to_arg_functions' => '',
|
5374
|
'access_callback' => 'user_access',
|
5375
|
'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
|
5376
|
'page_callback' => 'filter_admin_format_page',
|
5377
|
'page_arguments' => 'a:0:{}',
|
5378
|
'fit' => '15',
|
5379
|
'number_parts' => '4',
|
5380
|
'tab_parent' => 'admin/settings/filters',
|
5381
|
'tab_root' => 'admin/settings/filters',
|
5382
|
'title' => 'Add input format',
|
5383
|
'title_callback' => 't',
|
5384
|
'title_arguments' => '',
|
5385
|
'type' => '128',
|
5386
|
'block_callback' => '',
|
5387
|
'description' => '',
|
5388
|
'position' => '',
|
5389
|
'weight' => '1',
|
5390
|
'file' => 'modules/filter/filter.admin.inc',
|
5391
|
))
|
5392
|
->values(array(
|
5393
|
'path' => 'admin/settings/filters/delete',
|
5394
|
'load_functions' => '',
|
5395
|
'to_arg_functions' => '',
|
5396
|
'access_callback' => 'user_access',
|
5397
|
'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
|
5398
|
'page_callback' => 'drupal_get_form',
|
5399
|
'page_arguments' => 'a:1:{i:0;s:19:"filter_admin_delete";}',
|
5400
|
'fit' => '15',
|
5401
|
'number_parts' => '4',
|
5402
|
'tab_parent' => '',
|
5403
|
'tab_root' => 'admin/settings/filters/delete',
|
5404
|
'title' => 'Delete input format',
|
5405
|
'title_callback' => 't',
|
5406
|
'title_arguments' => '',
|
5407
|
'type' => '4',
|
5408
|
'block_callback' => '',
|
5409
|
'description' => '',
|
5410
|
'position' => '',
|
5411
|
'weight' => '0',
|
5412
|
'file' => 'modules/filter/filter.admin.inc',
|
5413
|
))
|
5414
|
->values(array(
|
5415
|
'path' => 'admin/settings/filters/list',
|
5416
|
'load_functions' => '',
|
5417
|
'to_arg_functions' => '',
|
5418
|
'access_callback' => 'user_access',
|
5419
|
'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
|
5420
|
'page_callback' => 'drupal_get_form',
|
5421
|
'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
|
5422
|
'fit' => '15',
|
5423
|
'number_parts' => '4',
|
5424
|
'tab_parent' => 'admin/settings/filters',
|
5425
|
'tab_root' => 'admin/settings/filters',
|
5426
|
'title' => 'List',
|
5427
|
'title_callback' => 't',
|
5428
|
'title_arguments' => '',
|
5429
|
'type' => '136',
|
5430
|
'block_callback' => '',
|
5431
|
'description' => '',
|
5432
|
'position' => '',
|
5433
|
'weight' => '0',
|
5434
|
'file' => 'modules/filter/filter.admin.inc',
|
5435
|
))
|
5436
|
->values(array(
|
5437
|
'path' => 'admin/settings/image-toolkit',
|
5438
|
'load_functions' => '',
|
5439
|
'to_arg_functions' => '',
|
5440
|
'access_callback' => 'user_access',
|
5441
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
5442
|
'page_callback' => 'drupal_get_form',
|
5443
|
'page_arguments' => 'a:1:{i:0;s:29:"system_image_toolkit_settings";}',
|
5444
|
'fit' => '7',
|
5445
|
'number_parts' => '3',
|
5446
|
'tab_parent' => '',
|
5447
|
'tab_root' => 'admin/settings/image-toolkit',
|
5448
|
'title' => 'Image toolkit',
|
5449
|
'title_callback' => 't',
|
5450
|
'title_arguments' => '',
|
5451
|
'type' => '6',
|
5452
|
'block_callback' => '',
|
5453
|
'description' => 'Choose which image toolkit to use if you have installed optional toolkits.',
|
5454
|
'position' => '',
|
5455
|
'weight' => '0',
|
5456
|
'file' => 'modules/system/system.admin.inc',
|
5457
|
))
|
5458
|
->values(array(
|
5459
|
'path' => 'admin/settings/logging',
|
5460
|
'load_functions' => '',
|
5461
|
'to_arg_functions' => '',
|
5462
|
'access_callback' => 'user_access',
|
5463
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
5464
|
'page_callback' => 'system_logging_overview',
|
5465
|
'page_arguments' => 'a:0:{}',
|
5466
|
'fit' => '7',
|
5467
|
'number_parts' => '3',
|
5468
|
'tab_parent' => '',
|
5469
|
'tab_root' => 'admin/settings/logging',
|
5470
|
'title' => 'Logging and alerts',
|
5471
|
'title_callback' => 't',
|
5472
|
'title_arguments' => '',
|
5473
|
'type' => '6',
|
5474
|
'block_callback' => '',
|
5475
|
'description' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.",
|
5476
|
'position' => '',
|
5477
|
'weight' => '0',
|
5478
|
'file' => 'modules/system/system.admin.inc',
|
5479
|
))
|
5480
|
->values(array(
|
5481
|
'path' => 'admin/settings/logging/dblog',
|
5482
|
'load_functions' => '',
|
5483
|
'to_arg_functions' => '',
|
5484
|
'access_callback' => 'user_access',
|
5485
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
5486
|
'page_callback' => 'drupal_get_form',
|
5487
|
'page_arguments' => 'a:1:{i:0;s:20:"dblog_admin_settings";}',
|
5488
|
'fit' => '15',
|
5489
|
'number_parts' => '4',
|
5490
|
'tab_parent' => '',
|
5491
|
'tab_root' => 'admin/settings/logging/dblog',
|
5492
|
'title' => 'Database logging',
|
5493
|
'title_callback' => 't',
|
5494
|
'title_arguments' => '',
|
5495
|
'type' => '6',
|
5496
|
'block_callback' => '',
|
5497
|
'description' => 'Settings for logging to the Drupal database logs. This is the most common method for small to medium sites on shared hosting. The logs are viewable from the admin pages.',
|
5498
|
'position' => '',
|
5499
|
'weight' => '0',
|
5500
|
'file' => 'modules/dblog/dblog.admin.inc',
|
5501
|
))
|
5502
|
->values(array(
|
5503
|
'path' => 'admin/settings/performance',
|
5504
|
'load_functions' => '',
|
5505
|
'to_arg_functions' => '',
|
5506
|
'access_callback' => 'user_access',
|
5507
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
5508
|
'page_callback' => 'drupal_get_form',
|
5509
|
'page_arguments' => 'a:1:{i:0;s:27:"system_performance_settings";}',
|
5510
|
'fit' => '7',
|
5511
|
'number_parts' => '3',
|
5512
|
'tab_parent' => '',
|
5513
|
'tab_root' => 'admin/settings/performance',
|
5514
|
'title' => 'Performance',
|
5515
|
'title_callback' => 't',
|
5516
|
'title_arguments' => '',
|
5517
|
'type' => '6',
|
5518
|
'block_callback' => '',
|
5519
|
'description' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.',
|
5520
|
'position' => '',
|
5521
|
'weight' => '0',
|
5522
|
'file' => 'modules/system/system.admin.inc',
|
5523
|
))
|
5524
|
->values(array(
|
5525
|
'path' => 'admin/settings/site-information',
|
5526
|
'load_functions' => '',
|
5527
|
'to_arg_functions' => '',
|
5528
|
'access_callback' => 'user_access',
|
5529
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
5530
|
'page_callback' => 'drupal_get_form',
|
5531
|
'page_arguments' => 'a:1:{i:0;s:32:"system_site_information_settings";}',
|
5532
|
'fit' => '7',
|
5533
|
'number_parts' => '3',
|
5534
|
'tab_parent' => '',
|
5535
|
'tab_root' => 'admin/settings/site-information',
|
5536
|
'title' => 'Site information',
|
5537
|
'title_callback' => 't',
|
5538
|
'title_arguments' => '',
|
5539
|
'type' => '6',
|
5540
|
'block_callback' => '',
|
5541
|
'description' => 'Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.',
|
5542
|
'position' => '',
|
5543
|
'weight' => '0',
|
5544
|
'file' => 'modules/system/system.admin.inc',
|
5545
|
))
|
5546
|
->values(array(
|
5547
|
'path' => 'admin/settings/site-maintenance',
|
5548
|
'load_functions' => '',
|
5549
|
'to_arg_functions' => '',
|
5550
|
'access_callback' => 'user_access',
|
5551
|
'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
|
5552
|
'page_callback' => 'drupal_get_form',
|
5553
|
'page_arguments' => 'a:1:{i:0;s:32:"system_site_maintenance_settings";}',
|
5554
|
'fit' => '7',
|
5555
|
'number_parts' => '3',
|
5556
|
'tab_parent' => '',
|
5557
|
'tab_root' => 'admin/settings/site-maintenance',
|
5558
|
'title' => 'Site maintenance',
|
5559
|
'title_callback' => 't',
|
5560
|
'title_arguments' => '',
|
5561
|
'type' => '6',
|
5562
|
'block_callback' => '',
|
5563
|
'description' => 'Take the site off-line for maintenance or bring it back online.',
|
5564
|
'position' => '',
|
5565
|
'weight' => '0',
|
5566
|
'file' => 'modules/system/system.admin.inc',
|
5567
|
))
|
5568
|
->values(array(
|
5569
|
'path' => 'admin/user',
|
5570
|
'load_functions' => '',
|
5571
|
'to_arg_functions' => '',
|
5572
|
'access_callback' => 'user_access',
|
5573
|
'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
|
5574
|
'page_callback' => 'system_admin_menu_block_page',
|
5575
|
'page_arguments' => 'a:0:{}',
|
5576
|
'fit' => '3',
|
5577
|
'number_parts' => '2',
|
5578
|
'tab_parent' => '',
|
5579
|
'tab_root' => 'admin/user',
|
5580
|
'title' => 'User management',
|
5581
|
'title_callback' => 't',
|
5582
|
'title_arguments' => '',
|
5583
|
'type' => '6',
|
5584
|
'block_callback' => '',
|
5585
|
'description' => "Manage your site's users, groups and access to site features.",
|
5586
|
'position' => 'left',
|
5587
|
'weight' => '0',
|
5588
|
'file' => 'modules/system/system.admin.inc',
|
5589
|
))
|
5590
|
->values(array(
|
5591
|
'path' => 'admin/user/permissions',
|
5592
|
'load_functions' => '',
|
5593
|
'to_arg_functions' => '',
|
5594
|
'access_callback' => 'user_access',
|
5595
|
'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
|
5596
|
'page_callback' => 'drupal_get_form',
|
5597
|
'page_arguments' => 'a:1:{i:0;s:15:"user_admin_perm";}',
|
5598
|
'fit' => '7',
|
5599
|
'number_parts' => '3',
|
5600
|
'tab_parent' => '',
|
5601
|
'tab_root' => 'admin/user/permissions',
|
5602
|
'title' => 'Permissions',
|
5603
|
'title_callback' => 't',
|
5604
|
'title_arguments' => '',
|
5605
|
'type' => '6',
|
5606
|
'block_callback' => '',
|
5607
|
'description' => 'Determine access to features by selecting permissions for roles.',
|
5608
|
'position' => '',
|
5609
|
'weight' => '0',
|
5610
|
'file' => 'modules/user/user.admin.inc',
|
5611
|
))
|
5612
|
->values(array(
|
5613
|
'path' => 'admin/user/roles',
|
5614
|
'load_functions' => '',
|
5615
|
'to_arg_functions' => '',
|
5616
|
'access_callback' => 'user_access',
|
5617
|
'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
|
5618
|
'page_callback' => 'drupal_get_form',
|
5619
|
'page_arguments' => 'a:1:{i:0;s:19:"user_admin_new_role";}',
|
5620
|
'fit' => '7',
|
5621
|
'number_parts' => '3',
|
5622
|
'tab_parent' => '',
|
5623
|
'tab_root' => 'admin/user/roles',
|
5624
|
'title' => 'Roles',
|
5625
|
'title_callback' => 't',
|
5626
|
'title_arguments' => '',
|
5627
|
'type' => '6',
|
5628
|
'block_callback' => '',
|
5629
|
'description' => 'List, edit, or add user roles.',
|
5630
|
'position' => '',
|
5631
|
'weight' => '0',
|
5632
|
'file' => 'modules/user/user.admin.inc',
|
5633
|
))
|
5634
|
->values(array(
|
5635
|
'path' => 'admin/user/roles/edit',
|
5636
|
'load_functions' => '',
|
5637
|
'to_arg_functions' => '',
|
5638
|
'access_callback' => 'user_access',
|
5639
|
'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
|
5640
|
'page_callback' => 'drupal_get_form',
|
5641
|
'page_arguments' => 'a:1:{i:0;s:15:"user_admin_role";}',
|
5642
|
'fit' => '15',
|
5643
|
'number_parts' => '4',
|
5644
|
'tab_parent' => '',
|
5645
|
'tab_root' => 'admin/user/roles/edit',
|
5646
|
'title' => 'Edit role',
|
5647
|
'title_callback' => 't',
|
5648
|
'title_arguments' => '',
|
5649
|
'type' => '4',
|
5650
|
'block_callback' => '',
|
5651
|
'description' => '',
|
5652
|
'position' => '',
|
5653
|
'weight' => '0',
|
5654
|
'file' => 'modules/user/user.admin.inc',
|
5655
|
))
|
5656
|
->values(array(
|
5657
|
'path' => 'admin/user/rules',
|
5658
|
'load_functions' => '',
|
5659
|
'to_arg_functions' => '',
|
5660
|
'access_callback' => 'user_access',
|
5661
|
'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
|
5662
|
'page_callback' => 'user_admin_access',
|
5663
|
'page_arguments' => 'a:0:{}',
|
5664
|
'fit' => '7',
|
5665
|
'number_parts' => '3',
|
5666
|
'tab_parent' => '',
|
5667
|
'tab_root' => 'admin/user/rules',
|
5668
|
'title' => 'Access rules',
|
5669
|
'title_callback' => 't',
|
5670
|
'title_arguments' => '',
|
5671
|
'type' => '6',
|
5672
|
'block_callback' => '',
|
5673
|
'description' => 'List and create rules to disallow usernames, e-mail addresses, and IP addresses.',
|
5674
|
'position' => '',
|
5675
|
'weight' => '0',
|
5676
|
'file' => 'modules/user/user.admin.inc',
|
5677
|
))
|
5678
|
->values(array(
|
5679
|
'path' => 'admin/user/rules/add',
|
5680
|
'load_functions' => '',
|
5681
|
'to_arg_functions' => '',
|
5682
|
'access_callback' => 'user_access',
|
5683
|
'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
|
5684
|
'page_callback' => 'user_admin_access_add',
|
5685
|
'page_arguments' => 'a:0:{}',
|
5686
|
'fit' => '15',
|
5687
|
'number_parts' => '4',
|
5688
|
'tab_parent' => 'admin/user/rules',
|
5689
|
'tab_root' => 'admin/user/rules',
|
5690
|
'title' => 'Add rule',
|
5691
|
'title_callback' => 't',
|
5692
|
'title_arguments' => '',
|
5693
|
'type' => '128',
|
5694
|
'block_callback' => '',
|
5695
|
'description' => '',
|
5696
|
'position' => '',
|
5697
|
'weight' => '0',
|
5698
|
'file' => 'modules/user/user.admin.inc',
|
5699
|
))
|
5700
|
->values(array(
|
5701
|
'path' => 'admin/user/rules/check',
|
5702
|
'load_functions' => '',
|
5703
|
'to_arg_functions' => '',
|
5704
|
'access_callback' => 'user_access',
|
5705
|
'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
|
5706
|
'page_callback' => 'user_admin_access_check',
|
5707
|
'page_arguments' => 'a:0:{}',
|
5708
|
'fit' => '15',
|
5709
|
'number_parts' => '4',
|
5710
|
'tab_parent' => 'admin/user/rules',
|
5711
|
'tab_root' => 'admin/user/rules',
|
5712
|
'title' => 'Check rules',
|
5713
|
'title_callback' => 't',
|
5714
|
'title_arguments' => '',
|
5715
|
'type' => '128',
|
5716
|
'block_callback' => '',
|
5717
|
'description' => '',
|
5718
|
'position' => '',
|
5719
|
'weight' => '0',
|
5720
|
'file' => 'modules/user/user.admin.inc',
|
5721
|
))
|
5722
|
->values(array(
|
5723
|
'path' => 'admin/user/rules/delete',
|
5724
|
'load_functions' => '',
|
5725
|
'to_arg_functions' => '',
|
5726
|
'access_callback' => 'user_access',
|
5727
|
'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
|
5728
|
'page_callback' => 'drupal_get_form',
|
5729
|
'page_arguments' => 'a:1:{i:0;s:32:"user_admin_access_delete_confirm";}',
|
5730
|
'fit' => '15',
|
5731
|
'number_parts' => '4',
|
5732
|
'tab_parent' => '',
|
5733
|
'tab_root' => 'admin/user/rules/delete',
|
5734
|
'title' => 'Delete rule',
|
5735
|
'title_callback' => 't',
|
5736
|
'title_arguments' => '',
|
5737
|
'type' => '4',
|
5738
|
'block_callback' => '',
|
5739
|
'description' => '',
|
5740
|
'position' => '',
|
5741
|
'weight' => '0',
|
5742
|
'file' => 'modules/user/user.admin.inc',
|
5743
|
))
|
5744
|
->values(array(
|
5745
|
'path' => 'admin/user/rules/edit',
|
5746
|
'load_functions' => '',
|
5747
|
'to_arg_functions' => '',
|
5748
|
'access_callback' => 'user_access',
|
5749
|
'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
|
5750
|
'page_callback' => 'user_admin_access_edit',
|
5751
|
'page_arguments' => 'a:0:{}',
|
5752
|
'fit' => '15',
|
5753
|
'number_parts' => '4',
|
5754
|
'tab_parent' => '',
|
5755
|
'tab_root' => 'admin/user/rules/edit',
|
5756
|
'title' => 'Edit rule',
|
5757
|
'title_callback' => 't',
|
5758
|
'title_arguments' => '',
|
5759
|
'type' => '4',
|
5760
|
'block_callback' => '',
|
5761
|
'description' => '',
|
5762
|
'position' => '',
|
5763
|
'weight' => '0',
|
5764
|
'file' => 'modules/user/user.admin.inc',
|
5765
|
))
|
5766
|
->values(array(
|
5767
|
'path' => 'admin/user/rules/list',
|
5768
|
'load_functions' => '',
|
5769
|
'to_arg_functions' => '',
|
5770
|
'access_callback' => 'user_access',
|
5771
|
'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
|
5772
|
'page_callback' => 'user_admin_access',
|
5773
|
'page_arguments' => 'a:0:{}',
|
5774
|
'fit' => '15',
|
5775
|
'number_parts' => '4',
|
5776
|
'tab_parent' => 'admin/user/rules',
|
5777
|
'tab_root' => 'admin/user/rules',
|
5778
|
'title' => 'List',
|
5779
|
'title_callback' => 't',
|
5780
|
'title_arguments' => '',
|
5781
|
'type' => '136',
|
5782
|
'block_callback' => '',
|
5783
|
'description' => '',
|
5784
|
'position' => '',
|
5785
|
'weight' => '-10',
|
5786
|
'file' => 'modules/user/user.admin.inc',
|
5787
|
))
|
5788
|
->values(array(
|
5789
|
'path' => 'admin/user/settings',
|
5790
|
'load_functions' => '',
|
5791
|
'to_arg_functions' => '',
|
5792
|
'access_callback' => 'user_access',
|
5793
|
'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
|
5794
|
'page_callback' => 'drupal_get_form',
|
5795
|
'page_arguments' => 'a:1:{i:0;s:19:"user_admin_settings";}',
|
5796
|
'fit' => '7',
|
5797
|
'number_parts' => '3',
|
5798
|
'tab_parent' => '',
|
5799
|
'tab_root' => 'admin/user/settings',
|
5800
|
'title' => 'User settings',
|
5801
|
'title_callback' => 't',
|
5802
|
'title_arguments' => '',
|
5803
|
'type' => '6',
|
5804
|
'block_callback' => '',
|
5805
|
'description' => 'Configure default behavior of users, including registration requirements, e-mails, and user pictures.',
|
5806
|
'position' => '',
|
5807
|
'weight' => '0',
|
5808
|
'file' => 'modules/user/user.admin.inc',
|
5809
|
))
|
5810
|
->values(array(
|
5811
|
'path' => 'admin/user/user',
|
5812
|
'load_functions' => '',
|
5813
|
'to_arg_functions' => '',
|
5814
|
'access_callback' => 'user_access',
|
5815
|
'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
|
5816
|
'page_callback' => 'user_admin',
|
5817
|
'page_arguments' => 'a:1:{i:0;s:4:"list";}',
|
5818
|
'fit' => '7',
|
5819
|
'number_parts' => '3',
|
5820
|
'tab_parent' => '',
|
5821
|
'tab_root' => 'admin/user/user',
|
5822
|
'title' => 'Users',
|
5823
|
'title_callback' => 't',
|
5824
|
'title_arguments' => '',
|
5825
|
'type' => '6',
|
5826
|
'block_callback' => '',
|
5827
|
'description' => 'List, add, and edit users.',
|
5828
|
'position' => '',
|
5829
|
'weight' => '0',
|
5830
|
'file' => 'modules/user/user.admin.inc',
|
5831
|
))
|
5832
|
->values(array(
|
5833
|
'path' => 'admin/user/user/create',
|
5834
|
'load_functions' => '',
|
5835
|
'to_arg_functions' => '',
|
5836
|
'access_callback' => 'user_access',
|
5837
|
'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
|
5838
|
'page_callback' => 'user_admin',
|
5839
|
'page_arguments' => 'a:1:{i:0;s:6:"create";}',
|
5840
|
'fit' => '15',
|
5841
|
'number_parts' => '4',
|
5842
|
'tab_parent' => 'admin/user/user',
|
5843
|
'tab_root' => 'admin/user/user',
|
5844
|
'title' => 'Add user',
|
5845
|
'title_callback' => 't',
|
5846
|
'title_arguments' => '',
|
5847
|
'type' => '128',
|
5848
|
'block_callback' => '',
|
5849
|
'description' => '',
|
5850
|
'position' => '',
|
5851
|
'weight' => '0',
|
5852
|
'file' => 'modules/user/user.admin.inc',
|
5853
|
))
|
5854
|
->values(array(
|
5855
|
'path' => 'admin/user/user/list',
|
5856
|
'load_functions' => '',
|
5857
|
'to_arg_functions' => '',
|
5858
|
'access_callback' => 'user_access',
|
5859
|
'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
|
5860
|
'page_callback' => 'user_admin',
|
5861
|
'page_arguments' => 'a:1:{i:0;s:4:"list";}',
|
5862
|
'fit' => '15',
|
5863
|
'number_parts' => '4',
|
5864
|
'tab_parent' => 'admin/user/user',
|
5865
|
'tab_root' => 'admin/user/user',
|
5866
|
'title' => 'List',
|
5867
|
'title_callback' => 't',
|
5868
|
'title_arguments' => '',
|
5869
|
'type' => '136',
|
5870
|
'block_callback' => '',
|
5871
|
'description' => '',
|
5872
|
'position' => '',
|
5873
|
'weight' => '-10',
|
5874
|
'file' => 'modules/user/user.admin.inc',
|
5875
|
))
|
5876
|
->values(array(
|
5877
|
'path' => 'batch',
|
5878
|
'load_functions' => '',
|
5879
|
'to_arg_functions' => '',
|
5880
|
'access_callback' => '1',
|
5881
|
'access_arguments' => 'a:0:{}',
|
5882
|
'page_callback' => 'system_batch_page',
|
5883
|
'page_arguments' => 'a:0:{}',
|
5884
|
'fit' => '1',
|
5885
|
'number_parts' => '1',
|
5886
|
'tab_parent' => '',
|
5887
|
'tab_root' => 'batch',
|
5888
|
'title' => '',
|
5889
|
'title_callback' => 't',
|
5890
|
'title_arguments' => '',
|
5891
|
'type' => '4',
|
5892
|
'block_callback' => '',
|
5893
|
'description' => '',
|
5894
|
'position' => '',
|
5895
|
'weight' => '0',
|
5896
|
'file' => 'modules/system/system.admin.inc',
|
5897
|
))
|
5898
|
->values(array(
|
5899
|
'path' => 'filter/tips',
|
5900
|
'load_functions' => '',
|
5901
|
'to_arg_functions' => '',
|
5902
|
'access_callback' => '1',
|
5903
|
'access_arguments' => 'a:0:{}',
|
5904
|
'page_callback' => 'filter_tips_long',
|
5905
|
'page_arguments' => 'a:0:{}',
|
5906
|
'fit' => '3',
|
5907
|
'number_parts' => '2',
|
5908
|
'tab_parent' => '',
|
5909
|
'tab_root' => 'filter/tips',
|
5910
|
'title' => 'Compose tips',
|
5911
|
'title_callback' => 't',
|
5912
|
'title_arguments' => '',
|
5913
|
'type' => '20',
|
5914
|
'block_callback' => '',
|
5915
|
'description' => '',
|
5916
|
'position' => '',
|
5917
|
'weight' => '0',
|
5918
|
'file' => 'modules/filter/filter.pages.inc',
|
5919
|
))
|
5920
|
->values(array(
|
5921
|
'path' => 'logout',
|
5922
|
'load_functions' => '',
|
5923
|
'to_arg_functions' => '',
|
5924
|
'access_callback' => 'user_is_logged_in',
|
5925
|
'access_arguments' => 'a:0:{}',
|
5926
|
'page_callback' => 'user_logout',
|
5927
|
'page_arguments' => 'a:0:{}',
|
5928
|
'fit' => '1',
|
5929
|
'number_parts' => '1',
|
5930
|
'tab_parent' => '',
|
5931
|
'tab_root' => 'logout',
|
5932
|
'title' => 'Log out',
|
5933
|
'title_callback' => 't',
|
5934
|
'title_arguments' => '',
|
5935
|
'type' => '6',
|
5936
|
'block_callback' => '',
|
5937
|
'description' => '',
|
5938
|
'position' => '',
|
5939
|
'weight' => '10',
|
5940
|
'file' => 'modules/user/user.pages.inc',
|
5941
|
))
|
5942
|
->values(array(
|
5943
|
'path' => 'node',
|
5944
|
'load_functions' => '',
|
5945
|
'to_arg_functions' => '',
|
5946
|
'access_callback' => 'user_access',
|
5947
|
'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
|
5948
|
'page_callback' => 'node_page_default',
|
5949
|
'page_arguments' => 'a:0:{}',
|
5950
|
'fit' => '1',
|
5951
|
'number_parts' => '1',
|
5952
|
'tab_parent' => '',
|
5953
|
'tab_root' => 'node',
|
5954
|
'title' => 'Content',
|
5955
|
'title_callback' => 't',
|
5956
|
'title_arguments' => '',
|
5957
|
'type' => '4',
|
5958
|
'block_callback' => '',
|
5959
|
'description' => '',
|
5960
|
'position' => '',
|
5961
|
'weight' => '0',
|
5962
|
'file' => '',
|
5963
|
))
|
5964
|
->values(array(
|
5965
|
'path' => 'node/%',
|
5966
|
'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
|
5967
|
'to_arg_functions' => '',
|
5968
|
'access_callback' => 'node_access',
|
5969
|
'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
|
5970
|
'page_callback' => 'node_page_view',
|
5971
|
'page_arguments' => 'a:1:{i:0;i:1;}',
|
5972
|
'fit' => '2',
|
5973
|
'number_parts' => '2',
|
5974
|
'tab_parent' => '',
|
5975
|
'tab_root' => 'node/%',
|
5976
|
'title' => '',
|
5977
|
'title_callback' => 'node_page_title',
|
5978
|
'title_arguments' => 'a:1:{i:0;i:1;}',
|
5979
|
'type' => '4',
|
5980
|
'block_callback' => '',
|
5981
|
'description' => '',
|
5982
|
'position' => '',
|
5983
|
'weight' => '0',
|
5984
|
'file' => '',
|
5985
|
))
|
5986
|
->values(array(
|
5987
|
'path' => 'node/%/delete',
|
5988
|
'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
|
5989
|
'to_arg_functions' => '',
|
5990
|
'access_callback' => 'node_access',
|
5991
|
'access_arguments' => 'a:2:{i:0;s:6:"delete";i:1;i:1;}',
|
5992
|
'page_callback' => 'drupal_get_form',
|
5993
|
'page_arguments' => 'a:2:{i:0;s:19:"node_delete_confirm";i:1;i:1;}',
|
5994
|
'fit' => '5',
|
5995
|
'number_parts' => '3',
|
5996
|
'tab_parent' => '',
|
5997
|
'tab_root' => 'node/%/delete',
|
5998
|
'title' => 'Delete',
|
5999
|
'title_callback' => 't',
|
6000
|
'title_arguments' => '',
|
6001
|
'type' => '4',
|
6002
|
'block_callback' => '',
|
6003
|
'description' => '',
|
6004
|
'position' => '',
|
6005
|
'weight' => '1',
|
6006
|
'file' => 'modules/node/node.pages.inc',
|
6007
|
))
|
6008
|
->values(array(
|
6009
|
'path' => 'node/%/edit',
|
6010
|
'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
|
6011
|
'to_arg_functions' => '',
|
6012
|
'access_callback' => 'node_access',
|
6013
|
'access_arguments' => 'a:2:{i:0;s:6:"update";i:1;i:1;}',
|
6014
|
'page_callback' => 'node_page_edit',
|
6015
|
'page_arguments' => 'a:1:{i:0;i:1;}',
|
6016
|
'fit' => '5',
|
6017
|
'number_parts' => '3',
|
6018
|
'tab_parent' => 'node/%',
|
6019
|
'tab_root' => 'node/%',
|
6020
|
'title' => 'Edit',
|
6021
|
'title_callback' => 't',
|
6022
|
'title_arguments' => '',
|
6023
|
'type' => '128',
|
6024
|
'block_callback' => '',
|
6025
|
'description' => '',
|
6026
|
'position' => '',
|
6027
|
'weight' => '1',
|
6028
|
'file' => 'modules/node/node.pages.inc',
|
6029
|
))
|
6030
|
->values(array(
|
6031
|
'path' => 'node/%/revisions',
|
6032
|
'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
|
6033
|
'to_arg_functions' => '',
|
6034
|
'access_callback' => '_node_revision_access',
|
6035
|
'access_arguments' => 'a:1:{i:0;i:1;}',
|
6036
|
'page_callback' => 'node_revision_overview',
|
6037
|
'page_arguments' => 'a:1:{i:0;i:1;}',
|
6038
|
'fit' => '5',
|
6039
|
'number_parts' => '3',
|
6040
|
'tab_parent' => 'node/%',
|
6041
|
'tab_root' => 'node/%',
|
6042
|
'title' => 'Revisions',
|
6043
|
'title_callback' => 't',
|
6044
|
'title_arguments' => '',
|
6045
|
'type' => '128',
|
6046
|
'block_callback' => '',
|
6047
|
'description' => '',
|
6048
|
'position' => '',
|
6049
|
'weight' => '2',
|
6050
|
'file' => 'modules/node/node.pages.inc',
|
6051
|
))
|
6052
|
->values(array(
|
6053
|
'path' => 'node/%/revisions/%/delete',
|
6054
|
'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
|
6055
|
'to_arg_functions' => '',
|
6056
|
'access_callback' => '_node_revision_access',
|
6057
|
'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"delete";}',
|
6058
|
'page_callback' => 'drupal_get_form',
|
6059
|
'page_arguments' => 'a:2:{i:0;s:28:"node_revision_delete_confirm";i:1;i:1;}',
|
6060
|
'fit' => '21',
|
6061
|
'number_parts' => '5',
|
6062
|
'tab_parent' => '',
|
6063
|
'tab_root' => 'node/%/revisions/%/delete',
|
6064
|
'title' => 'Delete earlier revision',
|
6065
|
'title_callback' => 't',
|
6066
|
'title_arguments' => '',
|
6067
|
'type' => '4',
|
6068
|
'block_callback' => '',
|
6069
|
'description' => '',
|
6070
|
'position' => '',
|
6071
|
'weight' => '0',
|
6072
|
'file' => 'modules/node/node.pages.inc',
|
6073
|
))
|
6074
|
->values(array(
|
6075
|
'path' => 'node/%/revisions/%/revert',
|
6076
|
'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
|
6077
|
'to_arg_functions' => '',
|
6078
|
'access_callback' => '_node_revision_access',
|
6079
|
'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"update";}',
|
6080
|
'page_callback' => 'drupal_get_form',
|
6081
|
'page_arguments' => 'a:2:{i:0;s:28:"node_revision_revert_confirm";i:1;i:1;}',
|
6082
|
'fit' => '21',
|
6083
|
'number_parts' => '5',
|
6084
|
'tab_parent' => '',
|
6085
|
'tab_root' => 'node/%/revisions/%/revert',
|
6086
|
'title' => 'Revert to earlier revision',
|
6087
|
'title_callback' => 't',
|
6088
|
'title_arguments' => '',
|
6089
|
'type' => '4',
|
6090
|
'block_callback' => '',
|
6091
|
'description' => '',
|
6092
|
'position' => '',
|
6093
|
'weight' => '0',
|
6094
|
'file' => 'modules/node/node.pages.inc',
|
6095
|
))
|
6096
|
->values(array(
|
6097
|
'path' => 'node/%/revisions/%/view',
|
6098
|
'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
|
6099
|
'to_arg_functions' => '',
|
6100
|
'access_callback' => '_node_revision_access',
|
6101
|
'access_arguments' => 'a:1:{i:0;i:1;}',
|
6102
|
'page_callback' => 'node_show',
|
6103
|
'page_arguments' => 'a:3:{i:0;i:1;i:1;N;i:2;b:1;}',
|
6104
|
'fit' => '21',
|
6105
|
'number_parts' => '5',
|
6106
|
'tab_parent' => '',
|
6107
|
'tab_root' => 'node/%/revisions/%/view',
|
6108
|
'title' => 'Revisions',
|
6109
|
'title_callback' => 't',
|
6110
|
'title_arguments' => '',
|
6111
|
'type' => '4',
|
6112
|
'block_callback' => '',
|
6113
|
'description' => '',
|
6114
|
'position' => '',
|
6115
|
'weight' => '0',
|
6116
|
'file' => '',
|
6117
|
))
|
6118
|
->values(array(
|
6119
|
'path' => 'node/%/view',
|
6120
|
'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
|
6121
|
'to_arg_functions' => '',
|
6122
|
'access_callback' => 'node_access',
|
6123
|
'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
|
6124
|
'page_callback' => 'node_page_view',
|
6125
|
'page_arguments' => 'a:1:{i:0;i:1;}',
|
6126
|
'fit' => '5',
|
6127
|
'number_parts' => '3',
|
6128
|
'tab_parent' => 'node/%',
|
6129
|
'tab_root' => 'node/%',
|
6130
|
'title' => 'View',
|
6131
|
'title_callback' => 't',
|
6132
|
'title_arguments' => '',
|
6133
|
'type' => '136',
|
6134
|
'block_callback' => '',
|
6135
|
'description' => '',
|
6136
|
'position' => '',
|
6137
|
'weight' => '-10',
|
6138
|
'file' => '',
|
6139
|
))
|
6140
|
->values(array(
|
6141
|
'path' => 'node/add',
|
6142
|
'load_functions' => '',
|
6143
|
'to_arg_functions' => '',
|
6144
|
'access_callback' => '_node_add_access',
|
6145
|
'access_arguments' => 'a:0:{}',
|
6146
|
'page_callback' => 'node_add_page',
|
6147
|
'page_arguments' => 'a:0:{}',
|
6148
|
'fit' => '3',
|
6149
|
'number_parts' => '2',
|
6150
|
'tab_parent' => '',
|
6151
|
'tab_root' => 'node/add',
|
6152
|
'title' => 'Create content',
|
6153
|
'title_callback' => 't',
|
6154
|
'title_arguments' => '',
|
6155
|
'type' => '6',
|
6156
|
'block_callback' => '',
|
6157
|
'description' => '',
|
6158
|
'position' => '',
|
6159
|
'weight' => '1',
|
6160
|
'file' => 'modules/node/node.pages.inc',
|
6161
|
))
|
6162
|
->values(array(
|
6163
|
'path' => 'node/add/page',
|
6164
|
'load_functions' => '',
|
6165
|
'to_arg_functions' => '',
|
6166
|
'access_callback' => 'node_access',
|
6167
|
'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:4:"page";}',
|
6168
|
'page_callback' => 'node_add',
|
6169
|
'page_arguments' => 'a:1:{i:0;i:2;}',
|
6170
|
'fit' => '7',
|
6171
|
'number_parts' => '3',
|
6172
|
'tab_parent' => '',
|
6173
|
'tab_root' => 'node/add/page',
|
6174
|
'title' => 'Page',
|
6175
|
'title_callback' => 'check_plain',
|
6176
|
'title_arguments' => '',
|
6177
|
'type' => '6',
|
6178
|
'block_callback' => '',
|
6179
|
'description' => "A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.",
|
6180
|
'position' => '',
|
6181
|
'weight' => '0',
|
6182
|
'file' => 'modules/node/node.pages.inc',
|
6183
|
))
|
6184
|
->values(array(
|
6185
|
'path' => 'node/add/story',
|
6186
|
'load_functions' => '',
|
6187
|
'to_arg_functions' => '',
|
6188
|
'access_callback' => 'node_access',
|
6189
|
'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:5:"story";}',
|
6190
|
'page_callback' => 'node_add',
|
6191
|
'page_arguments' => 'a:1:{i:0;i:2;}',
|
6192
|
'fit' => '7',
|
6193
|
'number_parts' => '3',
|
6194
|
'tab_parent' => '',
|
6195
|
'tab_root' => 'node/add/story',
|
6196
|
'title' => 'Story',
|
6197
|
'title_callback' => 'check_plain',
|
6198
|
'title_arguments' => '',
|
6199
|
'type' => '6',
|
6200
|
'block_callback' => '',
|
6201
|
'description' => "A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.",
|
6202
|
'position' => '',
|
6203
|
'weight' => '0',
|
6204
|
'file' => 'modules/node/node.pages.inc',
|
6205
|
))
|
6206
|
->values(array(
|
6207
|
'path' => 'rss.xml',
|
6208
|
'load_functions' => '',
|
6209
|
'to_arg_functions' => '',
|
6210
|
'access_callback' => 'user_access',
|
6211
|
'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
|
6212
|
'page_callback' => 'node_feed',
|
6213
|
'page_arguments' => 'a:0:{}',
|
6214
|
'fit' => '1',
|
6215
|
'number_parts' => '1',
|
6216
|
'tab_parent' => '',
|
6217
|
'tab_root' => 'rss.xml',
|
6218
|
'title' => 'RSS feed',
|
6219
|
'title_callback' => 't',
|
6220
|
'title_arguments' => '',
|
6221
|
'type' => '4',
|
6222
|
'block_callback' => '',
|
6223
|
'description' => '',
|
6224
|
'position' => '',
|
6225
|
'weight' => '0',
|
6226
|
'file' => '',
|
6227
|
))
|
6228
|
->values(array(
|
6229
|
'path' => 'system/files',
|
6230
|
'load_functions' => '',
|
6231
|
'to_arg_functions' => '',
|
6232
|
'access_callback' => '1',
|
6233
|
'access_arguments' => 'a:0:{}',
|
6234
|
'page_callback' => 'file_download',
|
6235
|
'page_arguments' => 'a:0:{}',
|
6236
|
'fit' => '3',
|
6237
|
'number_parts' => '2',
|
6238
|
'tab_parent' => '',
|
6239
|
'tab_root' => 'system/files',
|
6240
|
'title' => 'File download',
|
6241
|
'title_callback' => 't',
|
6242
|
'title_arguments' => '',
|
6243
|
'type' => '4',
|
6244
|
'block_callback' => '',
|
6245
|
'description' => '',
|
6246
|
'position' => '',
|
6247
|
'weight' => '0',
|
6248
|
'file' => '',
|
6249
|
))
|
6250
|
->values(array(
|
6251
|
'path' => 'user',
|
6252
|
'load_functions' => '',
|
6253
|
'to_arg_functions' => '',
|
6254
|
'access_callback' => '1',
|
6255
|
'access_arguments' => 'a:0:{}',
|
6256
|
'page_callback' => 'user_page',
|
6257
|
'page_arguments' => 'a:0:{}',
|
6258
|
'fit' => '1',
|
6259
|
'number_parts' => '1',
|
6260
|
'tab_parent' => '',
|
6261
|
'tab_root' => 'user',
|
6262
|
'title' => 'User account',
|
6263
|
'title_callback' => 't',
|
6264
|
'title_arguments' => '',
|
6265
|
'type' => '4',
|
6266
|
'block_callback' => '',
|
6267
|
'description' => '',
|
6268
|
'position' => '',
|
6269
|
'weight' => '0',
|
6270
|
'file' => 'modules/user/user.pages.inc',
|
6271
|
))
|
6272
|
->values(array(
|
6273
|
'path' => 'user/%',
|
6274
|
'load_functions' => 'a:1:{i:1;s:22:"user_uid_optional_load";}',
|
6275
|
'to_arg_functions' => 'a:1:{i:1;s:24:"user_uid_optional_to_arg";}',
|
6276
|
'access_callback' => 'user_view_access',
|
6277
|
'access_arguments' => 'a:1:{i:0;i:1;}',
|
6278
|
'page_callback' => 'user_view',
|
6279
|
'page_arguments' => 'a:1:{i:0;i:1;}',
|
6280
|
'fit' => '2',
|
6281
|
'number_parts' => '2',
|
6282
|
'tab_parent' => '',
|
6283
|
'tab_root' => 'user/%',
|
6284
|
'title' => 'My account',
|
6285
|
'title_callback' => 'user_page_title',
|
6286
|
'title_arguments' => 'a:1:{i:0;i:1;}',
|
6287
|
'type' => '6',
|
6288
|
'block_callback' => '',
|
6289
|
'description' => '',
|
6290
|
'position' => '',
|
6291
|
'weight' => '0',
|
6292
|
'file' => 'modules/user/user.pages.inc',
|
6293
|
))
|
6294
|
->values(array(
|
6295
|
'path' => 'user/%/delete',
|
6296
|
'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
|
6297
|
'to_arg_functions' => '',
|
6298
|
'access_callback' => 'user_access',
|
6299
|
'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
|
6300
|
'page_callback' => 'drupal_get_form',
|
6301
|
'page_arguments' => 'a:2:{i:0;s:19:"user_confirm_delete";i:1;i:1;}',
|
6302
|
'fit' => '5',
|
6303
|
'number_parts' => '3',
|
6304
|
'tab_parent' => '',
|
6305
|
'tab_root' => 'user/%/delete',
|
6306
|
'title' => 'Delete',
|
6307
|
'title_callback' => 't',
|
6308
|
'title_arguments' => '',
|
6309
|
'type' => '4',
|
6310
|
'block_callback' => '',
|
6311
|
'description' => '',
|
6312
|
'position' => '',
|
6313
|
'weight' => '0',
|
6314
|
'file' => 'modules/user/user.pages.inc',
|
6315
|
))
|
6316
|
->values(array(
|
6317
|
'path' => 'user/%/edit',
|
6318
|
'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
|
6319
|
'to_arg_functions' => '',
|
6320
|
'access_callback' => 'user_edit_access',
|
6321
|
'access_arguments' => 'a:1:{i:0;i:1;}',
|
6322
|
'page_callback' => 'user_edit',
|
6323
|
'page_arguments' => 'a:1:{i:0;i:1;}',
|
6324
|
'fit' => '5',
|
6325
|
'number_parts' => '3',
|
6326
|
'tab_parent' => 'user/%',
|
6327
|
'tab_root' => 'user/%',
|
6328
|
'title' => 'Edit',
|
6329
|
'title_callback' => 't',
|
6330
|
'title_arguments' => '',
|
6331
|
'type' => '128',
|
6332
|
'block_callback' => '',
|
6333
|
'description' => '',
|
6334
|
'position' => '',
|
6335
|
'weight' => '0',
|
6336
|
'file' => 'modules/user/user.pages.inc',
|
6337
|
))
|
6338
|
->values(array(
|
6339
|
'path' => 'user/%/edit/account',
|
6340
|
'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
|
6341
|
'to_arg_functions' => '',
|
6342
|
'access_callback' => 'user_edit_access',
|
6343
|
'access_arguments' => 'a:1:{i:0;i:1;}',
|
6344
|
'page_callback' => 'user_edit',
|
6345
|
'page_arguments' => 'a:1:{i:0;i:1;}',
|
6346
|
'fit' => '11',
|
6347
|
'number_parts' => '4',
|
6348
|
'tab_parent' => 'user/%/edit',
|
6349
|
'tab_root' => 'user/%',
|
6350
|
'title' => 'Account',
|
6351
|
'title_callback' => 't',
|
6352
|
'title_arguments' => '',
|
6353
|
'type' => '136',
|
6354
|
'block_callback' => '',
|
6355
|
'description' => '',
|
6356
|
'position' => '',
|
6357
|
'weight' => '0',
|
6358
|
'file' => 'modules/user/user.pages.inc',
|
6359
|
))
|
6360
|
->values(array(
|
6361
|
'path' => 'user/%/view',
|
6362
|
'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
|
6363
|
'to_arg_functions' => '',
|
6364
|
'access_callback' => 'user_view_access',
|
6365
|
'access_arguments' => 'a:1:{i:0;i:1;}',
|
6366
|
'page_callback' => 'user_view',
|
6367
|
'page_arguments' => 'a:1:{i:0;i:1;}',
|
6368
|
'fit' => '5',
|
6369
|
'number_parts' => '3',
|
6370
|
'tab_parent' => 'user/%',
|
6371
|
'tab_root' => 'user/%',
|
6372
|
'title' => 'View',
|
6373
|
'title_callback' => 't',
|
6374
|
'title_arguments' => '',
|
6375
|
'type' => '136',
|
6376
|
'block_callback' => '',
|
6377
|
'description' => '',
|
6378
|
'position' => '',
|
6379
|
'weight' => '-10',
|
6380
|
'file' => 'modules/user/user.pages.inc',
|
6381
|
))
|
6382
|
->values(array(
|
6383
|
'path' => 'user/autocomplete',
|
6384
|
'load_functions' => '',
|
6385
|
'to_arg_functions' => '',
|
6386
|
'access_callback' => 'user_access',
|
6387
|
'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}',
|
6388
|
'page_callback' => 'user_autocomplete',
|
6389
|
'page_arguments' => 'a:0:{}',
|
6390
|
'fit' => '3',
|
6391
|
'number_parts' => '2',
|
6392
|
'tab_parent' => '',
|
6393
|
'tab_root' => 'user/autocomplete',
|
6394
|
'title' => 'User autocomplete',
|
6395
|
'title_callback' => 't',
|
6396
|
'title_arguments' => '',
|
6397
|
'type' => '4',
|
6398
|
'block_callback' => '',
|
6399
|
'description' => '',
|
6400
|
'position' => '',
|
6401
|
'weight' => '0',
|
6402
|
'file' => 'modules/user/user.pages.inc',
|
6403
|
))
|
6404
|
->values(array(
|
6405
|
'path' => 'user/login',
|
6406
|
'load_functions' => '',
|
6407
|
'to_arg_functions' => '',
|
6408
|
'access_callback' => 'user_is_anonymous',
|
6409
|
'access_arguments' => 'a:0:{}',
|
6410
|
'page_callback' => 'user_page',
|
6411
|
'page_arguments' => 'a:0:{}',
|
6412
|
'fit' => '3',
|
6413
|
'number_parts' => '2',
|
6414
|
'tab_parent' => 'user',
|
6415
|
'tab_root' => 'user',
|
6416
|
'title' => 'Log in',
|
6417
|
'title_callback' => 't',
|
6418
|
'title_arguments' => '',
|
6419
|
'type' => '136',
|
6420
|
'block_callback' => '',
|
6421
|
'description' => '',
|
6422
|
'position' => '',
|
6423
|
'weight' => '0',
|
6424
|
'file' => 'modules/user/user.pages.inc',
|
6425
|
))
|
6426
|
->values(array(
|
6427
|
'path' => 'user/password',
|
6428
|
'load_functions' => '',
|
6429
|
'to_arg_functions' => '',
|
6430
|
'access_callback' => 'user_is_anonymous',
|
6431
|
'access_arguments' => 'a:0:{}',
|
6432
|
'page_callback' => 'drupal_get_form',
|
6433
|
'page_arguments' => 'a:1:{i:0;s:9:"user_pass";}',
|
6434
|
'fit' => '3',
|
6435
|
'number_parts' => '2',
|
6436
|
'tab_parent' => 'user',
|
6437
|
'tab_root' => 'user',
|
6438
|
'title' => 'Request new password',
|
6439
|
'title_callback' => 't',
|
6440
|
'title_arguments' => '',
|
6441
|
'type' => '128',
|
6442
|
'block_callback' => '',
|
6443
|
'description' => '',
|
6444
|
'position' => '',
|
6445
|
'weight' => '0',
|
6446
|
'file' => 'modules/user/user.pages.inc',
|
6447
|
))
|
6448
|
->values(array(
|
6449
|
'path' => 'user/register',
|
6450
|
'load_functions' => '',
|
6451
|
'to_arg_functions' => '',
|
6452
|
'access_callback' => 'user_register_access',
|
6453
|
'access_arguments' => 'a:0:{}',
|
6454
|
'page_callback' => 'drupal_get_form',
|
6455
|
'page_arguments' => 'a:1:{i:0;s:13:"user_register";}',
|
6456
|
'fit' => '3',
|
6457
|
'number_parts' => '2',
|
6458
|
'tab_parent' => 'user',
|
6459
|
'tab_root' => 'user',
|
6460
|
'title' => 'Create new account',
|
6461
|
'title_callback' => 't',
|
6462
|
'title_arguments' => '',
|
6463
|
'type' => '128',
|
6464
|
'block_callback' => '',
|
6465
|
'description' => '',
|
6466
|
'position' => '',
|
6467
|
'weight' => '0',
|
6468
|
'file' => 'modules/user/user.pages.inc',
|
6469
|
))
|
6470
|
->values(array(
|
6471
|
'path' => 'user/reset/%/%/%',
|
6472
|
'load_functions' => 'a:3:{i:2;N;i:3;N;i:4;N;}',
|
6473
|
'to_arg_functions' => '',
|
6474
|
'access_callback' => '1',
|
6475
|
'access_arguments' => 'a:0:{}',
|
6476
|
'page_callback' => 'drupal_get_form',
|
6477
|
'page_arguments' => 'a:4:{i:0;s:15:"user_pass_reset";i:1;i:2;i:2;i:3;i:3;i:4;}',
|
6478
|
'fit' => '24',
|
6479
|
'number_parts' => '5',
|
6480
|
'tab_parent' => '',
|
6481
|
'tab_root' => 'user/reset/%/%/%',
|
6482
|
'title' => 'Reset password',
|
6483
|
'title_callback' => 't',
|
6484
|
'title_arguments' => '',
|
6485
|
'type' => '4',
|
6486
|
'block_callback' => '',
|
6487
|
'description' => '',
|
6488
|
'position' => '',
|
6489
|
'weight' => '0',
|
6490
|
'file' => 'modules/user/user.pages.inc',
|
6491
|
))
|
6492
|
->execute();
|
6493
|
|
6494
|
db_create_table('node', array(
|
6495
|
'fields' => array(
|
6496
|
'nid' => array(
|
6497
|
'type' => 'serial',
|
6498
|
'unsigned' => TRUE,
|
6499
|
'not null' => TRUE,
|
6500
|
),
|
6501
|
'vid' => array(
|
6502
|
'type' => 'int',
|
6503
|
'unsigned' => TRUE,
|
6504
|
'not null' => TRUE,
|
6505
|
'default' => 0,
|
6506
|
),
|
6507
|
'type' => array(
|
6508
|
'type' => 'varchar',
|
6509
|
'length' => 32,
|
6510
|
'not null' => TRUE,
|
6511
|
'default' => '',
|
6512
|
),
|
6513
|
'language' => array(
|
6514
|
'type' => 'varchar',
|
6515
|
'length' => 12,
|
6516
|
'not null' => TRUE,
|
6517
|
'default' => '',
|
6518
|
),
|
6519
|
'title' => array(
|
6520
|
'type' => 'varchar',
|
6521
|
'length' => 255,
|
6522
|
'not null' => TRUE,
|
6523
|
'default' => '',
|
6524
|
),
|
6525
|
'uid' => array(
|
6526
|
'type' => 'int',
|
6527
|
'not null' => TRUE,
|
6528
|
'default' => 0,
|
6529
|
),
|
6530
|
'status' => array(
|
6531
|
'type' => 'int',
|
6532
|
'not null' => TRUE,
|
6533
|
'default' => 1,
|
6534
|
),
|
6535
|
'created' => array(
|
6536
|
'type' => 'int',
|
6537
|
'not null' => TRUE,
|
6538
|
'default' => 0,
|
6539
|
),
|
6540
|
'changed' => array(
|
6541
|
'type' => 'int',
|
6542
|
'not null' => TRUE,
|
6543
|
'default' => 0,
|
6544
|
),
|
6545
|
'comment' => array(
|
6546
|
'type' => 'int',
|
6547
|
'not null' => TRUE,
|
6548
|
'default' => 0,
|
6549
|
),
|
6550
|
'promote' => array(
|
6551
|
'type' => 'int',
|
6552
|
'not null' => TRUE,
|
6553
|
'default' => 0,
|
6554
|
),
|
6555
|
'moderate' => array(
|
6556
|
'type' => 'int',
|
6557
|
'not null' => TRUE,
|
6558
|
'default' => 0,
|
6559
|
),
|
6560
|
'sticky' => array(
|
6561
|
'type' => 'int',
|
6562
|
'not null' => TRUE,
|
6563
|
'default' => 0,
|
6564
|
),
|
6565
|
'tnid' => array(
|
6566
|
'type' => 'int',
|
6567
|
'unsigned' => TRUE,
|
6568
|
'not null' => TRUE,
|
6569
|
'default' => 0,
|
6570
|
),
|
6571
|
'translate' => array(
|
6572
|
'type' => 'int',
|
6573
|
'not null' => TRUE,
|
6574
|
'default' => 0,
|
6575
|
),
|
6576
|
),
|
6577
|
'indexes' => array(
|
6578
|
'node_changed' => array(
|
6579
|
'changed',
|
6580
|
),
|
6581
|
'node_created' => array(
|
6582
|
'created',
|
6583
|
),
|
6584
|
'node_moderate' => array(
|
6585
|
'moderate',
|
6586
|
),
|
6587
|
'node_promote_status' => array(
|
6588
|
'promote',
|
6589
|
'status',
|
6590
|
),
|
6591
|
'node_status_type' => array(
|
6592
|
'status',
|
6593
|
'type',
|
6594
|
'nid',
|
6595
|
),
|
6596
|
'node_title_type' => array(
|
6597
|
'title',
|
6598
|
array(
|
6599
|
'type',
|
6600
|
4,
|
6601
|
),
|
6602
|
),
|
6603
|
'node_type' => array(
|
6604
|
array(
|
6605
|
'type',
|
6606
|
4,
|
6607
|
),
|
6608
|
),
|
6609
|
'uid' => array(
|
6610
|
'uid',
|
6611
|
),
|
6612
|
'tnid' => array(
|
6613
|
'tnid',
|
6614
|
),
|
6615
|
'translate' => array(
|
6616
|
'translate',
|
6617
|
),
|
6618
|
),
|
6619
|
'unique keys' => array(
|
6620
|
'vid' => array(
|
6621
|
'vid',
|
6622
|
),
|
6623
|
),
|
6624
|
'primary key' => array(
|
6625
|
'nid',
|
6626
|
),
|
6627
|
'module' => 'node',
|
6628
|
'name' => 'node',
|
6629
|
));
|
6630
|
|
6631
|
db_create_table('node_access', array(
|
6632
|
'fields' => array(
|
6633
|
'nid' => array(
|
6634
|
'type' => 'int',
|
6635
|
'unsigned' => TRUE,
|
6636
|
'not null' => TRUE,
|
6637
|
'default' => 0,
|
6638
|
),
|
6639
|
'gid' => array(
|
6640
|
'type' => 'int',
|
6641
|
'unsigned' => TRUE,
|
6642
|
'not null' => TRUE,
|
6643
|
'default' => 0,
|
6644
|
),
|
6645
|
'realm' => array(
|
6646
|
'type' => 'varchar',
|
6647
|
'length' => 255,
|
6648
|
'not null' => TRUE,
|
6649
|
'default' => '',
|
6650
|
),
|
6651
|
'grant_view' => array(
|
6652
|
'type' => 'int',
|
6653
|
'unsigned' => TRUE,
|
6654
|
'not null' => TRUE,
|
6655
|
'default' => 0,
|
6656
|
'size' => 'tiny',
|
6657
|
),
|
6658
|
'grant_update' => array(
|
6659
|
'type' => 'int',
|
6660
|
'unsigned' => TRUE,
|
6661
|
'not null' => TRUE,
|
6662
|
'default' => 0,
|
6663
|
'size' => 'tiny',
|
6664
|
),
|
6665
|
'grant_delete' => array(
|
6666
|
'type' => 'int',
|
6667
|
'unsigned' => TRUE,
|
6668
|
'not null' => TRUE,
|
6669
|
'default' => 0,
|
6670
|
'size' => 'tiny',
|
6671
|
),
|
6672
|
),
|
6673
|
'primary key' => array(
|
6674
|
'nid',
|
6675
|
'gid',
|
6676
|
'realm',
|
6677
|
),
|
6678
|
'module' => 'node',
|
6679
|
'name' => 'node_access',
|
6680
|
));
|
6681
|
db_insert('node_access')->fields(array(
|
6682
|
'nid',
|
6683
|
'gid',
|
6684
|
'realm',
|
6685
|
'grant_view',
|
6686
|
'grant_update',
|
6687
|
'grant_delete',
|
6688
|
))
|
6689
|
->values(array(
|
6690
|
'nid' => '0',
|
6691
|
'gid' => '0',
|
6692
|
'realm' => 'all',
|
6693
|
'grant_view' => '1',
|
6694
|
'grant_update' => '0',
|
6695
|
'grant_delete' => '0',
|
6696
|
))
|
6697
|
->execute();
|
6698
|
|
6699
|
db_create_table('node_counter', array(
|
6700
|
'fields' => array(
|
6701
|
'nid' => array(
|
6702
|
'type' => 'int',
|
6703
|
'not null' => TRUE,
|
6704
|
'default' => 0,
|
6705
|
),
|
6706
|
'totalcount' => array(
|
6707
|
'type' => 'int',
|
6708
|
'unsigned' => TRUE,
|
6709
|
'not null' => TRUE,
|
6710
|
'default' => 0,
|
6711
|
'size' => 'big',
|
6712
|
),
|
6713
|
'daycount' => array(
|
6714
|
'type' => 'int',
|
6715
|
'unsigned' => TRUE,
|
6716
|
'not null' => TRUE,
|
6717
|
'default' => 0,
|
6718
|
'size' => 'medium',
|
6719
|
),
|
6720
|
'timestamp' => array(
|
6721
|
'type' => 'int',
|
6722
|
'unsigned' => TRUE,
|
6723
|
'not null' => TRUE,
|
6724
|
'default' => 0,
|
6725
|
),
|
6726
|
),
|
6727
|
'primary key' => array(
|
6728
|
'nid',
|
6729
|
),
|
6730
|
'module' => 'node',
|
6731
|
'name' => 'node_counter',
|
6732
|
));
|
6733
|
|
6734
|
db_create_table('node_revisions', array(
|
6735
|
'fields' => array(
|
6736
|
'nid' => array(
|
6737
|
'type' => 'int',
|
6738
|
'unsigned' => TRUE,
|
6739
|
'not null' => TRUE,
|
6740
|
'default' => 0,
|
6741
|
),
|
6742
|
'vid' => array(
|
6743
|
'type' => 'serial',
|
6744
|
'unsigned' => TRUE,
|
6745
|
'not null' => TRUE,
|
6746
|
),
|
6747
|
'uid' => array(
|
6748
|
'type' => 'int',
|
6749
|
'not null' => TRUE,
|
6750
|
'default' => 0,
|
6751
|
),
|
6752
|
'title' => array(
|
6753
|
'type' => 'varchar',
|
6754
|
'length' => 255,
|
6755
|
'not null' => TRUE,
|
6756
|
'default' => '',
|
6757
|
),
|
6758
|
'body' => array(
|
6759
|
'type' => 'text',
|
6760
|
'not null' => TRUE,
|
6761
|
'size' => 'big',
|
6762
|
),
|
6763
|
'teaser' => array(
|
6764
|
'type' => 'text',
|
6765
|
'not null' => TRUE,
|
6766
|
'size' => 'big',
|
6767
|
),
|
6768
|
'log' => array(
|
6769
|
'type' => 'text',
|
6770
|
'not null' => TRUE,
|
6771
|
'size' => 'big',
|
6772
|
),
|
6773
|
'timestamp' => array(
|
6774
|
'type' => 'int',
|
6775
|
'not null' => TRUE,
|
6776
|
'default' => 0,
|
6777
|
),
|
6778
|
'format' => array(
|
6779
|
'type' => 'int',
|
6780
|
'not null' => TRUE,
|
6781
|
'default' => 0,
|
6782
|
),
|
6783
|
),
|
6784
|
'indexes' => array(
|
6785
|
'nid' => array(
|
6786
|
'nid',
|
6787
|
),
|
6788
|
'uid' => array(
|
6789
|
'uid',
|
6790
|
),
|
6791
|
),
|
6792
|
'primary key' => array(
|
6793
|
'vid',
|
6794
|
),
|
6795
|
'module' => 'node',
|
6796
|
'name' => 'node_revisions',
|
6797
|
));
|
6798
|
|
6799
|
db_create_table('node_type', array(
|
6800
|
'fields' => array(
|
6801
|
'type' => array(
|
6802
|
'type' => 'varchar',
|
6803
|
'length' => 32,
|
6804
|
'not null' => TRUE,
|
6805
|
),
|
6806
|
'name' => array(
|
6807
|
'type' => 'varchar',
|
6808
|
'length' => 255,
|
6809
|
'not null' => TRUE,
|
6810
|
'default' => '',
|
6811
|
),
|
6812
|
'module' => array(
|
6813
|
'type' => 'varchar',
|
6814
|
'length' => 255,
|
6815
|
'not null' => TRUE,
|
6816
|
),
|
6817
|
'description' => array(
|
6818
|
'type' => 'text',
|
6819
|
'not null' => TRUE,
|
6820
|
'size' => 'medium',
|
6821
|
),
|
6822
|
'help' => array(
|
6823
|
'type' => 'text',
|
6824
|
'not null' => TRUE,
|
6825
|
'size' => 'medium',
|
6826
|
),
|
6827
|
'has_title' => array(
|
6828
|
'type' => 'int',
|
6829
|
'unsigned' => TRUE,
|
6830
|
'not null' => TRUE,
|
6831
|
'size' => 'tiny',
|
6832
|
),
|
6833
|
'title_label' => array(
|
6834
|
'type' => 'varchar',
|
6835
|
'length' => 255,
|
6836
|
'not null' => TRUE,
|
6837
|
'default' => '',
|
6838
|
),
|
6839
|
'has_body' => array(
|
6840
|
'type' => 'int',
|
6841
|
'unsigned' => TRUE,
|
6842
|
'not null' => TRUE,
|
6843
|
'size' => 'tiny',
|
6844
|
),
|
6845
|
'body_label' => array(
|
6846
|
'type' => 'varchar',
|
6847
|
'length' => 255,
|
6848
|
'not null' => TRUE,
|
6849
|
'default' => '',
|
6850
|
),
|
6851
|
'min_word_count' => array(
|
6852
|
'type' => 'int',
|
6853
|
'unsigned' => TRUE,
|
6854
|
'not null' => TRUE,
|
6855
|
'size' => 'small',
|
6856
|
),
|
6857
|
'custom' => array(
|
6858
|
'type' => 'int',
|
6859
|
'not null' => TRUE,
|
6860
|
'default' => 0,
|
6861
|
'size' => 'tiny',
|
6862
|
),
|
6863
|
'modified' => array(
|
6864
|
'type' => 'int',
|
6865
|
'not null' => TRUE,
|
6866
|
'default' => 0,
|
6867
|
'size' => 'tiny',
|
6868
|
),
|
6869
|
'locked' => array(
|
6870
|
'type' => 'int',
|
6871
|
'not null' => TRUE,
|
6872
|
'default' => 0,
|
6873
|
'size' => 'tiny',
|
6874
|
),
|
6875
|
'orig_type' => array(
|
6876
|
'type' => 'varchar',
|
6877
|
'length' => 255,
|
6878
|
'not null' => TRUE,
|
6879
|
'default' => '',
|
6880
|
),
|
6881
|
),
|
6882
|
'primary key' => array(
|
6883
|
'type',
|
6884
|
),
|
6885
|
'module' => 'node',
|
6886
|
'name' => 'node_type',
|
6887
|
));
|
6888
|
db_insert('node_type')->fields(array(
|
6889
|
'type',
|
6890
|
'name',
|
6891
|
'module',
|
6892
|
'description',
|
6893
|
'help',
|
6894
|
'has_title',
|
6895
|
'title_label',
|
6896
|
'has_body',
|
6897
|
'body_label',
|
6898
|
'min_word_count',
|
6899
|
'custom',
|
6900
|
'modified',
|
6901
|
'locked',
|
6902
|
'orig_type',
|
6903
|
))
|
6904
|
->values(array(
|
6905
|
'type' => 'page',
|
6906
|
'name' => 'Page',
|
6907
|
'module' => 'node',
|
6908
|
'description' => "A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.",
|
6909
|
'help' => '',
|
6910
|
'has_title' => '1',
|
6911
|
'title_label' => 'Title',
|
6912
|
'has_body' => '1',
|
6913
|
'body_label' => 'Body',
|
6914
|
'min_word_count' => '0',
|
6915
|
'custom' => '1',
|
6916
|
'modified' => '1',
|
6917
|
'locked' => '0',
|
6918
|
'orig_type' => 'page',
|
6919
|
))
|
6920
|
->values(array(
|
6921
|
'type' => 'story',
|
6922
|
'name' => 'Story',
|
6923
|
'module' => 'node',
|
6924
|
'description' => "A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.",
|
6925
|
'help' => '',
|
6926
|
'has_title' => '1',
|
6927
|
'title_label' => 'Title',
|
6928
|
'has_body' => '1',
|
6929
|
'body_label' => 'Body',
|
6930
|
'min_word_count' => '0',
|
6931
|
'custom' => '1',
|
6932
|
'modified' => '1',
|
6933
|
'locked' => '0',
|
6934
|
'orig_type' => 'story',
|
6935
|
))
|
6936
|
->execute();
|
6937
|
|
6938
|
db_create_table('permission', array(
|
6939
|
'fields' => array(
|
6940
|
'pid' => array(
|
6941
|
'type' => 'serial',
|
6942
|
'not null' => TRUE,
|
6943
|
),
|
6944
|
'rid' => array(
|
6945
|
'type' => 'int',
|
6946
|
'unsigned' => TRUE,
|
6947
|
'not null' => TRUE,
|
6948
|
'default' => 0,
|
6949
|
),
|
6950
|
'perm' => array(
|
6951
|
'type' => 'text',
|
6952
|
'not null' => FALSE,
|
6953
|
'size' => 'big',
|
6954
|
),
|
6955
|
'tid' => array(
|
6956
|
'type' => 'int',
|
6957
|
'unsigned' => TRUE,
|
6958
|
'not null' => TRUE,
|
6959
|
'default' => 0,
|
6960
|
),
|
6961
|
),
|
6962
|
'primary key' => array(
|
6963
|
'pid',
|
6964
|
),
|
6965
|
'indexes' => array(
|
6966
|
'rid' => array(
|
6967
|
'rid',
|
6968
|
),
|
6969
|
),
|
6970
|
'module' => 'user',
|
6971
|
'name' => 'permission',
|
6972
|
));
|
6973
|
db_insert('permission')->fields(array(
|
6974
|
'pid',
|
6975
|
'rid',
|
6976
|
'perm',
|
6977
|
'tid',
|
6978
|
))
|
6979
|
->values(array(
|
6980
|
'pid' => '1',
|
6981
|
'rid' => '1',
|
6982
|
'perm' => 'access content',
|
6983
|
'tid' => '0',
|
6984
|
))
|
6985
|
->values(array(
|
6986
|
'pid' => '2',
|
6987
|
'rid' => '2',
|
6988
|
'perm' => 'access comments, access content, post comments, post comments without approval',
|
6989
|
'tid' => '0',
|
6990
|
))
|
6991
|
->execute();
|
6992
|
|
6993
|
db_create_table('role', array(
|
6994
|
'fields' => array(
|
6995
|
'rid' => array(
|
6996
|
'type' => 'serial',
|
6997
|
'unsigned' => TRUE,
|
6998
|
'not null' => TRUE,
|
6999
|
),
|
7000
|
'name' => array(
|
7001
|
'type' => 'varchar',
|
7002
|
'length' => 64,
|
7003
|
'not null' => TRUE,
|
7004
|
'default' => '',
|
7005
|
),
|
7006
|
),
|
7007
|
'unique keys' => array(
|
7008
|
'name' => array(
|
7009
|
'name',
|
7010
|
),
|
7011
|
),
|
7012
|
'primary key' => array(
|
7013
|
'rid',
|
7014
|
),
|
7015
|
'module' => 'user',
|
7016
|
'name' => 'role',
|
7017
|
));
|
7018
|
db_insert('role')->fields(array(
|
7019
|
'rid',
|
7020
|
'name',
|
7021
|
))
|
7022
|
->values(array(
|
7023
|
'rid' => '1',
|
7024
|
'name' => 'anonymous user',
|
7025
|
))
|
7026
|
->values(array(
|
7027
|
'rid' => '2',
|
7028
|
'name' => 'authenticated user',
|
7029
|
))
|
7030
|
->execute();
|
7031
|
|
7032
|
db_create_table('semaphore', array(
|
7033
|
'fields' => array(
|
7034
|
'name' => array(
|
7035
|
'type' => 'varchar',
|
7036
|
'length' => 255,
|
7037
|
'not null' => TRUE,
|
7038
|
'default' => '',
|
7039
|
),
|
7040
|
'value' => array(
|
7041
|
'type' => 'varchar',
|
7042
|
'length' => 255,
|
7043
|
'not null' => TRUE,
|
7044
|
'default' => '',
|
7045
|
),
|
7046
|
'expire' => array(
|
7047
|
'type' => 'float',
|
7048
|
'size' => 'big',
|
7049
|
'not null' => TRUE,
|
7050
|
),
|
7051
|
),
|
7052
|
'indexes' => array(
|
7053
|
'expire' => array(
|
7054
|
'expire',
|
7055
|
),
|
7056
|
),
|
7057
|
'primary key' => array(
|
7058
|
'name',
|
7059
|
),
|
7060
|
'module' => 'system',
|
7061
|
'name' => 'semaphore',
|
7062
|
));
|
7063
|
|
7064
|
db_create_table('sessions', array(
|
7065
|
'fields' => array(
|
7066
|
'uid' => array(
|
7067
|
'type' => 'int',
|
7068
|
'unsigned' => TRUE,
|
7069
|
'not null' => TRUE,
|
7070
|
),
|
7071
|
'sid' => array(
|
7072
|
'type' => 'varchar',
|
7073
|
'length' => 64,
|
7074
|
'not null' => TRUE,
|
7075
|
'default' => '',
|
7076
|
),
|
7077
|
'hostname' => array(
|
7078
|
'type' => 'varchar',
|
7079
|
'length' => 128,
|
7080
|
'not null' => TRUE,
|
7081
|
'default' => '',
|
7082
|
),
|
7083
|
'timestamp' => array(
|
7084
|
'type' => 'int',
|
7085
|
'not null' => TRUE,
|
7086
|
'default' => 0,
|
7087
|
),
|
7088
|
'cache' => array(
|
7089
|
'type' => 'int',
|
7090
|
'not null' => TRUE,
|
7091
|
'default' => 0,
|
7092
|
),
|
7093
|
'session' => array(
|
7094
|
'type' => 'text',
|
7095
|
'not null' => FALSE,
|
7096
|
'size' => 'big',
|
7097
|
),
|
7098
|
),
|
7099
|
'primary key' => array(
|
7100
|
'sid',
|
7101
|
),
|
7102
|
'indexes' => array(
|
7103
|
'timestamp' => array(
|
7104
|
'timestamp',
|
7105
|
),
|
7106
|
'uid' => array(
|
7107
|
'uid',
|
7108
|
),
|
7109
|
),
|
7110
|
'module' => 'system',
|
7111
|
'name' => 'sessions',
|
7112
|
));
|
7113
|
|
7114
|
db_create_table('system', array(
|
7115
|
'fields' => array(
|
7116
|
'filename' => array(
|
7117
|
'type' => 'varchar',
|
7118
|
'length' => 255,
|
7119
|
'not null' => TRUE,
|
7120
|
'default' => '',
|
7121
|
),
|
7122
|
'name' => array(
|
7123
|
'type' => 'varchar',
|
7124
|
'length' => 255,
|
7125
|
'not null' => TRUE,
|
7126
|
'default' => '',
|
7127
|
),
|
7128
|
'type' => array(
|
7129
|
'type' => 'varchar',
|
7130
|
'length' => 255,
|
7131
|
'not null' => TRUE,
|
7132
|
'default' => '',
|
7133
|
),
|
7134
|
'owner' => array(
|
7135
|
'type' => 'varchar',
|
7136
|
'length' => 255,
|
7137
|
'not null' => TRUE,
|
7138
|
'default' => '',
|
7139
|
),
|
7140
|
'status' => array(
|
7141
|
'type' => 'int',
|
7142
|
'not null' => TRUE,
|
7143
|
'default' => 0,
|
7144
|
),
|
7145
|
'throttle' => array(
|
7146
|
'type' => 'int',
|
7147
|
'not null' => TRUE,
|
7148
|
'default' => 0,
|
7149
|
'size' => 'tiny',
|
7150
|
),
|
7151
|
'bootstrap' => array(
|
7152
|
'type' => 'int',
|
7153
|
'not null' => TRUE,
|
7154
|
'default' => 0,
|
7155
|
),
|
7156
|
'schema_version' => array(
|
7157
|
'type' => 'int',
|
7158
|
'not null' => TRUE,
|
7159
|
'default' => -1,
|
7160
|
'size' => 'small',
|
7161
|
),
|
7162
|
'weight' => array(
|
7163
|
'type' => 'int',
|
7164
|
'not null' => TRUE,
|
7165
|
'default' => 0,
|
7166
|
),
|
7167
|
'info' => array(
|
7168
|
'type' => 'text',
|
7169
|
'not null' => FALSE,
|
7170
|
),
|
7171
|
),
|
7172
|
'primary key' => array(
|
7173
|
'filename',
|
7174
|
),
|
7175
|
'indexes' => array(
|
7176
|
'modules' => array(
|
7177
|
array(
|
7178
|
'type',
|
7179
|
12,
|
7180
|
),
|
7181
|
'status',
|
7182
|
'weight',
|
7183
|
'filename',
|
7184
|
),
|
7185
|
'bootstrap' => array(
|
7186
|
array(
|
7187
|
'type',
|
7188
|
12,
|
7189
|
),
|
7190
|
'status',
|
7191
|
'bootstrap',
|
7192
|
'weight',
|
7193
|
'filename',
|
7194
|
),
|
7195
|
'type_name' => array(
|
7196
|
array(
|
7197
|
'type',
|
7198
|
12,
|
7199
|
),
|
7200
|
'name',
|
7201
|
),
|
7202
|
),
|
7203
|
'module' => 'system',
|
7204
|
'name' => 'system',
|
7205
|
));
|
7206
|
db_insert('system')->fields(array(
|
7207
|
'filename',
|
7208
|
'name',
|
7209
|
'type',
|
7210
|
'owner',
|
7211
|
'status',
|
7212
|
'throttle',
|
7213
|
'bootstrap',
|
7214
|
'schema_version',
|
7215
|
'weight',
|
7216
|
'info',
|
7217
|
))
|
7218
|
->values(array(
|
7219
|
'filename' => 'modules/aggregator/aggregator.module',
|
7220
|
'name' => 'aggregator',
|
7221
|
'type' => 'module',
|
7222
|
'owner' => '',
|
7223
|
'status' => '0',
|
7224
|
'throttle' => '0',
|
7225
|
'bootstrap' => '0',
|
7226
|
'schema_version' => '-1',
|
7227
|
'weight' => '0',
|
7228
|
'info' => 'a:10:{s:4:"name";s:10:"Aggregator";s:11:"description";s:57:"Aggregates syndicated content (RSS, RDF, and Atom feeds).";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7229
|
))
|
7230
|
->values(array(
|
7231
|
'filename' => 'modules/block/block.module',
|
7232
|
'name' => 'block',
|
7233
|
'type' => 'module',
|
7234
|
'owner' => '',
|
7235
|
'status' => '1',
|
7236
|
'throttle' => '0',
|
7237
|
'bootstrap' => '0',
|
7238
|
'schema_version' => '0',
|
7239
|
'weight' => '0',
|
7240
|
'info' => 'a:10:{s:4:"name";s:5:"Block";s:11:"description";s:62:"Controls the boxes that are displayed around the main content.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7241
|
))
|
7242
|
->values(array(
|
7243
|
'filename' => 'modules/blog/blog.module',
|
7244
|
'name' => 'blog',
|
7245
|
'type' => 'module',
|
7246
|
'owner' => '',
|
7247
|
'status' => '0',
|
7248
|
'throttle' => '0',
|
7249
|
'bootstrap' => '0',
|
7250
|
'schema_version' => '-1',
|
7251
|
'weight' => '0',
|
7252
|
'info' => 'a:10:{s:4:"name";s:4:"Blog";s:11:"description";s:69:"Enables keeping easily and regularly updated user web pages or blogs.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7253
|
))
|
7254
|
->values(array(
|
7255
|
'filename' => 'modules/blogapi/blogapi.module',
|
7256
|
'name' => 'blogapi',
|
7257
|
'type' => 'module',
|
7258
|
'owner' => '',
|
7259
|
'status' => '0',
|
7260
|
'throttle' => '0',
|
7261
|
'bootstrap' => '0',
|
7262
|
'schema_version' => '-1',
|
7263
|
'weight' => '0',
|
7264
|
'info' => 'a:10:{s:4:"name";s:8:"Blog API";s:11:"description";s:79:"Allows users to post content using applications that support XML-RPC blog APIs.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7265
|
))
|
7266
|
->values(array(
|
7267
|
'filename' => 'modules/book/book.module',
|
7268
|
'name' => 'book',
|
7269
|
'type' => 'module',
|
7270
|
'owner' => '',
|
7271
|
'status' => '0',
|
7272
|
'throttle' => '0',
|
7273
|
'bootstrap' => '0',
|
7274
|
'schema_version' => '-1',
|
7275
|
'weight' => '0',
|
7276
|
'info' => 'a:10:{s:4:"name";s:4:"Book";s:11:"description";s:63:"Allows users to structure site pages in a hierarchy or outline.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7277
|
))
|
7278
|
->values(array(
|
7279
|
'filename' => 'modules/color/color.module',
|
7280
|
'name' => 'color',
|
7281
|
'type' => 'module',
|
7282
|
'owner' => '',
|
7283
|
'status' => '0',
|
7284
|
'throttle' => '0',
|
7285
|
'bootstrap' => '0',
|
7286
|
'schema_version' => '-1',
|
7287
|
'weight' => '0',
|
7288
|
'info' => 'a:10:{s:4:"name";s:5:"Color";s:11:"description";s:61:"Allows the user to change the color scheme of certain themes.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7289
|
))
|
7290
|
->values(array(
|
7291
|
'filename' => 'modules/comment/comment.module',
|
7292
|
'name' => 'comment',
|
7293
|
'type' => 'module',
|
7294
|
'owner' => '',
|
7295
|
'status' => '0',
|
7296
|
'throttle' => '0',
|
7297
|
'bootstrap' => '0',
|
7298
|
'schema_version' => '-1',
|
7299
|
'weight' => '0',
|
7300
|
'info' => 'a:10:{s:4:"name";s:7:"Comment";s:11:"description";s:57:"Allows users to comment on and discuss published content.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7301
|
))
|
7302
|
->values(array(
|
7303
|
'filename' => 'modules/contact/contact.module',
|
7304
|
'name' => 'contact',
|
7305
|
'type' => 'module',
|
7306
|
'owner' => '',
|
7307
|
'status' => '0',
|
7308
|
'throttle' => '0',
|
7309
|
'bootstrap' => '0',
|
7310
|
'schema_version' => '-1',
|
7311
|
'weight' => '0',
|
7312
|
'info' => 'a:10:{s:4:"name";s:7:"Contact";s:11:"description";s:61:"Enables the use of both personal and site-wide contact forms.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7313
|
))
|
7314
|
->values(array(
|
7315
|
'filename' => 'modules/dblog/dblog.module',
|
7316
|
'name' => 'dblog',
|
7317
|
'type' => 'module',
|
7318
|
'owner' => '',
|
7319
|
'status' => '1',
|
7320
|
'throttle' => '0',
|
7321
|
'bootstrap' => '0',
|
7322
|
'schema_version' => '6000',
|
7323
|
'weight' => '0',
|
7324
|
'info' => 'a:10:{s:4:"name";s:16:"Database logging";s:11:"description";s:47:"Logs and records system events to the database.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7325
|
))
|
7326
|
->values(array(
|
7327
|
'filename' => 'modules/filter/filter.module',
|
7328
|
'name' => 'filter',
|
7329
|
'type' => 'module',
|
7330
|
'owner' => '',
|
7331
|
'status' => '1',
|
7332
|
'throttle' => '0',
|
7333
|
'bootstrap' => '0',
|
7334
|
'schema_version' => '0',
|
7335
|
'weight' => '0',
|
7336
|
'info' => 'a:10:{s:4:"name";s:6:"Filter";s:11:"description";s:60:"Handles the filtering of content in preparation for display.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7337
|
))
|
7338
|
->values(array(
|
7339
|
'filename' => 'modules/forum/forum.module',
|
7340
|
'name' => 'forum',
|
7341
|
'type' => 'module',
|
7342
|
'owner' => '',
|
7343
|
'status' => '0',
|
7344
|
'throttle' => '0',
|
7345
|
'bootstrap' => '0',
|
7346
|
'schema_version' => '-1',
|
7347
|
'weight' => '0',
|
7348
|
'info' => 'a:10:{s:4:"name";s:5:"Forum";s:11:"description";s:50:"Enables threaded discussions about general topics.";s:12:"dependencies";a:2:{i:0;s:8:"taxonomy";i:1;s:7:"comment";}s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7349
|
))
|
7350
|
->values(array(
|
7351
|
'filename' => 'modules/help/help.module',
|
7352
|
'name' => 'help',
|
7353
|
'type' => 'module',
|
7354
|
'owner' => '',
|
7355
|
'status' => '0',
|
7356
|
'throttle' => '0',
|
7357
|
'bootstrap' => '0',
|
7358
|
'schema_version' => '-1',
|
7359
|
'weight' => '0',
|
7360
|
'info' => 'a:10:{s:4:"name";s:4:"Help";s:11:"description";s:35:"Manages the display of online help.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7361
|
))
|
7362
|
->values(array(
|
7363
|
'filename' => 'modules/locale/locale.module',
|
7364
|
'name' => 'locale',
|
7365
|
'type' => 'module',
|
7366
|
'owner' => '',
|
7367
|
'status' => '0',
|
7368
|
'throttle' => '0',
|
7369
|
'bootstrap' => '0',
|
7370
|
'schema_version' => '-1',
|
7371
|
'weight' => '0',
|
7372
|
'info' => 'a:10:{s:4:"name";s:6:"Locale";s:11:"description";s:119:"Adds language handling functionality and enables the translation of the user interface to languages other than English.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7373
|
))
|
7374
|
->values(array(
|
7375
|
'filename' => 'modules/menu/menu.module',
|
7376
|
'name' => 'menu',
|
7377
|
'type' => 'module',
|
7378
|
'owner' => '',
|
7379
|
'status' => '0',
|
7380
|
'throttle' => '0',
|
7381
|
'bootstrap' => '0',
|
7382
|
'schema_version' => '-1',
|
7383
|
'weight' => '0',
|
7384
|
'info' => 'a:10:{s:4:"name";s:4:"Menu";s:11:"description";s:60:"Allows administrators to customize the site navigation menu.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7385
|
))
|
7386
|
->values(array(
|
7387
|
'filename' => 'modules/node/node.module',
|
7388
|
'name' => 'node',
|
7389
|
'type' => 'module',
|
7390
|
'owner' => '',
|
7391
|
'status' => '1',
|
7392
|
'throttle' => '0',
|
7393
|
'bootstrap' => '0',
|
7394
|
'schema_version' => '0',
|
7395
|
'weight' => '0',
|
7396
|
'info' => 'a:10:{s:4:"name";s:4:"Node";s:11:"description";s:66:"Allows content to be submitted to the site and displayed on pages.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7397
|
))
|
7398
|
->values(array(
|
7399
|
'filename' => 'modules/openid/openid.module',
|
7400
|
'name' => 'openid',
|
7401
|
'type' => 'module',
|
7402
|
'owner' => '',
|
7403
|
'status' => '0',
|
7404
|
'throttle' => '0',
|
7405
|
'bootstrap' => '0',
|
7406
|
'schema_version' => '-1',
|
7407
|
'weight' => '0',
|
7408
|
'info' => 'a:10:{s:4:"name";s:6:"OpenID";s:11:"description";s:48:"Allows users to log into your site using OpenID.";s:7:"version";s:4:"6.17";s:7:"package";s:15:"Core - optional";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7409
|
))
|
7410
|
->values(array(
|
7411
|
'filename' => 'modules/path/path.module',
|
7412
|
'name' => 'path',
|
7413
|
'type' => 'module',
|
7414
|
'owner' => '',
|
7415
|
'status' => '0',
|
7416
|
'throttle' => '0',
|
7417
|
'bootstrap' => '0',
|
7418
|
'schema_version' => '-1',
|
7419
|
'weight' => '0',
|
7420
|
'info' => 'a:10:{s:4:"name";s:4:"Path";s:11:"description";s:28:"Allows users to rename URLs.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7421
|
))
|
7422
|
->values(array(
|
7423
|
'filename' => 'modules/php/php.module',
|
7424
|
'name' => 'php',
|
7425
|
'type' => 'module',
|
7426
|
'owner' => '',
|
7427
|
'status' => '0',
|
7428
|
'throttle' => '0',
|
7429
|
'bootstrap' => '0',
|
7430
|
'schema_version' => '-1',
|
7431
|
'weight' => '0',
|
7432
|
'info' => 'a:10:{s:4:"name";s:10:"PHP filter";s:11:"description";s:50:"Allows embedded PHP code/snippets to be evaluated.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7433
|
))
|
7434
|
->values(array(
|
7435
|
'filename' => 'modules/ping/ping.module',
|
7436
|
'name' => 'ping',
|
7437
|
'type' => 'module',
|
7438
|
'owner' => '',
|
7439
|
'status' => '0',
|
7440
|
'throttle' => '0',
|
7441
|
'bootstrap' => '0',
|
7442
|
'schema_version' => '-1',
|
7443
|
'weight' => '0',
|
7444
|
'info' => 'a:10:{s:4:"name";s:4:"Ping";s:11:"description";s:51:"Alerts other sites when your site has been updated.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7445
|
))
|
7446
|
->values(array(
|
7447
|
'filename' => 'modules/poll/poll.module',
|
7448
|
'name' => 'poll',
|
7449
|
'type' => 'module',
|
7450
|
'owner' => '',
|
7451
|
'status' => '0',
|
7452
|
'throttle' => '0',
|
7453
|
'bootstrap' => '0',
|
7454
|
'schema_version' => '-1',
|
7455
|
'weight' => '0',
|
7456
|
'info' => 'a:10:{s:4:"name";s:4:"Poll";s:11:"description";s:95:"Allows your site to capture votes on different topics in the form of multiple choice questions.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7457
|
))
|
7458
|
->values(array(
|
7459
|
'filename' => 'modules/profile/profile.module',
|
7460
|
'name' => 'profile',
|
7461
|
'type' => 'module',
|
7462
|
'owner' => '',
|
7463
|
'status' => '0',
|
7464
|
'throttle' => '0',
|
7465
|
'bootstrap' => '0',
|
7466
|
'schema_version' => '-1',
|
7467
|
'weight' => '0',
|
7468
|
'info' => 'a:10:{s:4:"name";s:7:"Profile";s:11:"description";s:36:"Supports configurable user profiles.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7469
|
))
|
7470
|
->values(array(
|
7471
|
'filename' => 'modules/search/search.module',
|
7472
|
'name' => 'search',
|
7473
|
'type' => 'module',
|
7474
|
'owner' => '',
|
7475
|
'status' => '0',
|
7476
|
'throttle' => '0',
|
7477
|
'bootstrap' => '0',
|
7478
|
'schema_version' => '-1',
|
7479
|
'weight' => '0',
|
7480
|
'info' => 'a:10:{s:4:"name";s:6:"Search";s:11:"description";s:36:"Enables site-wide keyword searching.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7481
|
))
|
7482
|
->values(array(
|
7483
|
'filename' => 'modules/statistics/statistics.module',
|
7484
|
'name' => 'statistics',
|
7485
|
'type' => 'module',
|
7486
|
'owner' => '',
|
7487
|
'status' => '0',
|
7488
|
'throttle' => '0',
|
7489
|
'bootstrap' => '0',
|
7490
|
'schema_version' => '-1',
|
7491
|
'weight' => '0',
|
7492
|
'info' => 'a:10:{s:4:"name";s:10:"Statistics";s:11:"description";s:37:"Logs access statistics for your site.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7493
|
))
|
7494
|
->values(array(
|
7495
|
'filename' => 'modules/syslog/syslog.module',
|
7496
|
'name' => 'syslog',
|
7497
|
'type' => 'module',
|
7498
|
'owner' => '',
|
7499
|
'status' => '0',
|
7500
|
'throttle' => '0',
|
7501
|
'bootstrap' => '0',
|
7502
|
'schema_version' => '-1',
|
7503
|
'weight' => '0',
|
7504
|
'info' => 'a:10:{s:4:"name";s:6:"Syslog";s:11:"description";s:41:"Logs and records system events to syslog.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7505
|
))
|
7506
|
->values(array(
|
7507
|
'filename' => 'modules/system/system.module',
|
7508
|
'name' => 'system',
|
7509
|
'type' => 'module',
|
7510
|
'owner' => '',
|
7511
|
'status' => '1',
|
7512
|
'throttle' => '0',
|
7513
|
'bootstrap' => '0',
|
7514
|
'schema_version' => '6055',
|
7515
|
'weight' => '0',
|
7516
|
'info' => 'a:10:{s:4:"name";s:6:"System";s:11:"description";s:54:"Handles general site configuration for administrators.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7517
|
))
|
7518
|
->values(array(
|
7519
|
'filename' => 'modules/taxonomy/taxonomy.module',
|
7520
|
'name' => 'taxonomy',
|
7521
|
'type' => 'module',
|
7522
|
'owner' => '',
|
7523
|
'status' => '0',
|
7524
|
'throttle' => '0',
|
7525
|
'bootstrap' => '0',
|
7526
|
'schema_version' => '-1',
|
7527
|
'weight' => '0',
|
7528
|
'info' => 'a:10:{s:4:"name";s:8:"Taxonomy";s:11:"description";s:38:"Enables the categorization of content.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7529
|
))
|
7530
|
->values(array(
|
7531
|
'filename' => 'modules/throttle/throttle.module',
|
7532
|
'name' => 'throttle',
|
7533
|
'type' => 'module',
|
7534
|
'owner' => '',
|
7535
|
'status' => '0',
|
7536
|
'throttle' => '0',
|
7537
|
'bootstrap' => '0',
|
7538
|
'schema_version' => '-1',
|
7539
|
'weight' => '0',
|
7540
|
'info' => 'a:10:{s:4:"name";s:8:"Throttle";s:11:"description";s:66:"Handles the auto-throttling mechanism, to control site congestion.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7541
|
))
|
7542
|
->values(array(
|
7543
|
'filename' => 'modules/tracker/tracker.module',
|
7544
|
'name' => 'tracker',
|
7545
|
'type' => 'module',
|
7546
|
'owner' => '',
|
7547
|
'status' => '0',
|
7548
|
'throttle' => '0',
|
7549
|
'bootstrap' => '0',
|
7550
|
'schema_version' => '-1',
|
7551
|
'weight' => '0',
|
7552
|
'info' => 'a:10:{s:4:"name";s:7:"Tracker";s:11:"description";s:43:"Enables tracking of recent posts for users.";s:12:"dependencies";a:1:{i:0;s:7:"comment";}s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7553
|
))
|
7554
|
->values(array(
|
7555
|
'filename' => 'modules/translation/translation.module',
|
7556
|
'name' => 'translation',
|
7557
|
'type' => 'module',
|
7558
|
'owner' => '',
|
7559
|
'status' => '0',
|
7560
|
'throttle' => '0',
|
7561
|
'bootstrap' => '0',
|
7562
|
'schema_version' => '-1',
|
7563
|
'weight' => '0',
|
7564
|
'info' => 'a:10:{s:4:"name";s:19:"Content translation";s:11:"description";s:57:"Allows content to be translated into different languages.";s:12:"dependencies";a:1:{i:0;s:6:"locale";}s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7565
|
))
|
7566
|
->values(array(
|
7567
|
'filename' => 'modules/trigger/trigger.module',
|
7568
|
'name' => 'trigger',
|
7569
|
'type' => 'module',
|
7570
|
'owner' => '',
|
7571
|
'status' => '0',
|
7572
|
'throttle' => '0',
|
7573
|
'bootstrap' => '0',
|
7574
|
'schema_version' => '-1',
|
7575
|
'weight' => '0',
|
7576
|
'info' => 'a:10:{s:4:"name";s:7:"Trigger";s:11:"description";s:90:"Enables actions to be fired on certain system events, such as when new content is created.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7577
|
))
|
7578
|
->values(array(
|
7579
|
'filename' => 'modules/update/update.module',
|
7580
|
'name' => 'update',
|
7581
|
'type' => 'module',
|
7582
|
'owner' => '',
|
7583
|
'status' => '1',
|
7584
|
'throttle' => '0',
|
7585
|
'bootstrap' => '0',
|
7586
|
'schema_version' => '6000',
|
7587
|
'weight' => '0',
|
7588
|
'info' => 'a:10:{s:4:"name";s:13:"Update status";s:11:"description";s:88:"Checks the status of available updates for Drupal and your installed modules and themes.";s:7:"version";s:4:"6.17";s:7:"package";s:15:"Core - optional";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7589
|
))
|
7590
|
->values(array(
|
7591
|
'filename' => 'modules/upload/upload.module',
|
7592
|
'name' => 'upload',
|
7593
|
'type' => 'module',
|
7594
|
'owner' => '',
|
7595
|
'status' => '0',
|
7596
|
'throttle' => '0',
|
7597
|
'bootstrap' => '0',
|
7598
|
'schema_version' => '-1',
|
7599
|
'weight' => '0',
|
7600
|
'info' => 'a:10:{s:4:"name";s:6:"Upload";s:11:"description";s:51:"Allows users to upload and attach files to content.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7601
|
))
|
7602
|
->values(array(
|
7603
|
'filename' => 'modules/user/user.module',
|
7604
|
'name' => 'user',
|
7605
|
'type' => 'module',
|
7606
|
'owner' => '',
|
7607
|
'status' => '1',
|
7608
|
'throttle' => '0',
|
7609
|
'bootstrap' => '0',
|
7610
|
'schema_version' => '0',
|
7611
|
'weight' => '0',
|
7612
|
'info' => 'a:10:{s:4:"name";s:4:"User";s:11:"description";s:47:"Manages the user registration and login system.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
|
7613
|
))
|
7614
|
->values(array(
|
7615
|
'filename' => 'themes/bluemarine/bluemarine.info',
|
7616
|
'name' => 'bluemarine',
|
7617
|
'type' => 'theme',
|
7618
|
'owner' => 'themes/engines/phptemplate/phptemplate.engine',
|
7619
|
'status' => '0',
|
7620
|
'throttle' => '0',
|
7621
|
'bootstrap' => '0',
|
7622
|
'schema_version' => '-1',
|
7623
|
'weight' => '0',
|
7624
|
'info' => 'a:13:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}',
|
7625
|
))
|
7626
|
->values(array(
|
7627
|
'filename' => 'themes/chameleon/chameleon.info',
|
7628
|
'name' => 'chameleon',
|
7629
|
'type' => 'theme',
|
7630
|
'owner' => 'themes/chameleon/chameleon.theme',
|
7631
|
'status' => '0',
|
7632
|
'throttle' => '0',
|
7633
|
'bootstrap' => '0',
|
7634
|
'schema_version' => '-1',
|
7635
|
'weight' => '0',
|
7636
|
'info' => 'a:12:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}',
|
7637
|
))
|
7638
|
->values(array(
|
7639
|
'filename' => 'themes/chameleon/marvin/marvin.info',
|
7640
|
'name' => 'marvin',
|
7641
|
'type' => 'theme',
|
7642
|
'owner' => '',
|
7643
|
'status' => '0',
|
7644
|
'throttle' => '0',
|
7645
|
'bootstrap' => '0',
|
7646
|
'schema_version' => '-1',
|
7647
|
'weight' => '0',
|
7648
|
'info' => 'a:13:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}',
|
7649
|
))
|
7650
|
->values(array(
|
7651
|
'filename' => 'themes/garland/garland.info',
|
7652
|
'name' => 'garland',
|
7653
|
'type' => 'theme',
|
7654
|
'owner' => 'themes/engines/phptemplate/phptemplate.engine',
|
7655
|
'status' => '1',
|
7656
|
'throttle' => '0',
|
7657
|
'bootstrap' => '0',
|
7658
|
'schema_version' => '-1',
|
7659
|
'weight' => '0',
|
7660
|
'info' => 'a:13:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}',
|
7661
|
))
|
7662
|
->values(array(
|
7663
|
'filename' => 'themes/garland/minnelli/minnelli.info',
|
7664
|
'name' => 'minnelli',
|
7665
|
'type' => 'theme',
|
7666
|
'owner' => 'themes/engines/phptemplate/phptemplate.engine',
|
7667
|
'status' => '0',
|
7668
|
'throttle' => '0',
|
7669
|
'bootstrap' => '0',
|
7670
|
'schema_version' => '-1',
|
7671
|
'weight' => '0',
|
7672
|
'info' => 'a:14:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}',
|
7673
|
))
|
7674
|
->values(array(
|
7675
|
'filename' => 'themes/pushbutton/pushbutton.info',
|
7676
|
'name' => 'pushbutton',
|
7677
|
'type' => 'theme',
|
7678
|
'owner' => 'themes/engines/phptemplate/phptemplate.engine',
|
7679
|
'status' => '0',
|
7680
|
'throttle' => '0',
|
7681
|
'bootstrap' => '0',
|
7682
|
'schema_version' => '-1',
|
7683
|
'weight' => '0',
|
7684
|
'info' => 'a:13:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}',
|
7685
|
))
|
7686
|
->execute();
|
7687
|
|
7688
|
db_create_table('url_alias', array(
|
7689
|
'fields' => array(
|
7690
|
'pid' => array(
|
7691
|
'type' => 'serial',
|
7692
|
'unsigned' => TRUE,
|
7693
|
'not null' => TRUE,
|
7694
|
),
|
7695
|
'src' => array(
|
7696
|
'type' => 'varchar',
|
7697
|
'length' => 128,
|
7698
|
'not null' => TRUE,
|
7699
|
'default' => '',
|
7700
|
),
|
7701
|
'dst' => array(
|
7702
|
'type' => 'varchar',
|
7703
|
'length' => 128,
|
7704
|
'not null' => TRUE,
|
7705
|
'default' => '',
|
7706
|
),
|
7707
|
'language' => array(
|
7708
|
'type' => 'varchar',
|
7709
|
'length' => 12,
|
7710
|
'not null' => TRUE,
|
7711
|
'default' => '',
|
7712
|
),
|
7713
|
),
|
7714
|
'unique keys' => array(
|
7715
|
'dst_language_pid' => array(
|
7716
|
'dst',
|
7717
|
'language',
|
7718
|
'pid',
|
7719
|
),
|
7720
|
),
|
7721
|
'primary key' => array(
|
7722
|
'pid',
|
7723
|
),
|
7724
|
'indexes' => array(
|
7725
|
'src_language_pid' => array(
|
7726
|
'src',
|
7727
|
'language',
|
7728
|
'pid',
|
7729
|
),
|
7730
|
),
|
7731
|
'module' => 'system',
|
7732
|
'name' => 'url_alias',
|
7733
|
));
|
7734
|
|
7735
|
db_create_table('users', array(
|
7736
|
'fields' => array(
|
7737
|
'uid' => array(
|
7738
|
'type' => 'serial',
|
7739
|
'unsigned' => TRUE,
|
7740
|
'not null' => TRUE,
|
7741
|
),
|
7742
|
'name' => array(
|
7743
|
'type' => 'varchar',
|
7744
|
'length' => 60,
|
7745
|
'not null' => TRUE,
|
7746
|
'default' => '',
|
7747
|
),
|
7748
|
'pass' => array(
|
7749
|
'type' => 'varchar',
|
7750
|
'length' => 32,
|
7751
|
'not null' => TRUE,
|
7752
|
'default' => '',
|
7753
|
),
|
7754
|
'mail' => array(
|
7755
|
'type' => 'varchar',
|
7756
|
'length' => 64,
|
7757
|
'not null' => FALSE,
|
7758
|
'default' => '',
|
7759
|
),
|
7760
|
'mode' => array(
|
7761
|
'type' => 'int',
|
7762
|
'not null' => TRUE,
|
7763
|
'default' => 0,
|
7764
|
'size' => 'tiny',
|
7765
|
),
|
7766
|
'sort' => array(
|
7767
|
'type' => 'int',
|
7768
|
'not null' => FALSE,
|
7769
|
'default' => 0,
|
7770
|
'size' => 'tiny',
|
7771
|
),
|
7772
|
'threshold' => array(
|
7773
|
'type' => 'int',
|
7774
|
'not null' => FALSE,
|
7775
|
'default' => 0,
|
7776
|
'size' => 'tiny',
|
7777
|
),
|
7778
|
'theme' => array(
|
7779
|
'type' => 'varchar',
|
7780
|
'length' => 255,
|
7781
|
'not null' => TRUE,
|
7782
|
'default' => '',
|
7783
|
),
|
7784
|
'signature' => array(
|
7785
|
'type' => 'varchar',
|
7786
|
'length' => 255,
|
7787
|
'not null' => TRUE,
|
7788
|
'default' => '',
|
7789
|
),
|
7790
|
'signature_format' => array(
|
7791
|
'type' => 'int',
|
7792
|
'size' => 'small',
|
7793
|
'not null' => TRUE,
|
7794
|
'default' => 0,
|
7795
|
),
|
7796
|
'created' => array(
|
7797
|
'type' => 'int',
|
7798
|
'not null' => TRUE,
|
7799
|
'default' => 0,
|
7800
|
),
|
7801
|
'access' => array(
|
7802
|
'type' => 'int',
|
7803
|
'not null' => TRUE,
|
7804
|
'default' => 0,
|
7805
|
),
|
7806
|
'login' => array(
|
7807
|
'type' => 'int',
|
7808
|
'not null' => TRUE,
|
7809
|
'default' => 0,
|
7810
|
),
|
7811
|
'status' => array(
|
7812
|
'type' => 'int',
|
7813
|
'not null' => TRUE,
|
7814
|
'default' => 0,
|
7815
|
'size' => 'tiny',
|
7816
|
),
|
7817
|
'timezone' => array(
|
7818
|
'type' => 'varchar',
|
7819
|
'length' => 8,
|
7820
|
'not null' => FALSE,
|
7821
|
),
|
7822
|
'language' => array(
|
7823
|
'type' => 'varchar',
|
7824
|
'length' => 12,
|
7825
|
'not null' => TRUE,
|
7826
|
'default' => '',
|
7827
|
),
|
7828
|
'picture' => array(
|
7829
|
'type' => 'varchar',
|
7830
|
'length' => 255,
|
7831
|
'not null' => TRUE,
|
7832
|
'default' => '',
|
7833
|
),
|
7834
|
'init' => array(
|
7835
|
'type' => 'varchar',
|
7836
|
'length' => 64,
|
7837
|
'not null' => FALSE,
|
7838
|
'default' => '',
|
7839
|
),
|
7840
|
'data' => array(
|
7841
|
'type' => 'text',
|
7842
|
'not null' => FALSE,
|
7843
|
'size' => 'big',
|
7844
|
),
|
7845
|
),
|
7846
|
'indexes' => array(
|
7847
|
'access' => array(
|
7848
|
'access',
|
7849
|
),
|
7850
|
'created' => array(
|
7851
|
'created',
|
7852
|
),
|
7853
|
'mail' => array(
|
7854
|
'mail',
|
7855
|
),
|
7856
|
),
|
7857
|
'unique keys' => array(
|
7858
|
'name' => array(
|
7859
|
'name',
|
7860
|
),
|
7861
|
),
|
7862
|
'primary key' => array(
|
7863
|
'uid',
|
7864
|
),
|
7865
|
'module' => 'user',
|
7866
|
'name' => 'users',
|
7867
|
));
|
7868
|
db_insert('users')->fields(array(
|
7869
|
'uid',
|
7870
|
'name',
|
7871
|
'pass',
|
7872
|
'mail',
|
7873
|
'mode',
|
7874
|
'sort',
|
7875
|
'threshold',
|
7876
|
'theme',
|
7877
|
'signature',
|
7878
|
'signature_format',
|
7879
|
'created',
|
7880
|
'access',
|
7881
|
'login',
|
7882
|
'status',
|
7883
|
'timezone',
|
7884
|
'language',
|
7885
|
'picture',
|
7886
|
'init',
|
7887
|
'data',
|
7888
|
))
|
7889
|
->values(array(
|
7890
|
'uid' => 1,
|
7891
|
'name' => '',
|
7892
|
'pass' => '',
|
7893
|
'mail' => '',
|
7894
|
'mode' => '0',
|
7895
|
'sort' => '0',
|
7896
|
'threshold' => '0',
|
7897
|
'theme' => '',
|
7898
|
'signature' => '',
|
7899
|
'signature_format' => '0',
|
7900
|
'created' => '0',
|
7901
|
'access' => '0',
|
7902
|
'login' => '0',
|
7903
|
'status' => '0',
|
7904
|
'timezone' => '-21600',
|
7905
|
'language' => '',
|
7906
|
'picture' => '',
|
7907
|
'init' => '',
|
7908
|
'data' => NULL,
|
7909
|
))
|
7910
|
->values(array(
|
7911
|
'uid' => 2,
|
7912
|
'name' => 'admin',
|
7913
|
'pass' => '21232f297a57a5a743894a0e4a801fc3',
|
7914
|
'mail' => 'admin@example.com',
|
7915
|
'mode' => '0',
|
7916
|
'sort' => '0',
|
7917
|
'threshold' => '0',
|
7918
|
'theme' => '',
|
7919
|
'signature' => '',
|
7920
|
'signature_format' => '0',
|
7921
|
'created' => '1277671599',
|
7922
|
'access' => '1277671612',
|
7923
|
'login' => '1277671612',
|
7924
|
'status' => '1',
|
7925
|
'timezone' => '-21600',
|
7926
|
'language' => '',
|
7927
|
'picture' => '',
|
7928
|
'init' => 'admin@example.com',
|
7929
|
'data' => 'a:0:{}',
|
7930
|
))
|
7931
|
->execute();
|
7932
|
db_query('UPDATE {users} SET uid = uid - 1');
|
7933
|
|
7934
|
db_create_table('users_roles', array(
|
7935
|
'fields' => array(
|
7936
|
'uid' => array(
|
7937
|
'type' => 'int',
|
7938
|
'unsigned' => TRUE,
|
7939
|
'not null' => TRUE,
|
7940
|
'default' => 0,
|
7941
|
),
|
7942
|
'rid' => array(
|
7943
|
'type' => 'int',
|
7944
|
'unsigned' => TRUE,
|
7945
|
'not null' => TRUE,
|
7946
|
'default' => 0,
|
7947
|
),
|
7948
|
),
|
7949
|
'primary key' => array(
|
7950
|
'uid',
|
7951
|
'rid',
|
7952
|
),
|
7953
|
'indexes' => array(
|
7954
|
'rid' => array(
|
7955
|
'rid',
|
7956
|
),
|
7957
|
),
|
7958
|
'module' => 'user',
|
7959
|
'name' => 'users_roles',
|
7960
|
));
|
7961
|
|
7962
|
db_create_table('variable', array(
|
7963
|
'fields' => array(
|
7964
|
'name' => array(
|
7965
|
'type' => 'varchar',
|
7966
|
'length' => 128,
|
7967
|
'not null' => TRUE,
|
7968
|
'default' => '',
|
7969
|
),
|
7970
|
'value' => array(
|
7971
|
'type' => 'text',
|
7972
|
'not null' => TRUE,
|
7973
|
'size' => 'big',
|
7974
|
),
|
7975
|
),
|
7976
|
'primary key' => array(
|
7977
|
'name',
|
7978
|
),
|
7979
|
'module' => 'system',
|
7980
|
'name' => 'variable',
|
7981
|
));
|
7982
|
db_insert('variable')->fields(array(
|
7983
|
'name',
|
7984
|
'value',
|
7985
|
))
|
7986
|
->values(array(
|
7987
|
'name' => 'clean_url',
|
7988
|
'value' => 's:1:"1";',
|
7989
|
))
|
7990
|
->values(array(
|
7991
|
'name' => 'comment_page',
|
7992
|
'value' => 's:21:"COMMENT_NODE_DISABLED";',
|
7993
|
))
|
7994
|
->values(array(
|
7995
|
'name' => 'css_js_query_string',
|
7996
|
'value' => 's:20:"D0000000000000000000";',
|
7997
|
))
|
7998
|
->values(array(
|
7999
|
'name' => 'date_default_timezone',
|
8000
|
'value' => 's:1:"0";',
|
8001
|
))
|
8002
|
->values(array(
|
8003
|
'name' => 'drupal_private_key',
|
8004
|
'value' => 's:64:"3848c2187413fa0ce132f8e222fdb6893b386ed133e8cf602bd3e40dc9dc12db";',
|
8005
|
))
|
8006
|
->values(array(
|
8007
|
'name' => 'filter_html_1',
|
8008
|
'value' => 'i:1;',
|
8009
|
))
|
8010
|
->values(array(
|
8011
|
'name' => 'install_profile',
|
8012
|
'value' => 's:7:"default";',
|
8013
|
))
|
8014
|
->values(array(
|
8015
|
'name' => 'install_task',
|
8016
|
'value' => 's:4:"done";',
|
8017
|
))
|
8018
|
->values(array(
|
8019
|
'name' => 'install_time',
|
8020
|
'value' => 'i:1277671612;',
|
8021
|
))
|
8022
|
->values(array(
|
8023
|
'name' => 'menu_expanded',
|
8024
|
'value' => 'a:0:{}',
|
8025
|
))
|
8026
|
->values(array(
|
8027
|
'name' => 'menu_masks',
|
8028
|
'value' => 'a:13:{i:0;i:31;i:1;i:30;i:2;i:29;i:3;i:24;i:4;i:21;i:5;i:15;i:6;i:14;i:7;i:11;i:8;i:7;i:9;i:5;i:10;i:3;i:11;i:2;i:12;i:1;}',
|
8029
|
))
|
8030
|
->values(array(
|
8031
|
'name' => 'node_options_forum',
|
8032
|
'value' => 'a:1:{i:0;s:6:"status";}',
|
8033
|
))
|
8034
|
->values(array(
|
8035
|
'name' => 'node_options_page',
|
8036
|
'value' => 'a:1:{i:0;s:6:"status";}',
|
8037
|
))
|
8038
|
->values(array(
|
8039
|
'name' => 'site_mail',
|
8040
|
'value' => 's:17:"admin@example.com";',
|
8041
|
))
|
8042
|
->values(array(
|
8043
|
'name' => 'site_name',
|
8044
|
'value' => 's:8:"Drupal 6";',
|
8045
|
))
|
8046
|
->values(array(
|
8047
|
'name' => 'theme_default',
|
8048
|
'value' => 's:7:"garland";',
|
8049
|
))
|
8050
|
->values(array(
|
8051
|
'name' => 'theme_settings',
|
8052
|
'value' => 'a:1:{s:21:"toggle_node_info_page";b:0;}',
|
8053
|
))
|
8054
|
->values(array(
|
8055
|
'name' => 'user_email_verification',
|
8056
|
'value' => 'b:1;',
|
8057
|
))
|
8058
|
->execute();
|
8059
|
|
8060
|
db_create_table('watchdog', array(
|
8061
|
'fields' => array(
|
8062
|
'wid' => array(
|
8063
|
'type' => 'serial',
|
8064
|
'not null' => TRUE,
|
8065
|
),
|
8066
|
'uid' => array(
|
8067
|
'type' => 'int',
|
8068
|
'not null' => TRUE,
|
8069
|
'default' => 0,
|
8070
|
),
|
8071
|
'type' => array(
|
8072
|
'type' => 'varchar',
|
8073
|
'length' => 16,
|
8074
|
'not null' => TRUE,
|
8075
|
'default' => '',
|
8076
|
),
|
8077
|
'message' => array(
|
8078
|
'type' => 'text',
|
8079
|
'not null' => TRUE,
|
8080
|
'size' => 'big',
|
8081
|
),
|
8082
|
'variables' => array(
|
8083
|
'type' => 'text',
|
8084
|
'not null' => TRUE,
|
8085
|
'size' => 'big',
|
8086
|
),
|
8087
|
'severity' => array(
|
8088
|
'type' => 'int',
|
8089
|
'unsigned' => TRUE,
|
8090
|
'not null' => TRUE,
|
8091
|
'default' => 0,
|
8092
|
'size' => 'tiny',
|
8093
|
),
|
8094
|
'link' => array(
|
8095
|
'type' => 'varchar',
|
8096
|
'length' => 255,
|
8097
|
'not null' => TRUE,
|
8098
|
'default' => '',
|
8099
|
),
|
8100
|
'location' => array(
|
8101
|
'type' => 'text',
|
8102
|
'not null' => TRUE,
|
8103
|
),
|
8104
|
'referer' => array(
|
8105
|
'type' => 'text',
|
8106
|
'not null' => FALSE,
|
8107
|
),
|
8108
|
'hostname' => array(
|
8109
|
'type' => 'varchar',
|
8110
|
'length' => 128,
|
8111
|
'not null' => TRUE,
|
8112
|
'default' => '',
|
8113
|
),
|
8114
|
'timestamp' => array(
|
8115
|
'type' => 'int',
|
8116
|
'not null' => TRUE,
|
8117
|
'default' => 0,
|
8118
|
),
|
8119
|
),
|
8120
|
'primary key' => array(
|
8121
|
'wid',
|
8122
|
),
|
8123
|
'indexes' => array(
|
8124
|
'type' => array(
|
8125
|
'type',
|
8126
|
),
|
8127
|
),
|
8128
|
'module' => 'dblog',
|
8129
|
'name' => 'watchdog',
|
8130
|
));
|
8131
|
|