-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1
1057 lines (1048 loc) · 125 KB
/
1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/usr/local/yiixl/lib/core/behaviors/CXLActionControlBehavior.php:28: warning: documented function `array $_userActionMap An array of actions permitted by any user' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:43: warning: documented function `array' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:60: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLOAuthBehavior.php:23: warning: documented function `read OAuth $oauthObject The curent OAuth object' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLOAuthBehavior.php:24: warning: documented function `read string $oauthToken The current token' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLOAuthBehavior.php:43: warning: documented function `array' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLOAuthBehavior.php:49: warning: documented function `OAuth' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLOAuthBehavior.php:55: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLOAuthBehavior.php:60: warning: documented function `boolean' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLOAuthBehavior.php:65: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLOAuthBehavior.php:70: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLOAuthBehavior.php:75: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLSoftDeleteBehavior.php:21: warning: documented function `string $softDeleteColumnName The attribute which indicates a soft delete' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLSoftDeleteBehavior.php:22: warning: documented function `array $softDeleteValue Two item array containing the' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLSoftDeleteBehavior.php:33: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLSoftDeleteBehavior.php:38: warning: documented function `array' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLSoftDeleteBehavior.php:60: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLSoftDeleteBehavior.php:78: warning: documented function `array $array The true false values for soft deletion' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLTimestampBehavior.php:22: warning: documented function `string $createdColumnName The name of the column that holds your create date' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLTimestampBehavior.php:23: warning: documented function `string $createdByColumnName The name of the column that holds your creating user' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLTimestampBehavior.php:24: warning: documented function `string $lastModifiedColumnName The name of the column that holds your last modified date' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLTimestampBehavior.php:25: warning: documented function `string $lastModifiedByColumnName The name of the column that holds your last modifying user' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLTimestampBehavior.php:26: warning: documented function `string $dateTimeFunctionName The name of the function to use to set dates Defaults to date' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLTimestampBehavior.php:35: warning: documented function `string $_createdColumnName The optional name of the created column in the table' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLTimestampBehavior.php:42: warning: documented function `string $_createdByColumnName The optional name of the created by user id column in the table' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLTimestampBehavior.php:49: warning: documented function `string $_lastModifiedColumnName The optional name of the last modified column in the table' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLTimestampBehavior.php:56: warning: documented function `string $_lastModifiedByColumnName The optional name of the modified by user id column in the table' was not declared or defined.
/usr/local/yiixl/lib/core/behaviors/CXLTimestampBehavior.php:63: warning: documented function `string $_dateTimeFunction The date time function with which to stamp records' was not declared or defined.
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:40: warning: documented function `boolean' was not declared or defined.
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:45: warning: documented function `integer' was not declared or defined.
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:50: warning: documented function `integer' was not declared or defined.
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:55: warning: documented function `array' was not declared or defined.
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:62: warning: documented function `boolean' was not declared or defined.
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:67: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/config/CXLConfigFile.php:47: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/config/CXLConfigFile.php:53: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/config/CXLConfigFile.php:59: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:45: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:49: warning: no matching class member found for
string an alternate second secret API key
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:53: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:57: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:61: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:65: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:69: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:73: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:77: warning: documented function `integer' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:81: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:85: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:89: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:93: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:97: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:101: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:105: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:109: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:113: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:117: warning: documented function `string The base url for this component' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:121: warning: documented function `boolean If true options will be validated' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:125: warning: no matching class member found for
array $_validOptions The options considered valid
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:129: warning: documented function `boolean If true callbacks will be validated' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:133: warning: no matching class member found for
array $_validCallbacks The callbacks considered valid
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:137: warning: documented function `array $_callbacks The list of client side callbacks' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:141: warning: documented function `string $_externalLibraryUrl The url of the external library' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLComponent.php:26: warning: documented function `integer $debugLevel A user defined debugging level' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLComponent.php:27: warning: documented function `read array $options The options passed to this object during construction' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLComponent.php:45: warning: documented function `integer $_debugLevel User defined debug flag false OFF anything else is up to you' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLComponent.php:50: warning: documented function `array $_options Our configuration options' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLComponent.php:55: warning: documented function `array $_behaviorMethods Imported attached behavior methods' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:42: warning: no matching class member found for
string $_apiKey Your API key
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:46: warning: no matching class member found for
string an alternate second API key
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:50: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:54: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:58: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:62: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:66: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:70: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:74: warning: documented function `integer' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:78: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:82: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:86: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:90: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:94: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:98: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:102: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:106: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:110: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:114: warning: documented function `string The base url for this component' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:118: warning: documented function `boolean If true options will be validated' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:122: warning: no matching class member found for
array $_validOptions The options considered valid
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:126: warning: documented function `boolean If true callbacks will be validated' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:130: warning: no matching class member found for
array $_validCallbacks The callbacks considered valid
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:134: warning: documented function `array $_callbacks The list of client side callbacks' was not declared or defined.
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:138: warning: documented function `string $_externalLibraryUrl The url of the external library' was not declared or defined.
/usr/local/yiixl/lib/core/components/logging/CXLLiveLogRoute.php:36: warning: documented function `integer $_debugLevel User defined debug flag false OFF anything else is up to you' was not declared or defined.
/usr/local/yiixl/lib/core/components/logging/CXLLiveLogRoute.php:40: warning: documented function `array $_options Our configuration options' was not declared or defined.
/usr/local/yiixl/lib/core/components/logging/CXLLiveLogRoute.php:45: warning: documented function `array' was not declared or defined.
/usr/local/yiixl/lib/core/components/logging/CXLLiveLogRoute.php:50: warning: documented function `integer' was not declared or defined.
/usr/local/yiixl/lib/core/controllers/CXLController.php:61: warning: documented function `array' was not declared or defined.
/usr/local/yiixl/lib/core/controllers/CXLController.php:69: warning: documented function `array' was not declared or defined.
/usr/local/yiixl/lib/core/controllers/CXLController.php:75: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/controllers/CXLController.php:80: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/controllers/CXLController.php:84: warning: documented function `CActiveRecord The currently loaded data model instance' was not declared or defined.
/usr/local/yiixl/lib/core/controllers/CXLController.php:90: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/controllers/CXLController.php:97: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/controllers/CXLController.php:102: warning: documented function `boolean' was not declared or defined.
/usr/local/yiixl/lib/core/controllers/CXLController.php:108: warning: documented function `boolean' was not declared or defined.
/usr/local/yiixl/lib/core/controllers/CXLController.php:114: warning: documented function `array' was not declared or defined.
/usr/local/yiixl/lib/core/controllers/CXLController.php:120: warning: documented function `array' was not declared or defined.
/usr/local/yiixl/lib/core/controllers/CXLController.php:125: warning: documented function `array' was not declared or defined.
/usr/local/yiixl/lib/core/controllers/CXLController.php:130: warning: documented function `array' was not declared or defined.
/usr/local/yiixl/lib/core/controllers/CXLController.php:136: warning: documented function `array' was not declared or defined.
/usr/local/yiixl/lib/core/controllers/CXLController.php:142: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/controllers/CXLController.php:966: warning: documented function `integer $id The primary key to look up' was not declared or defined.
/usr/local/yiixl/lib/core/helpers/CXLHash.php:64: warning: documented function `array' was not declared or defined.
/usr/local/yiixl/lib/core/helpers/CXLLog.php:39: warning: documented function `string $_caller The class::method or function that made the call' was not declared or defined.
/usr/local/yiixl/lib/core/helpers/CXLLog.php:44: warning: documented function `integer $_callerLineNumber The line number called from' was not declared or defined.
/usr/local/yiixl/lib/core/helpers/CXLLog.php:49: warning: documented function `array $_validLogLevels Our valid log levels based on interface definition' was not declared or defined.
/usr/local/yiixl/lib/core/process/CXLBaseJobProcess.php:31: warning: documented function `integer $resultCode The result code of the processing' was not declared or defined.
/usr/local/yiixl/lib/core/process/CXLBaseJobProcess.php:32: warning: documented function `string $status The status of the processing' was not declared or defined.
/usr/local/yiixl/lib/core/process/CXLBaseJobProcess.php:33: warning: documented function `mixed $jobData The job data' was not declared or defined.
/usr/local/yiixl/lib/core/process/CXLBaseJobProcess.php:34: warning: documented function `read string $processingTime The amount of time processing took formated in seconds' was not declared or defined.
/usr/local/yiixl/lib/core/process/CXLBaseJobProcess.php:55: warning: documented function `float' was not declared or defined.
/usr/local/yiixl/lib/core/process/CXLBaseJobProcess.php:61: warning: documented function `float' was not declared or defined.
/usr/local/yiixl/lib/core/process/CXLBaseJobProcess.php:67: warning: documented function `integer' was not declared or defined.
/usr/local/yiixl/lib/core/process/CXLBaseJobProcess.php:75: warning: documented function `string' was not declared or defined.
/usr/local/yiixl/lib/core/process/CXLBaseJobProcess.php:83: warning: documented function `mixed' was not declared or defined.
/usr/local/yiixl/lib/core/process/CXLBaseJobProcess.php:91: warning: documented function `mixed' was not declared or defined.
/usr/local/yiixl/lib/core/ui/CXLWidget.php:40: warning: documented function `integer $_debugLevel User defined debug flag false OFF anything else is up to you' was not declared or defined.
/usr/local/yiixl/lib/core/ui/CXLWidget.php:44: warning: documented function `array $_options Our configuration options' was not declared or defined.
/usr/local/yiixl/lib/core/ui/CXLWidget.php:48: warning: documented function `array $_behaviorMethods Imported attached behavior methods' was not declared or defined.
/usr/local/yiixl/lib/core/ui/CXLWidget.php:52: warning: documented function `array $_cssQueue Our CSS files' was not declared or defined.
/usr/local/yiixl/lib/core/ui/CXLWidget.php:56: warning: documented function `array $_scriptQueue Our JS files' was not declared or defined.
todo:10: warning: unable to resolve link to `eval' for \link command
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:167: warning: argument 'string' of command @param is not found in the argument list of CXLApiComponent::addRequestMapping($label,$parameterName=null,$required=false,$options=array(),$apiName=null,$subApiName=null)
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:167: warning: argument 'string' of command @param is not found in the argument list of CXLApiComponent::addRequestMapping($label,$parameterName=null,$required=false,$options=array(),$apiName=null,$subApiName=null)
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:167: warning: argument 'bool' of command @param is not found in the argument list of CXLApiComponent::addRequestMapping($label,$parameterName=null,$required=false,$options=array(),$apiName=null,$subApiName=null)
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:167: warning: argument 'array' of command @param is not found in the argument list of CXLApiComponent::addRequestMapping($label,$parameterName=null,$required=false,$options=array(),$apiName=null,$subApiName=null)
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:167: warning: argument 'string' of command @param is not found in the argument list of CXLApiComponent::addRequestMapping($label,$parameterName=null,$required=false,$options=array(),$apiName=null,$subApiName=null)
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:167: warning: argument 'string' of command @param is not found in the argument list of CXLApiComponent::addRequestMapping($label,$parameterName=null,$required=false,$options=array(),$apiName=null,$subApiName=null)
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:167: warning: The following parameters of CXLApiComponent::addRequestMapping($label,$parameterName=null,$required=false,$options=array(),$apiName=null,$subApiName=null) are not documented:
parameter 'label'
parameter 'parameterName'
parameter 'required'
parameter 'options'
parameter 'apiName'
parameter 'subApiName'
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:404: warning: argument 'CXLApiEvent' of command @param is not found in the argument list of CXLApiComponent::afterApiCall(CXLApiEvent $event)
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:404: warning: The following parameters of CXLApiComponent::afterApiCall(CXLApiEvent $event) are not documented:
parameter 'event'
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:384: warning: argument 'CXLApiEvent' of command @param is not found in the argument list of CXLApiComponent::beforeApiCall(CXLApiEvent $event)
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:384: warning: The following parameters of CXLApiComponent::beforeApiCall(CXLApiEvent $event) are not documented:
parameter 'event'
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:220: warning: argument 'string' of command @param is not found in the argument list of CXLApiComponent::makeRequest($subType='/',$requestData=null,$requestMethod='GET')
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:220: warning: argument 'array' of command @param is not found in the argument list of CXLApiComponent::makeRequest($subType='/',$requestData=null,$requestMethod='GET')
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:220: warning: The following parameters of CXLApiComponent::makeRequest($subType='/',$requestData=null,$requestMethod='GET') are not documented:
parameter 'subType'
parameter 'requestData'
parameter 'requestMethod'
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:394: warning: argument 'CXLApiEvent' of command @param is not found in the argument list of CXLApiComponent::onAfterApiCall(CXLApiEvent $event)
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:394: warning: The following parameters of CXLApiComponent::onAfterApiCall(CXLApiEvent $event) are not documented:
parameter 'event'
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:374: warning: argument 'CXLApiEvent' of command @param is not found in the argument list of CXLApiComponent::onBeforeApiCall(CXLApiEvent $event)
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:374: warning: The following parameters of CXLApiComponent::onBeforeApiCall(CXLApiEvent $event) are not documented:
parameter 'event'
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:414: warning: argument 'CXLApiEvent' of command @param is not found in the argument list of CXLApiComponent::onRequestComplete(CXLApiEvent $event)
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:414: warning: The following parameters of CXLApiComponent::onRequestComplete(CXLApiEvent $event) are not documented:
parameter 'event'
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:424: warning: argument 'CXLApiEvent' of command @param is not found in the argument list of CXLApiComponent::requestComplete(CXLApiEvent $event)
/usr/local/yiixl/lib/core/components/CXLApiComponent.php:424: warning: The following parameters of CXLApiComponent::requestComplete(CXLApiEvent $event) are not documented:
parameter 'event'
/usr/local/yiixl/lib/core/process/CXLBaseJobProcess.php:100: warning: argument 'mixed' of command @param is not found in the argument list of CXLBaseJobProcess::__construct($jobData=null,$autoRun=false)
/usr/local/yiixl/lib/core/process/CXLBaseJobProcess.php:100: warning: argument 'boolean' of command @param is not found in the argument list of CXLBaseJobProcess::__construct($jobData=null,$autoRun=false)
/usr/local/yiixl/lib/core/process/CXLBaseJobProcess.php:100: warning: The following parameters of CXLBaseJobProcess::__construct($jobData=null,$autoRun=false) are not documented:
parameter 'jobData'
parameter 'autoRun'
/usr/local/yiixl/lib/core/components/CXLComponent.php:184: warning: argument 'string' of command @param is not found in the argument list of CXLComponent::__call($name,$parameters)
/usr/local/yiixl/lib/core/components/CXLComponent.php:184: warning: argument 'array' of command @param is not found in the argument list of CXLComponent::__call($name,$parameters)
/usr/local/yiixl/lib/core/components/CXLComponent.php:184: warning: The following parameters of CXLComponent::__call($name,$parameters) are not documented:
parameter 'name'
parameter 'parameters'
/usr/local/yiixl/lib/core/components/CXLComponent.php:209: warning: argument 'string' of command @param is not found in the argument list of CXLComponent::_getCallerObject($instanceFilter=null)
/usr/local/yiixl/lib/core/components/CXLComponent.php:209: warning: The following parameters of CXLComponent::_getCallerObject($instanceFilter=null) are not documented:
parameter 'instanceFilter'
/usr/local/yiixl/lib/core/components/CXLComponent.php:138: warning: argument 'string' of command @param is not found in the argument list of CXLComponent::attachBehavior($name,$behavior)
/usr/local/yiixl/lib/core/components/CXLComponent.php:138: warning: argument 'mixed' of command @param is not found in the argument list of CXLComponent::attachBehavior($name,$behavior)
/usr/local/yiixl/lib/core/components/CXLComponent.php:143: warning: unable to resolve link to `YiiBase::createComponent' for \link command
/usr/local/yiixl/lib/core/components/CXLComponent.php:138: warning: The following parameters of CXLComponent::attachBehavior($name,$behavior) are not documented:
parameter 'name'
parameter 'behavior'
/usr/local/yiixl/lib/core/components/CXLComponent.php:169: warning: unable to resolve link to `IBehavior::detach' for \link command
/usr/local/yiixl/lib/core/components/CXLComponent.php:168: warning: argument 'string' of command @param is not found in the argument list of CXLComponent::detachBehavior($name)
/usr/local/yiixl/lib/core/components/CXLComponent.php:168: warning: The following parameters of CXLComponent::detachBehavior($name) are not documented:
parameter 'name'
/usr/local/yiixl/lib/core/components/CXLComponent.php:99: warning: argument 'array' of command @param is not found in the argument list of CXLComponent::loadOptions($options=array())
/usr/local/yiixl/lib/core/components/CXLComponent.php:99: warning: The following parameters of CXLComponent::loadOptions($options=array()) are not documented:
parameter 'options'
/usr/local/yiixl/lib/core/components/CXLComponent.php:72: warning: argument 'integer' of command @param is not found in the argument list of CXLComponent::setDebugLevel($value=false)
/usr/local/yiixl/lib/core/components/CXLComponent.php:72: warning: The following parameters of CXLComponent::setDebugLevel($value=false) are not documented:
parameter 'value'
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:75: warning: argument 'array' of command @param is not found in the argument list of CXLConfig::__construct(array $options,$readOnly=true)
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:75: warning: argument 'boolean' of command @param is not found in the argument list of CXLConfig::__construct(array $options,$readOnly=true)
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:75: warning: The following parameters of CXLConfig::__construct(array $options,$readOnly=true) are not documented:
parameter 'options'
parameter 'readOnly'
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:276: warning: argument 'string' of command @param is not found in the argument list of CXLConfig::__get($key)
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:276: warning: The following parameters of CXLConfig::__get($key) are not documented:
parameter 'key'
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:344: warning: argument 'string' of command @param is not found in the argument list of CXLConfig::__isset($key)
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:344: warning: The following parameters of CXLConfig::__isset($key) are not documented:
parameter 'key'
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:289: warning: argument 'string' of command @param is not found in the argument list of CXLConfig::__set($key,$value)
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:289: warning: argument 'mixed' of command @param is not found in the argument list of CXLConfig::__set($key,$value)
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:289: warning: The following parameters of CXLConfig::__set($key,$value) are not documented:
parameter 'key'
parameter 'value'
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:356: warning: argument 'string' of command @param is not found in the argument list of CXLConfig::__unset($key)
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:356: warning: The following parameters of CXLConfig::__unset($key) are not documented:
parameter 'key'
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:97: warning: argument 'string' of command @param is not found in the argument list of CXLConfig::getOption($key,$defaultValue=null)
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:97: warning: argument 'mixed' of command @param is not found in the argument list of CXLConfig::getOption($key,$defaultValue=null)
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:97: warning: The following parameters of CXLConfig::getOption($key,$defaultValue=null) are not documented:
parameter 'key'
parameter 'defaultValue'
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:181: warning: unable to resolve link to `http://php.net/manual/en/function.json-decode.php' for \link command
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:182: warning: Illegal command param as part of a \link
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:182: warning: Unexpected xml/html command p found
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:180: warning: argument 'bool' of command @param is not found in the argument list of CXLConfig::jsonDecode($json,$assoc=null,$depth=null)
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:180: warning: argument 'int' of command @param is not found in the argument list of CXLConfig::jsonDecode($json,$assoc=null,$depth=null)
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:195: warning: Unsupported symbol &null; found
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:195: warning: Unsupported symbol &null; found
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:180: warning: The following parameters of CXLConfig::jsonDecode($json,$assoc=null,$depth=null) are not documented:
parameter 'json'
parameter 'assoc'
parameter 'depth'
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:157: warning: unable to resolve link to `http://php.net/manual/en/function.json-encode.php' for \link command
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:158: warning: Illegal command param as part of a \link
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:158: warning: Unexpected xml/html command p found
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:156: warning: argument 'int' of command @param is not found in the argument list of CXLConfig::jsonEncode($jsonOptions=null)
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:156: warning: The following parameters of CXLConfig::jsonEncode($jsonOptions=null) are not documented:
parameter 'jsonOptions'
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:127: warning: argument 'CXLConfig' of command @param is not found in the argument list of CXLConfig::merge(CXLConfig $mergeConfig)
/usr/local/yiixl/lib/core/components/config/CXLConfig.php:127: warning: The following parameters of CXLConfig::merge(CXLConfig $mergeConfig) are not documented:
parameter 'mergeConfig'
/usr/local/yiixl/lib/core/components/config/CXLConfigFile.php:67: warning: argument 'string' of command @param is not found in the argument list of CXLConfigFile::load($path=null)
/usr/local/yiixl/lib/core/components/config/CXLConfigFile.php:67: warning: The following parameters of CXLConfigFile::load($path=null) are not documented:
parameter 'path'
/usr/local/yiixl/lib/core/components/config/CXLConfigFile.php:76: warning: argument 'string' of command @param is not found in the argument list of CXLConfigFile::save($path=null)
/usr/local/yiixl/lib/core/components/config/CXLConfigFile.php:76: warning: The following parameters of CXLConfigFile::save($path=null) are not documented:
parameter 'path'
/usr/local/yiixl/lib/core/controllers/CXLController.php:1052: warning: argument 'array' of command @param is not found in the argument list of CXLController::_ajaxReturn($payload=false,$encode=false,$encodeOptions=ENT_NOQUOTES)
/usr/local/yiixl/lib/core/controllers/CXLController.php:1052: warning: argument 'boolean' of command @param is not found in the argument list of CXLController::_ajaxReturn($payload=false,$encode=false,$encodeOptions=ENT_NOQUOTES)
/usr/local/yiixl/lib/core/controllers/CXLController.php:1052: warning: argument 'integer' of command @param is not found in the argument list of CXLController::_ajaxReturn($payload=false,$encode=false,$encodeOptions=ENT_NOQUOTES)
/usr/local/yiixl/lib/core/controllers/CXLController.php:1052: warning: The following parameters of CXLController::_ajaxReturn($payload=false,$encode=false,$encodeOptions=ENT_NOQUOTES) are not documented:
parameter 'payload'
parameter 'encode'
parameter 'encodeOptions'
/usr/local/yiixl/lib/core/controllers/CXLController.php:191: warning: Found unknown command `\w'
/usr/local/yiixl/lib/core/controllers/CXLController.php:1029: warning: argument 'string' of command @param is not found in the argument list of CXLController::addViewData($variableName,$variableData=null)
/usr/local/yiixl/lib/core/controllers/CXLController.php:1029: warning: argument 'mixed' of command @param is not found in the argument list of CXLController::addViewData($variableName,$variableData=null)
/usr/local/yiixl/lib/core/controllers/CXLController.php:1029: warning: The following parameters of CXLController::addViewData($variableName,$variableData=null) are not documented:
parameter 'variableName'
parameter 'variableData'
/usr/local/yiixl/lib/core/controllers/CXLController.php:325: warning: argument 'CAction' of command @param is not found in the argument list of CXLController::beforeAction($action)
/usr/local/yiixl/lib/core/controllers/CXLController.php:325: warning: The following parameters of CXLController::beforeAction($action) are not documented:
parameter 'action'
/usr/local/yiixl/lib/core/controllers/CXLController.php:222: warning: argument 'string' of command @param is not found in the argument list of CXLController::genericAction($actionId,$model=null,$extraParameters=array(),$modelVariableName='model',$flashMessageKey=null,$flashMessageValue=null,$flashMessageDefaultValue=null)
/usr/local/yiixl/lib/core/controllers/CXLController.php:222: warning: argument 'CModel' of command @param is not found in the argument list of CXLController::genericAction($actionId,$model=null,$extraParameters=array(),$modelVariableName='model',$flashMessageKey=null,$flashMessageValue=null,$flashMessageDefaultValue=null)
/usr/local/yiixl/lib/core/controllers/CXLController.php:222: warning: argument 'array' of command @param is not found in the argument list of CXLController::genericAction($actionId,$model=null,$extraParameters=array(),$modelVariableName='model',$flashMessageKey=null,$flashMessageValue=null,$flashMessageDefaultValue=null)
/usr/local/yiixl/lib/core/controllers/CXLController.php:222: warning: argument 'string' of command @param is not found in the argument list of CXLController::genericAction($actionId,$model=null,$extraParameters=array(),$modelVariableName='model',$flashMessageKey=null,$flashMessageValue=null,$flashMessageDefaultValue=null)
/usr/local/yiixl/lib/core/controllers/CXLController.php:222: warning: The following parameters of CXLController::genericAction($actionId,$model=null,$extraParameters=array(),$modelVariableName='model',$flashMessageKey=null,$flashMessageValue=null,$flashMessageDefaultValue=null) are not documented:
parameter 'actionId'
parameter 'model'
parameter 'extraParameters'
parameter 'modelVariableName'
parameter 'flashMessageKey'
parameter 'flashMessageValue'
parameter 'flashMessageDefaultValue'
/usr/local/yiixl/lib/core/controllers/CXLController.php:948: warning: argument 'string' of command @param is not found in the argument list of CXLController::genericModelLoad($sMethod,&$oCrit=null,$arScope=array(),$arOptions=array())
/usr/local/yiixl/lib/core/controllers/CXLController.php:948: warning: argument 'CDbCriteria' of command @param is not found in the argument list of CXLController::genericModelLoad($sMethod,&$oCrit=null,$arScope=array(),$arOptions=array())
/usr/local/yiixl/lib/core/controllers/CXLController.php:948: warning: argument 'array' of command @param is not found in the argument list of CXLController::genericModelLoad($sMethod,&$oCrit=null,$arScope=array(),$arOptions=array())
/usr/local/yiixl/lib/core/controllers/CXLController.php:948: warning: argument 'array' of command @param is not found in the argument list of CXLController::genericModelLoad($sMethod,&$oCrit=null,$arScope=array(),$arOptions=array())
/usr/local/yiixl/lib/core/controllers/CXLController.php:948: warning: The following parameters of CXLController::genericModelLoad($sMethod,&$oCrit=null,$arScope=array(),$arOptions=array()) are not documented:
parameter 'sMethod'
parameter 'oCrit'
parameter 'arScope'
parameter 'arOptions'
/usr/local/yiixl/lib/core/controllers/CXLController.php:997: warning: unable to resolve link to `eval' for \link command
/usr/local/yiixl/lib/core/controllers/CXLController.php:997: warning: argument 'array' of command @param is not found in the argument list of CXLController::getModelLoadString($arScope=array(),$arOptions=array())
/usr/local/yiixl/lib/core/controllers/CXLController.php:997: warning: The following parameters of CXLController::getModelLoadString($arScope=array(),$arOptions=array()) are not documented:
parameter 'arScope'
parameter 'arOptions'
/usr/local/yiixl/lib/core/controllers/CXLController.php:974: warning: argument 'CDbCriteria' of command @param is not found in the argument list of CXLController::loadAll(&$oCrit=null)
/usr/local/yiixl/lib/core/controllers/CXLController.php:977: warning: unable to resolve link to `eval' for \link command
/usr/local/yiixl/lib/core/controllers/CXLController.php:974: warning: The following parameters of CXLController::loadAll(&$oCrit=null) are not documented:
parameter 'oCrit'
/usr/local/yiixl/lib/core/controllers/CXLController.php:985: warning: argument 'CDbCriteria' of command @param is not found in the argument list of CXLController::loadCount(&$oCrit=null)
/usr/local/yiixl/lib/core/controllers/CXLController.php:985: warning: The following parameters of CXLController::loadCount(&$oCrit=null) are not documented:
parameter 'oCrit'
/usr/local/yiixl/lib/core/controllers/CXLController.php:246: warning: argument 'integer' of command @param is not found in the argument list of CXLController::loadCurrentModel($id=null)
/usr/local/yiixl/lib/core/controllers/CXLController.php:246: warning: The following parameters of CXLController::loadCurrentModel($id=null) are not documented:
parameter 'id'
/usr/local/yiixl/lib/core/controllers/CXLController.php:920: warning: argument 'boolean' of command @param is not found in the argument list of CXLController::loadPaged($bSort=false,$oCriteria=null)
/usr/local/yiixl/lib/core/controllers/CXLController.php:920: warning: The following parameters of CXLController::loadPaged($bSort=false,$oCriteria=null) are not documented:
parameter 'bSort'
parameter 'oCriteria'
/usr/local/yiixl/lib/core/controllers/CXLController.php:272: warning: argument 'string' of command @param is not found in the argument list of CXLController::missingAction($actionId=null)
/usr/local/yiixl/lib/core/controllers/CXLController.php:272: warning: The following parameters of CXLController::missingAction($actionId=null) are not documented:
parameter 'actionId'
/usr/local/yiixl/lib/core/controllers/CXLController.php:341: warning: unable to resolve link to `renderPartial' for \link command
/usr/local/yiixl/lib/core/controllers/CXLController.php:344: warning: unable to resolve link to `processOutput' for \link command
/usr/local/yiixl/lib/core/controllers/CXLController.php:348: warning: unable to resolve link to `layout' for \link command
/usr/local/yiixl/lib/core/controllers/CXLController.php:339: warning: argument 'string' of command @param is not found in the argument list of CXLController::newRender($viewName,$viewData=null,$returnString=false)
/usr/local/yiixl/lib/core/controllers/CXLController.php:350: warning: unable to resolve link to `getViewFile' for \link command
/usr/local/yiixl/lib/core/controllers/CXLController.php:339: warning: argument 'array' of command @param is not found in the argument list of CXLController::newRender($viewName,$viewData=null,$returnString=false)
/usr/local/yiixl/lib/core/controllers/CXLController.php:339: warning: argument 'boolean' of command @param is not found in the argument list of CXLController::newRender($viewName,$viewData=null,$returnString=false)
/usr/local/yiixl/lib/core/controllers/CXLController.php:339: warning: The following parameters of CXLController::newRender($viewName,$viewData=null,$returnString=false) are not documented:
parameter 'viewName'
parameter 'viewData'
parameter 'returnString'
/usr/local/yiixl/lib/core/controllers/CXLController.php:837: warning: unable to resolve link to `CXLController::commandMap' for \link command
/usr/local/yiixl/lib/core/controllers/CXLController.php:1010: warning: argument 'CAction' of command @param is not found in the argument list of CXLController::pushAction($action)
/usr/local/yiixl/lib/core/controllers/CXLController.php:1010: warning: The following parameters of CXLController::pushAction($action) are not documented:
parameter 'action'
/usr/local/yiixl/lib/core/controllers/CXLController.php:382: warning: unable to resolve link to `getViewFile' for \link command
/usr/local/yiixl/lib/core/controllers/CXLController.php:386: warning: unable to resolve link to `render()' for \link command
/usr/local/yiixl/lib/core/controllers/CXLController.php:380: warning: argument 'string' of command @param is not found in the argument list of CXLController::renderPartial($view,$data=null,$return=false,$processOutput=false)
/usr/local/yiixl/lib/core/controllers/CXLController.php:392: warning: unable to resolve link to `getViewFile' for \link command
/usr/local/yiixl/lib/core/controllers/CXLController.php:380: warning: argument 'array' of command @param is not found in the argument list of CXLController::renderPartial($view,$data=null,$return=false,$processOutput=false)
/usr/local/yiixl/lib/core/controllers/CXLController.php:380: warning: argument 'boolean' of command @param is not found in the argument list of CXLController::renderPartial($view,$data=null,$return=false,$processOutput=false)
/usr/local/yiixl/lib/core/controllers/CXLController.php:380: warning: argument 'boolean' of command @param is not found in the argument list of CXLController::renderPartial($view,$data=null,$return=false,$processOutput=false)
/usr/local/yiixl/lib/core/controllers/CXLController.php:396: warning: unable to resolve link to `processOutput' for \link command
/usr/local/yiixl/lib/core/controllers/CXLController.php:380: warning: The following parameters of CXLController::renderPartial($view,$data=null,$return=false,$processOutput=false) are not documented:
parameter 'view'
parameter 'data'
parameter 'return'
parameter 'processOutput'
/usr/local/yiixl/lib/core/controllers/CXLController.php:867: warning: argument 'CModel' of command @param is not found in the argument list of CXLController::saveCurrentModel(&$model,$arData=array(),$sRedirectAction='show',$bAttributesSet=false,$sModelName=null,$sSuccessMessage=null,$bNoCommit=false,$bSafeOnly=false)
/usr/local/yiixl/lib/core/controllers/CXLController.php:867: warning: argument 'array' of command @param is not found in the argument list of CXLController::saveCurrentModel(&$model,$arData=array(),$sRedirectAction='show',$bAttributesSet=false,$sModelName=null,$sSuccessMessage=null,$bNoCommit=false,$bSafeOnly=false)
/usr/local/yiixl/lib/core/controllers/CXLController.php:867: warning: argument 'string' of command @param is not found in the argument list of CXLController::saveCurrentModel(&$model,$arData=array(),$sRedirectAction='show',$bAttributesSet=false,$sModelName=null,$sSuccessMessage=null,$bNoCommit=false,$bSafeOnly=false)
/usr/local/yiixl/lib/core/controllers/CXLController.php:867: warning: argument 'boolean' of command @param is not found in the argument list of CXLController::saveCurrentModel(&$model,$arData=array(),$sRedirectAction='show',$bAttributesSet=false,$sModelName=null,$sSuccessMessage=null,$bNoCommit=false,$bSafeOnly=false)
/usr/local/yiixl/lib/core/controllers/CXLController.php:867: warning: argument 'string' of command @param is not found in the argument list of CXLController::saveCurrentModel(&$model,$arData=array(),$sRedirectAction='show',$bAttributesSet=false,$sModelName=null,$sSuccessMessage=null,$bNoCommit=false,$bSafeOnly=false)
/usr/local/yiixl/lib/core/controllers/CXLController.php:867: warning: argument 'string' of command @param is not found in the argument list of CXLController::saveCurrentModel(&$model,$arData=array(),$sRedirectAction='show',$bAttributesSet=false,$sModelName=null,$sSuccessMessage=null,$bNoCommit=false,$bSafeOnly=false)
/usr/local/yiixl/lib/core/controllers/CXLController.php:867: warning: argument 'boolean' of command @param is not found in the argument list of CXLController::saveCurrentModel(&$model,$arData=array(),$sRedirectAction='show',$bAttributesSet=false,$sModelName=null,$sSuccessMessage=null,$bNoCommit=false,$bSafeOnly=false)
/usr/local/yiixl/lib/core/controllers/CXLController.php:867: warning: The following parameters of CXLController::saveCurrentModel(&$model,$arData=array(),$sRedirectAction='show',$bAttributesSet=false,$sModelName=null,$sSuccessMessage=null,$bNoCommit=false,$bSafeOnly=false) are not documented:
parameter 'model'
parameter 'arData'
parameter 'sRedirectAction'
parameter 'bAttributesSet'
parameter 'sModelName'
parameter 'sSuccessMessage'
parameter 'bNoCommit'
parameter 'bSafeOnly'
/usr/local/yiixl/lib/core/controllers/CXLController.php:549: warning: argument 'type' of command @param is not found in the argument list of CXLController::setContentType($contentType,$noLayout=true)
/usr/local/yiixl/lib/core/controllers/CXLController.php:549: warning: argument 'boolean' of command @param is not found in the argument list of CXLController::setContentType($contentType,$noLayout=true)
/usr/local/yiixl/lib/core/controllers/CXLController.php:549: warning: The following parameters of CXLController::setContentType($contentType,$noLayout=true) are not documented:
parameter 'contentType'
parameter 'noLayout'
/usr/local/yiixl/lib/core/controllers/CXLController.php:442: warning: argument 'CModel' of command @param is not found in the argument list of CXLController::setStandardFormOptions($model,$optionList=array())
/usr/local/yiixl/lib/core/controllers/CXLController.php:442: warning: argument 'string' of command @param is not found in the argument list of CXLController::setStandardFormOptions($model,$optionList=array())
/usr/local/yiixl/lib/core/controllers/CXLController.php:442: warning: argument 'array' of command @param is not found in the argument list of CXLController::setStandardFormOptions($model,$optionList=array())
/usr/local/yiixl/lib/core/controllers/CXLController.php:442: warning: The following parameters of CXLController::setStandardFormOptions($model,$optionList=array()) are not documented:
parameter 'model'
parameter 'optionList'
/usr/local/yiixl/lib/core/controllers/CXLController.php:560: warning: argument 'array' of command @param is not found in the argument list of CXLController::setViewNavigationOptions(&$options=array())
/usr/local/yiixl/lib/core/controllers/CXLController.php:560: warning: The following parameters of CXLController::setViewNavigationOptions(&$options=array()) are not documented:
parameter 'options'
/usr/local/yiixl/lib/core/controllers/CXLController.php:28: warning: Found unknown command `\final'
/usr/local/yiixl/lib/core/controllers/CXLController.php:44: warning: Found unknown command `\final'
/usr/local/yiixl/lib/core/controllers/CXLController.php:39: warning: Found unknown command `\final'
/usr/local/yiixl/lib/core/controllers/CXLController.php:49: warning: Found unknown command `\final'
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:243: warning: argument 'CEvent' of command @param is not found in the argument list of CXLDataTransformBehavior::afterFind($event)
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:243: warning: The following parameters of CXLDataTransformBehavior::afterFind($event) are not documented:
parameter 'event'
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:206: warning: argument 'CEvent' of command @param is not found in the argument list of CXLDataTransformBehavior::afterValidate($event)
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:206: warning: The following parameters of CXLDataTransformBehavior::afterValidate($event) are not documented:
parameter 'event'
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:120: warning: argument 'CDbColumnSchema' of command @param is not found in the argument list of CXLDataTransformBehavior::applyFormat($column,$value,$eventName='view')
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:120: warning: argument 'mixed' of command @param is not found in the argument list of CXLDataTransformBehavior::applyFormat($column,$value,$eventName='view')
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:120: warning: argument 'string' of command @param is not found in the argument list of CXLDataTransformBehavior::applyFormat($column,$value,$eventName='view')
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:120: warning: The following parameters of CXLDataTransformBehavior::applyFormat($column,$value,$eventName='view') are not documented:
parameter 'column'
parameter 'value'
parameter 'eventName'
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:215: warning: argument 'CEvent' of command @param is not found in the argument list of CXLDataTransformBehavior::beforeFind($event)
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:215: warning: The following parameters of CXLDataTransformBehavior::beforeFind($event) are not documented:
parameter 'event'
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:197: warning: argument 'CModelEvent' of command @param is not found in the argument list of CXLDataTransformBehavior::beforeValidate($event)
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:197: warning: The following parameters of CXLDataTransformBehavior::beforeValidate($event) are not documented:
parameter 'event'
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:70: warning: argument 'string' of command @param is not found in the argument list of CXLDataTransformBehavior::getFormat($eventName='afterFind',$formatType='date')
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:70: warning: argument 'string' of command @param is not found in the argument list of CXLDataTransformBehavior::getFormat($eventName='afterFind',$formatType='date')
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:70: warning: The following parameters of CXLDataTransformBehavior::getFormat($eventName='afterFind',$formatType='date') are not documented:
parameter 'eventName'
parameter 'formatType'
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:148: warning: argument 'string' of command @param is not found in the argument list of CXLDataTransformBehavior::handleEvent($eventName, CEvent $event)
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:148: warning: argument 'CEvent' of command @param is not found in the argument list of CXLDataTransformBehavior::handleEvent($eventName, CEvent $event)
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:148: warning: The following parameters of CXLDataTransformBehavior::handleEvent($eventName, CEvent $event) are not documented:
parameter 'eventName'
parameter 'event'
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:106: warning: argument 'string' of command @param is not found in the argument list of CXLDataTransformBehavior::setDefaultSort($sValue)
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:106: warning: The following parameters of CXLDataTransformBehavior::setDefaultSort($sValue) are not documented:
parameter 'sValue'
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:81: warning: argument 'string' of command @param is not found in the argument list of CXLDataTransformBehavior::setFormat($eventName='afterValidate',$formatType='date',$format='m/d/Y')
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:81: warning: argument 'string' of command @param is not found in the argument list of CXLDataTransformBehavior::setFormat($eventName='afterValidate',$formatType='date',$format='m/d/Y')
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:81: warning: argument 'string' of command @param is not found in the argument list of CXLDataTransformBehavior::setFormat($eventName='afterValidate',$formatType='date',$format='m/d/Y')
/usr/local/yiixl/lib/core/behaviors/CXLDataTransformBehavior.php:81: warning: The following parameters of CXLDataTransformBehavior::setFormat($eventName='afterValidate',$formatType='date',$format='m/d/Y') are not documented:
parameter 'eventName'
parameter 'formatType'
parameter 'format'
/usr/local/yiixl/lib/core/helpers/CXLHash.php:81: warning: argument 'int' of command @param is not found in the argument list of CXLHash::generate($hashLength=20,$hashType=self::ALL)
/usr/local/yiixl/lib/core/helpers/CXLHash.php:81: warning: The following parameters of CXLHash::generate($hashLength=20,$hashType=self::ALL) are not documented:
parameter 'hashLength'
parameter 'hashType'
/usr/local/yiixl/lib/core/helpers/CXLHash.php:100: warning: argument 'string' of command @param is not found in the argument list of CXLHash::hash($hashTarget=null,$hashType=self::SHA1,$hashLength=32,$rawOutput=false)
/usr/local/yiixl/lib/core/helpers/CXLHash.php:100: warning: argument 'integer' of command @param is not found in the argument list of CXLHash::hash($hashTarget=null,$hashType=self::SHA1,$hashLength=32,$rawOutput=false)
/usr/local/yiixl/lib/core/helpers/CXLHash.php:100: warning: argument 'integer' of command @param is not found in the argument list of CXLHash::hash($hashTarget=null,$hashType=self::SHA1,$hashLength=32,$rawOutput=false)
/usr/local/yiixl/lib/core/helpers/CXLHash.php:100: warning: argument 'boolean' of command @param is not found in the argument list of CXLHash::hash($hashTarget=null,$hashType=self::SHA1,$hashLength=32,$rawOutput=false)
/usr/local/yiixl/lib/core/helpers/CXLHash.php:100: warning: The following parameters of CXLHash::hash($hashTarget=null,$hashType=self::SHA1,$hashLength=32,$rawOutput=false) are not documented:
parameter 'hashTarget'
parameter 'hashType'
parameter 'hashLength'
parameter 'rawOutput'
/usr/local/yiixl/lib/core/components/logging/CXLLiveLogRoute.php:117: warning: argument 'CLogger' of command @param is not found in the argument list of CXLLiveLogRoute::collectLogs($logger,$processLogs=false)
/usr/local/yiixl/lib/core/components/logging/CXLLiveLogRoute.php:117: warning: argument 'boolean' of command @param is not found in the argument list of CXLLiveLogRoute::collectLogs($logger,$processLogs=false)
/usr/local/yiixl/lib/core/components/logging/CXLLiveLogRoute.php:117: warning: The following parameters of CXLLiveLogRoute::collectLogs($logger,$processLogs=false) are not documented:
parameter 'logger'
parameter 'processLogs'
/usr/local/yiixl/lib/core/components/logging/CXLLiveLogRoute.php:184: warning: argument 'string' of command @param is not found in the argument list of CXLLiveLogRoute::formatLogMessage($message,$level='I',$category=null,$time=null)
/usr/local/yiixl/lib/core/components/logging/CXLLiveLogRoute.php:184: warning: argument 'integer' of command @param is not found in the argument list of CXLLiveLogRoute::formatLogMessage($message,$level='I',$category=null,$time=null)
/usr/local/yiixl/lib/core/components/logging/CXLLiveLogRoute.php:184: warning: argument 'string' of command @param is not found in the argument list of CXLLiveLogRoute::formatLogMessage($message,$level='I',$category=null,$time=null)
/usr/local/yiixl/lib/core/components/logging/CXLLiveLogRoute.php:184: warning: argument 'integer' of command @param is not found in the argument list of CXLLiveLogRoute::formatLogMessage($message,$level='I',$category=null,$time=null)
/usr/local/yiixl/lib/core/components/logging/CXLLiveLogRoute.php:184: warning: The following parameters of CXLLiveLogRoute::formatLogMessage($message,$level='I',$category=null,$time=null) are not documented:
parameter 'message'
parameter 'level'
parameter 'category'
parameter 'time'
/usr/local/yiixl/lib/core/components/logging/CXLLiveLogRoute.php:131: warning: argument 'array' of command @param is not found in the argument list of CXLLiveLogRoute::processLogs($logs=array())
/usr/local/yiixl/lib/core/components/logging/CXLLiveLogRoute.php:131: warning: The following parameters of CXLLiveLogRoute::processLogs($logs=array()) are not documented:
parameter 'logs'
<unknown>:0: warning: unable to resolve link to `error_log' for \link command
/usr/local/yiixl/lib/core/components/logging/CXLLiveLogRoute.php:67: warning: argument 'integer' of command @param is not found in the argument list of CXLLiveLogRoute::setDebugLevel($value=false)
/usr/local/yiixl/lib/core/components/logging/CXLLiveLogRoute.php:67: warning: The following parameters of CXLLiveLogRoute::setDebugLevel($value=false) are not documented:
parameter 'value'
/usr/local/yiixl/lib/core/helpers/CXLLog.php:19: warning: unable to resolve link to `http://php.net/manual/en/function.syslog.php' for \link command
/usr/local/yiixl/lib/core/helpers/CXLLog.php:216: warning: argument 'string' of command @param is not found in the argument list of CXLLog::_log($message,$level=LOG_INFO,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:216: warning: argument 'int' of command @param is not found in the argument list of CXLLog::_log($message,$level=LOG_INFO,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:221: warning: expected <tr> tag but found TK_LNKWORD token instead!
/usr/local/yiixl/lib/core/helpers/CXLLog.php:216: warning: argument 'string' of command @param is not found in the argument list of CXLLog::_log($message,$level=LOG_INFO,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:216: warning: The following parameters of CXLLog::_log($message,$level=LOG_INFO,$category=null) are not documented:
parameter 'message'
parameter 'level'
parameter 'category'
/usr/local/yiixl/lib/core/helpers/CXLLog.php:102: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logAlert($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:102: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logAlert($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:102: warning: The following parameters of CXLLog::logAlert($message,$category=null) are not documented:
parameter 'message'
parameter 'category'
/usr/local/yiixl/lib/core/helpers/CXLLog.php:182: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logAuth($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:182: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logAuth($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:182: warning: The following parameters of CXLLog::logAuth($message,$category=null) are not documented:
parameter 'message'
parameter 'category'
/usr/local/yiixl/lib/core/helpers/CXLLog.php:202: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logAuthPriv($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:202: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logAuthPriv($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:202: warning: The following parameters of CXLLog::logAuthPriv($message,$category=null) are not documented:
parameter 'message'
parameter 'category'
/usr/local/yiixl/lib/core/helpers/CXLLog.php:112: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logCritical($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:112: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logCritical($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:112: warning: The following parameters of CXLLog::logCritical($message,$category=null) are not documented:
parameter 'message'
parameter 'category'
/usr/local/yiixl/lib/core/helpers/CXLLog.php:162: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logDebug($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:162: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logDebug($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:162: warning: The following parameters of CXLLog::logDebug($message,$category=null) are not documented:
parameter 'message'
parameter 'category'
/usr/local/yiixl/lib/core/helpers/CXLLog.php:92: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logEmergency($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:92: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logEmergency($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:92: warning: The following parameters of CXLLog::logEmergency($message,$category=null) are not documented:
parameter 'message'
parameter 'category'
/usr/local/yiixl/lib/core/helpers/CXLLog.php:122: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logError($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:122: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logError($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:122: warning: The following parameters of CXLLog::logError($message,$category=null) are not documented:
parameter 'message'
parameter 'category'
/usr/local/yiixl/lib/core/helpers/CXLLog.php:152: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logInfo($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:152: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logInfo($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:152: warning: The following parameters of CXLLog::logInfo($message,$category=null) are not documented:
parameter 'message'
parameter 'category'
/usr/local/yiixl/lib/core/helpers/CXLLog.php:142: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logNotice($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:142: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logNotice($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:142: warning: The following parameters of CXLLog::logNotice($message,$category=null) are not documented:
parameter 'message'
parameter 'category'
/usr/local/yiixl/lib/core/helpers/CXLLog.php:192: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logSyslog($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:192: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logSyslog($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:192: warning: The following parameters of CXLLog::logSyslog($message,$category=null) are not documented:
parameter 'message'
parameter 'category'
/usr/local/yiixl/lib/core/helpers/CXLLog.php:82: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logTrace($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:82: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logTrace($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:82: warning: The following parameters of CXLLog::logTrace($message,$category=null) are not documented:
parameter 'message'
parameter 'category'
/usr/local/yiixl/lib/core/helpers/CXLLog.php:172: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logUser($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:172: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logUser($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:172: warning: The following parameters of CXLLog::logUser($message,$category=null) are not documented:
parameter 'message'
parameter 'category'
/usr/local/yiixl/lib/core/helpers/CXLLog.php:132: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logWarning($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:132: warning: argument 'string' of command @param is not found in the argument list of CXLLog::logWarning($message,$category=null)
/usr/local/yiixl/lib/core/helpers/CXLLog.php:132: warning: The following parameters of CXLLog::logWarning($message,$category=null) are not documented:
parameter 'message'
parameter 'category'
/usr/local/yiixl/lib/core/behaviors/CXLOAuthBehavior.php:277: warning: argument 'CXLOAuthEvent' of command @param is not found in the argument list of CXLOAuthBehavior::onUserAuthorized($event)
/usr/local/yiixl/lib/core/behaviors/CXLOAuthBehavior.php:277: warning: The following parameters of CXLOAuthBehavior::onUserAuthorized($event) are not documented:
parameter 'event'
/usr/local/yiixl/lib/core/behaviors/CXLOAuthBehavior.php:227: warning: argument 'array' of command @param is not found in the argument list of CXLOAuthBehavior::storeToken($token=array())
/usr/local/yiixl/lib/core/behaviors/CXLOAuthBehavior.php:227: warning: The following parameters of CXLOAuthBehavior::storeToken($token=array()) are not documented:
parameter 'token'
/usr/local/yiixl/lib/core/helpers/CXLOptions.php:123: warning: argument 'string' of command @param is not found in the argument list of CXLOptions::_cleanKey($key)
/usr/local/yiixl/lib/core/helpers/CXLOptions.php:123: warning: The following parameters of CXLOptions::_cleanKey($key) are not documented:
parameter 'key'
/usr/local/yiixl/lib/core/helpers/CXLOptions.php:68: warning: argument 'IXLComponent' of command @param is not found in the argument list of CXLOptions::loadConfiguration(IXLComponent $object,$options=array(),$overwriteExisting=true)
/usr/local/yiixl/lib/core/helpers/CXLOptions.php:68: warning: argument 'array' of command @param is not found in the argument list of CXLOptions::loadConfiguration(IXLComponent $object,$options=array(),$overwriteExisting=true)
/usr/local/yiixl/lib/core/helpers/CXLOptions.php:68: warning: argument 'array' of command @param is not found in the argument list of CXLOptions::loadConfiguration(IXLComponent $object,$options=array(),$overwriteExisting=true)
/usr/local/yiixl/lib/core/helpers/CXLOptions.php:68: warning: argument 'boolean' of command @param is not found in the argument list of CXLOptions::loadConfiguration(IXLComponent $object,$options=array(),$overwriteExisting=true)
/usr/local/yiixl/lib/core/helpers/CXLOptions.php:68: warning: The following parameters of CXLOptions::loadConfiguration(IXLComponent $object,$options=array(),$overwriteExisting=true) are not documented:
parameter 'object'
parameter 'options'
parameter 'overwriteExisting'
/usr/local/yiixl/lib/core/helpers/CXLOptions.php:54: warning: argument 'IXLComponent' of command @param is not found in the argument list of CXLOptions::setConstructorOptions(IXLComponent $object,$options)
/usr/local/yiixl/lib/core/helpers/CXLOptions.php:54: warning: argument 'array' of command @param is not found in the argument list of CXLOptions::setConstructorOptions(IXLComponent $object,$options)
/usr/local/yiixl/lib/core/helpers/CXLOptions.php:54: warning: The following parameters of CXLOptions::setConstructorOptions(IXLComponent $object,$options) are not documented:
parameter 'object'
parameter 'options'
/usr/local/yiixl/lib/core/helpers/CXLOptions.php:35: warning: argument 'IXLComponent' of command @param is not found in the argument list of CXLOptions::setOptions(IXLComponent $object, array $options)
/usr/local/yiixl/lib/core/helpers/CXLOptions.php:35: warning: argument 'array' of command @param is not found in the argument list of CXLOptions::setOptions(IXLComponent $object, array $options)
/usr/local/yiixl/lib/core/helpers/CXLOptions.php:35: warning: The following parameters of CXLOptions::setOptions(IXLComponent $object, array $options) are not documented:
parameter 'object'
parameter 'options'
/usr/local/yiixl/lib/core/components/CXLRestAction.php:18: warning: Unsupported xml/html tag <method> found
/usr/local/yiixl/lib/core/components/CXLRestAction.php:18: warning: Unsupported xml/html tag <method> found
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:256: warning: argument 'CPSApiEvent' of command @param is not found in the argument list of CXLRestConsumerComponent::afterApiCall($event)
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:256: warning: The following parameters of CXLRestConsumerComponent::afterApiCall($event) are not documented:
parameter 'event'
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:239: warning: argument 'CPSApiEvent' of command @param is not found in the argument list of CXLRestConsumerComponent::beforeApiCall($event)
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:239: warning: The following parameters of CXLRestConsumerComponent::beforeApiCall($event) are not documented:
parameter 'event'
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:164: warning: argument 'array' of command @param is not found in the argument list of CXLRestConsumerComponent::makeMapArray($apiName,$subApiName=null, array $apiMap,$setRequestMap=true)
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:166: warning: unable to resolve link to `makeMapItem' for \link command
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:164: warning: argument 'bool' of command @param is not found in the argument list of CXLRestConsumerComponent::makeMapArray($apiName,$subApiName=null, array $apiMap,$setRequestMap=true)
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:167: warning: unable to resolve link to `requestMap' for \link command
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:164: warning: The following parameters of CXLRestConsumerComponent::makeMapArray($apiName,$subApiName=null, array $apiMap,$setRequestMap=true) are not documented:
parameter 'apiName'
parameter 'subApiName'
parameter 'apiMap'
parameter 'setRequestMap'
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:196: warning: argument 'string' of command @param is not found in the argument list of CXLRestConsumerComponent::makeMapItem($itemLabel,$parameterName=null,$required=false,$options=array(), array &$target=null)
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:196: warning: argument 'string' of command @param is not found in the argument list of CXLRestConsumerComponent::makeMapItem($itemLabel,$parameterName=null,$required=false,$options=array(), array &$target=null)
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:196: warning: argument 'bool' of command @param is not found in the argument list of CXLRestConsumerComponent::makeMapItem($itemLabel,$parameterName=null,$required=false,$options=array(), array &$target=null)
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:196: warning: argument 'array' of command @param is not found in the argument list of CXLRestConsumerComponent::makeMapItem($itemLabel,$parameterName=null,$required=false,$options=array(), array &$target=null)
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:196: warning: argument 'array' of command @param is not found in the argument list of CXLRestConsumerComponent::makeMapItem($itemLabel,$parameterName=null,$required=false,$options=array(), array &$target=null)
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:196: warning: The following parameters of CXLRestConsumerComponent::makeMapItem($itemLabel,$parameterName=null,$required=false,$options=array(), array &$target=null) are not documented:
parameter 'itemLabel'
parameter 'parameterName'
parameter 'required'
parameter 'options'
parameter 'target'
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:247: warning: argument 'CPSApiEvent' of command @param is not found in the argument list of CXLRestConsumerComponent::onAfterApiCall($event)
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:247: warning: The following parameters of CXLRestConsumerComponent::onAfterApiCall($event) are not documented:
parameter 'event'
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:230: warning: argument 'CPSApiEvent' of command @param is not found in the argument list of CXLRestConsumerComponent::onBeforeApiCall($event)
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:230: warning: The following parameters of CXLRestConsumerComponent::onBeforeApiCall($event) are not documented:
parameter 'event'
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:264: warning: argument 'CPSApiEvent' of command @param is not found in the argument list of CXLRestConsumerComponent::onRequestComplete($event)
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:264: warning: The following parameters of CXLRestConsumerComponent::onRequestComplete($event) are not documented:
parameter 'event'
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:273: warning: argument 'CPSApiEvent' of command @param is not found in the argument list of CXLRestConsumerComponent::requestComplete($event)
/usr/local/yiixl/lib/core/components/CXLRestConsumerComponent.php:273: warning: The following parameters of CXLRestConsumerComponent::requestComplete($event) are not documented:
parameter 'event'
/usr/local/yiixl/lib/core/behaviors/CXLSoftDeleteBehavior.php:114: warning: Found unknown command `\params'
/usr/local/yiixl/lib/core/behaviors/CXLSoftDeleteBehavior.php:145: warning: argument 'CEvent' of command @param is not found in the argument list of CXLSoftDeleteBehavior::beforeFind($event)
/usr/local/yiixl/lib/core/behaviors/CXLSoftDeleteBehavior.php:145: warning: The following parameters of CXLSoftDeleteBehavior::beforeFind($event) are not documented:
parameter 'event'
/usr/local/yiixl/lib/core/behaviors/CXLTimestampBehavior.php:73: warning: argument 'CModelEvent' of command @param is not found in the argument list of CXLTimeStampBehavior::beforeValidate($event)
/usr/local/yiixl/lib/core/behaviors/CXLTimestampBehavior.php:73: warning: The following parameters of CXLTimeStampBehavior::beforeValidate($event) are not documented:
parameter 'event'
/usr/local/yiixl/lib/core/behaviors/CXLTimestampBehavior.php:114: warning: argument 'mixed' of command @param is not found in the argument list of CXLTimeStampBehavior::touch($additionalColumns=null)
/usr/local/yiixl/lib/core/behaviors/CXLTimestampBehavior.php:114: warning: The following parameters of CXLTimeStampBehavior::touch($additionalColumns=null) are not documented:
parameter 'additionalColumns'
/usr/local/yiixl/lib/core/behaviors/CXLActionControlBehavior.php:92: warning: argument 'type' of command @param is not found in the argument list of CXLUserActionBehavior::addUserAction($accessLevel,$action)
/usr/local/yiixl/lib/core/behaviors/CXLActionControlBehavior.php:92: warning: argument 'type' of command @param is not found in the argument list of CXLUserActionBehavior::addUserAction($accessLevel,$action)
/usr/local/yiixl/lib/core/behaviors/CXLActionControlBehavior.php:92: warning: The following parameters of CXLUserActionBehavior::addUserAction($accessLevel,$action) are not documented:
parameter 'accessLevel'
parameter 'action'
/usr/local/yiixl/lib/core/behaviors/CXLActionControlBehavior.php:69: warning: argument 'integer' of command @param is not found in the argument list of CXLUserActionBehavior::addUserActionRole($accessLevel,$action,$role)
/usr/local/yiixl/lib/core/behaviors/CXLActionControlBehavior.php:69: warning: argument 'string' of command @param is not found in the argument list of CXLUserActionBehavior::addUserActionRole($accessLevel,$action,$role)
/usr/local/yiixl/lib/core/behaviors/CXLActionControlBehavior.php:69: warning: argument 'string' of command @param is not found in the argument list of CXLUserActionBehavior::addUserActionRole($accessLevel,$action,$role)
/usr/local/yiixl/lib/core/behaviors/CXLActionControlBehavior.php:69: warning: The following parameters of CXLUserActionBehavior::addUserActionRole($accessLevel,$action,$role) are not documented:
parameter 'accessLevel'
parameter 'action'
parameter 'role'
/usr/local/yiixl/lib/core/behaviors/CXLActionControlBehavior.php:114: warning: argument 'integer' of command @param is not found in the argument list of CXLUserActionBehavior::addUserActions($accessLevel,$actions=array())
/usr/local/yiixl/lib/core/behaviors/CXLActionControlBehavior.php:114: warning: argument 'array' of command @param is not found in the argument list of CXLUserActionBehavior::addUserActions($accessLevel,$actions=array())
/usr/local/yiixl/lib/core/behaviors/CXLActionControlBehavior.php:114: warning: The following parameters of CXLUserActionBehavior::addUserActions($accessLevel,$actions=array()) are not documented:
parameter 'accessLevel'
parameter 'actions'
/usr/local/yiixl/lib/core/behaviors/CXLActionControlBehavior.php:37: warning: argument 'integer' of command @param is not found in the argument list of CXLUserActionBehavior::getUserActionMap($accessLevel)
/usr/local/yiixl/lib/core/behaviors/CXLActionControlBehavior.php:37: warning: The following parameters of CXLUserActionBehavior::getUserActionMap($accessLevel) are not documented:
parameter 'accessLevel'
/usr/local/yiixl/lib/core/behaviors/CXLActionControlBehavior.php:81: warning: argument 'integer' of command @param is not found in the argument list of CXLUserActionBehavior::removeUserAction($accessLevel,$action)
/usr/local/yiixl/lib/core/behaviors/CXLActionControlBehavior.php:81: warning: argument 'string' of command @param is not found in the argument list of CXLUserActionBehavior::removeUserAction($accessLevel,$action)
/usr/local/yiixl/lib/core/behaviors/CXLActionControlBehavior.php:81: warning: The following parameters of CXLUserActionBehavior::removeUserAction($accessLevel,$action) are not documented:
parameter 'accessLevel'
parameter 'action'
/usr/local/yiixl/lib/core/behaviors/CXLActionControlBehavior.php:57: warning: argument 'integer' of command @param is not found in the argument list of CXLUserActionBehavior::setUserActionMap($accessLevel,$value=array())
/usr/local/yiixl/lib/core/behaviors/CXLActionControlBehavior.php:57: warning: argument 'array' of command @param is not found in the argument list of CXLUserActionBehavior::setUserActionMap($accessLevel,$value=array())
/usr/local/yiixl/lib/core/behaviors/CXLActionControlBehavior.php:57: warning: The following parameters of CXLUserActionBehavior::setUserActionMap($accessLevel,$value=array()) are not documented:
parameter 'accessLevel'
parameter 'value'
/usr/local/yiixl/lib/core/ui/CXLWidget.php:144: warning: argument 'CBaseController' of command @param is not found in the argument list of CXLWidget::__construct($owner=null,$options=array())
/usr/local/yiixl/lib/core/ui/CXLWidget.php:144: warning: argument 'array' of command @param is not found in the argument list of CXLWidget::__construct($owner=null,$options=array())
/usr/local/yiixl/lib/core/ui/CXLWidget.php:144: warning: The following parameters of CXLWidget::__construct($owner=null,$options=array()) are not documented:
parameter 'owner'
parameter 'options'
/usr/local/yiixl/lib/core/ui/CXLWidget.php:327: warning: argument 'array' of command @param is not found in the argument list of CXLWidget::_loadConfiguration($options=array(),$overwriteExisting=true)
/usr/local/yiixl/lib/core/ui/CXLWidget.php:327: warning: The following parameters of CXLWidget::_loadConfiguration($options=array(),$overwriteExisting=true) are not documented:
parameter 'options'
parameter 'overwriteExisting'
/usr/local/yiixl/lib/core/ui/CXLWidget.php:260: warning: argument 'string' of command @param is not found in the argument list of CXLWidget::_renderContainer($endTag=null)
/usr/local/yiixl/lib/core/ui/CXLWidget.php:260: warning: The following parameters of CXLWidget::_renderContainer($endTag=null) are not documented:
parameter 'endTag'
/usr/local/yiixl/lib/core/ui/CXLWidget.php:101: warning: argument 'array' of command @param is not found in the argument list of CXLWidget::loadOptions($options=array())
/usr/local/yiixl/lib/core/ui/CXLWidget.php:101: warning: The following parameters of CXLWidget::loadOptions($options=array()) are not documented:
parameter 'options'
/usr/local/yiixl/lib/core/ui/CXLWidget.php:190: warning: argument 'string' of command @param is not found in the argument list of CXLWidget::pushCssFile($path,$media='screen')
/usr/local/yiixl/lib/core/ui/CXLWidget.php:190: warning: argument 'string' of command @param is not found in the argument list of CXLWidget::pushCssFile($path,$media='screen')
/usr/local/yiixl/lib/core/ui/CXLWidget.php:190: warning: The following parameters of CXLWidget::pushCssFile($path,$media='screen') are not documented:
parameter 'path'
parameter 'media'
/usr/local/yiixl/lib/core/ui/CXLWidget.php:214: warning: argument 'string' of command @param is not found in the argument list of CXLWidget::pushScriptFile($path,$position=CClientScript::POS_HEAD)
/usr/local/yiixl/lib/core/ui/CXLWidget.php:214: warning: argument 'integer' of command @param is not found in the argument list of CXLWidget::pushScriptFile($path,$position=CClientScript::POS_HEAD)
/usr/local/yiixl/lib/core/ui/CXLWidget.php:214: warning: argument 'string' of command @param is not found in the argument list of CXLWidget::pushScriptFile($path,$position=CClientScript::POS_HEAD)
/usr/local/yiixl/lib/core/ui/CXLWidget.php:214: warning: The following parameters of CXLWidget::pushScriptFile($path,$position=CClientScript::POS_HEAD) are not documented:
parameter 'path'
parameter 'position'
/usr/local/yiixl/lib/core/ui/CXLWidget.php:174: warning: unable to resolve link to `CBaseController::endWidget' for \link command
/usr/local/yiixl/lib/core/ui/CXLWidget.php:73: warning: argument 'integer' of command @param is not found in the argument list of CXLWidget::setDebugLevel($value=false)
/usr/local/yiixl/lib/core/ui/CXLWidget.php:73: warning: The following parameters of CXLWidget::setDebugLevel($value=false) are not documented:
parameter 'value'
/usr/local/yiixl/lib/core/components/interfaces.php:225: warning: unable to resolve link to `CXLController::actionControlMap' for \link command
/usr/local/yiixl/lib/core/components/interfaces.php:64: warning: argument 'array' of command @param is not found in the argument list of IXLComponent::loadOptions($options=array())
/usr/local/yiixl/lib/core/components/interfaces.php:64: warning: The following parameters of IXLComponent::loadOptions($options=array()) are not documented:
parameter 'options'
/usr/local/yiixl/lib/core/components/interfaces.php:52: warning: argument 'integer' of command @param is not found in the argument list of IXLComponent::setDebugLevel($value=false)
/usr/local/yiixl/lib/core/components/interfaces.php:52: warning: The following parameters of IXLComponent::setDebugLevel($value=false) are not documented:
parameter 'value'
/usr/local/yiixl/lib/core/components/interfaces.php:190: warning: unable to resolve link to `CXLController#m_arUserActionMap' for \link command
/usr/local/yiixl/lib/core/YiiXLBase.php:1226: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::__callStatic($method,$parameters)
/usr/local/yiixl/lib/core/YiiXLBase.php:1226: warning: argument 'array' of command @param is not found in the argument list of YiiXLBase::__callStatic($method,$parameters)
/usr/local/yiixl/lib/core/YiiXLBase.php:1226: warning: The following parameters of YiiXLBase::__callStatic($method,$parameters) are not documented:
parameter 'method'
parameter 'parameters'
/usr/local/yiixl/lib/core/YiiXLBase.php:493: warning: Found unknown command `\access'
/usr/local/yiixl/lib/core/YiiXLBase.php:735: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_cu($route,$options=array(),$ampersand='&')
/usr/local/yiixl/lib/core/YiiXLBase.php:735: warning: argument 'array' of command @param is not found in the argument list of YiiXLBase::_cu($route,$options=array(),$ampersand='&')
/usr/local/yiixl/lib/core/YiiXLBase.php:735: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_cu($route,$options=array(),$ampersand='&')
/usr/local/yiixl/lib/core/YiiXLBase.php:735: warning: The following parameters of YiiXLBase::_cu($route,$options=array(),$ampersand='&') are not documented:
parameter 'route'
parameter 'options'
parameter 'ampersand'
/usr/local/yiixl/lib/core/YiiXLBase.php:503: warning: unable to resolve link to `onEndRequest' for \link command
/usr/local/yiixl/lib/core/YiiXLBase.php:502: warning: argument 'integer' of command @param is not found in the argument list of YiiXLBase::_end($status=0,$exit=true)
/usr/local/yiixl/lib/core/YiiXLBase.php:502: warning: argument 'boolean' of command @param is not found in the argument list of YiiXLBase::_end($status=0,$exit=true)
/usr/local/yiixl/lib/core/YiiXLBase.php:506: warning: Found unknown command `\access'
/usr/local/yiixl/lib/core/YiiXLBase.php:502: warning: The following parameters of YiiXLBase::_end($status=0,$exit=true) are not documented:
parameter 'status'
parameter 'exit'
/usr/local/yiixl/lib/core/YiiXLBase.php:934: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_gf($key,$defaultValue=null,$delete=true)
/usr/local/yiixl/lib/core/YiiXLBase.php:934: warning: argument 'mixed' of command @param is not found in the argument list of YiiXLBase::_gf($key,$defaultValue=null,$delete=true)
/usr/local/yiixl/lib/core/YiiXLBase.php:934: warning: argument 'boolean' of command @param is not found in the argument list of YiiXLBase::_gf($key,$defaultValue=null,$delete=true)
/usr/local/yiixl/lib/core/YiiXLBase.php:934: warning: The following parameters of YiiXLBase::_gf($key,$defaultValue=null,$delete=true) are not documented:
parameter 'key'
parameter 'defaultValue'
parameter 'delete'
/usr/local/yiixl/lib/core/YiiXLBase.php:920: warning: unable to resolve link to `CWebUser::getState' for \link command
/usr/local/yiixl/lib/core/YiiXLBase.php:920: warning: argument 'array' of command @param is not found in the argument list of YiiXLBase::_ghs($stateKeyParts,$defaultValue=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:920: warning: argument 'mixed' of command @param is not found in the argument list of YiiXLBase::_ghs($stateKeyParts,$defaultValue=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:920: warning: The following parameters of YiiXLBase::_ghs($stateKeyParts,$defaultValue=null) are not documented:
parameter 'stateKeyParts'
parameter 'defaultValue'
/usr/local/yiixl/lib/core/YiiXLBase.php:1090: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_gpoa($alias,$url=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:1090: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_gpoa($alias,$url=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:1090: warning: The following parameters of YiiXLBase::_gpoa($alias,$url=null) are not documented:
parameter 'alias'
parameter 'url'
/usr/local/yiixl/lib/core/YiiXLBase.php:757: warning: unable to resolve link to `CApplication::getRequest' for \link command
/usr/local/yiixl/lib/core/YiiXLBase.php:904: warning: unable to resolve link to `_ss' for \link command
/usr/local/yiixl/lib/core/YiiXLBase.php:900: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_gs($stateName,$defaultValue=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:900: warning: argument 'mixed' of command @param is not found in the argument list of YiiXLBase::_gs($stateName,$defaultValue=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:900: warning: The following parameters of YiiXLBase::_gs($stateName,$defaultValue=null) are not documented:
parameter 'stateName'
parameter 'defaultValue'
/usr/local/yiixl/lib/core/YiiXLBase.php:1293: warning: argument 'mixed' of command @param is not found in the argument list of YiiXLBase::_isSerialized($value)
/usr/local/yiixl/lib/core/YiiXLBase.php:1293: warning: The following parameters of YiiXLBase::_isSerialized($value) are not documented:
parameter 'value'
/usr/local/yiixl/lib/core/YiiXLBase.php:856: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_publish($path,$hashByName=false,$level=-1)
/usr/local/yiixl/lib/core/YiiXLBase.php:856: warning: argument 'boolean' of command @param is not found in the argument list of YiiXLBase::_publish($path,$hashByName=false,$level=-1)
/usr/local/yiixl/lib/core/YiiXLBase.php:856: warning: argument 'integer' of command @param is not found in the argument list of YiiXLBase::_publish($path,$hashByName=false,$level=-1)
/usr/local/yiixl/lib/core/YiiXLBase.php:856: warning: The following parameters of YiiXLBase::_publish($path,$hashByName=false,$level=-1) are not documented:
parameter 'path'
parameter 'hashByName'
parameter 'level'
/usr/local/yiixl/lib/core/YiiXLBase.php:649: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_rc($sId=null,$sCss,$media='')
/usr/local/yiixl/lib/core/YiiXLBase.php:649: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_rc($sId=null,$sCss,$media='')
/usr/local/yiixl/lib/core/YiiXLBase.php:649: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_rc($sId=null,$sCss,$media='')
/usr/local/yiixl/lib/core/YiiXLBase.php:654: warning: Found unknown command `\access'
/usr/local/yiixl/lib/core/YiiXLBase.php:649: warning: The following parameters of YiiXLBase::_rc($sId=null,$sCss,$media='') are not documented:
parameter 'sId'
parameter 'sCss'
parameter 'media'
/usr/local/yiixl/lib/core/YiiXLBase.php:588: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_rcf($urlList,$media='',$fromPublished=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:588: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_rcf($urlList,$media='',$fromPublished=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:592: warning: Found unknown command `\access'
/usr/local/yiixl/lib/core/YiiXLBase.php:588: warning: The following parameters of YiiXLBase::_rcf($urlList,$media='',$fromPublished=false) are not documented:
parameter 'urlList'
parameter 'media'
parameter 'fromPublished'
/usr/local/yiixl/lib/core/YiiXLBase.php:609: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_rlcf($urlList,$media='',$fromPublished=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:609: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_rlcf($urlList,$media='',$fromPublished=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:613: warning: Found unknown command `\access'
/usr/local/yiixl/lib/core/YiiXLBase.php:609: warning: The following parameters of YiiXLBase::_rlcf($urlList,$media='',$fromPublished=false) are not documented:
parameter 'urlList'
parameter 'media'
parameter 'fromPublished'
/usr/local/yiixl/lib/core/YiiXLBase.php:720: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_rmt($sContent,$sName=null,$sHttpEquiv=null,$options=array())
/usr/local/yiixl/lib/core/YiiXLBase.php:720: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_rmt($sContent,$sName=null,$sHttpEquiv=null,$options=array())
/usr/local/yiixl/lib/core/YiiXLBase.php:720: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_rmt($sContent,$sName=null,$sHttpEquiv=null,$options=array())
/usr/local/yiixl/lib/core/YiiXLBase.php:720: warning: argument 'array' of command @param is not found in the argument list of YiiXLBase::_rmt($sContent,$sName=null,$sHttpEquiv=null,$options=array())
/usr/local/yiixl/lib/core/YiiXLBase.php:726: warning: Found unknown command `\access'
/usr/local/yiixl/lib/core/YiiXLBase.php:720: warning: The following parameters of YiiXLBase::_rmt($sContent,$sName=null,$sHttpEquiv=null,$options=array()) are not documented:
parameter 'sContent'
parameter 'sName'
parameter 'sHttpEquiv'
parameter 'options'
/usr/local/yiixl/lib/core/YiiXLBase.php:684: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_rs($sId=null,$sScript,$ePosition=CClientScript::POS_READY)
/usr/local/yiixl/lib/core/YiiXLBase.php:684: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_rs($sId=null,$sScript,$ePosition=CClientScript::POS_READY)
/usr/local/yiixl/lib/core/YiiXLBase.php:684: warning: argument 'integer' of command @param is not found in the argument list of YiiXLBase::_rs($sId=null,$sScript,$ePosition=CClientScript::POS_READY)
/usr/local/yiixl/lib/core/YiiXLBase.php:696: warning: Found unknown command `\access'
/usr/local/yiixl/lib/core/YiiXLBase.php:684: warning: The following parameters of YiiXLBase::_rs($sId=null,$sScript,$ePosition=CClientScript::POS_READY) are not documented:
parameter 'sId'
parameter 'sScript'
parameter 'ePosition'
/usr/local/yiixl/lib/core/YiiXLBase.php:546: warning: argument 'array' of command @param is not found in the argument list of YiiXLBase::_rsf($urlList,$pagePosition=CClientScript::POS_HEAD,$fromPublished=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:546: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_rsf($urlList,$pagePosition=CClientScript::POS_HEAD,$fromPublished=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:546: warning: argument 'integer' of command @param is not found in the argument list of YiiXLBase::_rsf($urlList,$pagePosition=CClientScript::POS_HEAD,$fromPublished=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:546: warning: argument 'boolean' of command @param is not found in the argument list of YiiXLBase::_rsf($urlList,$pagePosition=CClientScript::POS_HEAD,$fromPublished=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:556: warning: Found unknown command `\access'
/usr/local/yiixl/lib/core/YiiXLBase.php:546: warning: The following parameters of YiiXLBase::_rsf($urlList,$pagePosition=CClientScript::POS_HEAD,$fromPublished=false) are not documented:
parameter 'urlList'
parameter 'pagePosition'
parameter 'fromPublished'
/usr/local/yiixl/lib/core/YiiXLBase.php:1248: warning: argument 'mixed' of command @param is not found in the argument list of YiiXLBase::_serialize($value)
/usr/local/yiixl/lib/core/YiiXLBase.php:1248: warning: The following parameters of YiiXLBase::_serialize($value) are not documented:
parameter 'value'
/usr/local/yiixl/lib/core/YiiXLBase.php:985: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_sf($key,$value,$defaultValue=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:985: warning: argument 'mixed' of command @param is not found in the argument list of YiiXLBase::_sf($key,$value,$defaultValue=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:985: warning: argument 'mixed' of command @param is not found in the argument list of YiiXLBase::_sf($key,$value,$defaultValue=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:991: warning: unable to resolve link to `CXLHelperBase#_gf' for \link command
/usr/local/yiixl/lib/core/YiiXLBase.php:985: warning: The following parameters of YiiXLBase::_sf($key,$value,$defaultValue=null) are not documented:
parameter 'key'
parameter 'value'
parameter 'defaultValue'
/usr/local/yiixl/lib/core/YiiXLBase.php:971: warning: unable to resolve link to `CWebUser::setState' for \link command
/usr/local/yiixl/lib/core/YiiXLBase.php:971: warning: argument 'array' of command @param is not found in the argument list of YiiXLBase::_shs($stateKeyParts,$stateValue,$defaultValue=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:971: warning: argument 'mixed' of command @param is not found in the argument list of YiiXLBase::_shs($stateKeyParts,$stateValue,$defaultValue=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:971: warning: argument 'mixed' of command @param is not found in the argument list of YiiXLBase::_shs($stateKeyParts,$stateValue,$defaultValue=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:971: warning: The following parameters of YiiXLBase::_shs($stateKeyParts,$stateValue,$defaultValue=null) are not documented:
parameter 'stateKeyParts'
parameter 'stateValue'
parameter 'defaultValue'
/usr/local/yiixl/lib/core/YiiXLBase.php:1078: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_spoa($alias,$path)
/usr/local/yiixl/lib/core/YiiXLBase.php:1078: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_spoa($alias,$path)
/usr/local/yiixl/lib/core/YiiXLBase.php:1078: warning: The following parameters of YiiXLBase::_spoa($alias,$path) are not documented:
parameter 'alias'
parameter 'path'
/usr/local/yiixl/lib/core/YiiXLBase.php:1018: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_sql($sql,$dbToUse=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:1018: warning: The following parameters of YiiXLBase::_sql($sql,$dbToUse=null) are not documented:
parameter 'sql'
parameter 'dbToUse'
/usr/local/yiixl/lib/core/YiiXLBase.php:1031: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_sqlAll($sql,$parameterList=array(),$dbToUse=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:1031: warning: argument 'array' of command @param is not found in the argument list of YiiXLBase::_sqlAll($sql,$parameterList=array(),$dbToUse=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:1031: warning: argument 'CDbConnection' of command @param is not found in the argument list of YiiXLBase::_sqlAll($sql,$parameterList=array(),$dbToUse=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:1031: warning: The following parameters of YiiXLBase::_sqlAll($sql,$parameterList=array(),$dbToUse=null) are not documented:
parameter 'sql'
parameter 'parameterList'
parameter 'dbToUse'
/usr/local/yiixl/lib/core/YiiXLBase.php:1045: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_sqlAllScalar($sql,$parameterList=null,$dbToUse=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:1045: warning: argument 'array' of command @param is not found in the argument list of YiiXLBase::_sqlAllScalar($sql,$parameterList=null,$dbToUse=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:1045: warning: argument 'CDbConnection' of command @param is not found in the argument list of YiiXLBase::_sqlAllScalar($sql,$parameterList=null,$dbToUse=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:1045: warning: The following parameters of YiiXLBase::_sqlAllScalar($sql,$parameterList=null,$dbToUse=null) are not documented:
parameter 'sql'
parameter 'parameterList'
parameter 'dbToUse'
/usr/local/yiixl/lib/core/YiiXLBase.php:955: warning: unable to resolve link to `_gs' for \link command
/usr/local/yiixl/lib/core/YiiXLBase.php:950: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::_ss($stateName,$stateValue,$defaultValue=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:950: warning: argument 'mixed' of command @param is not found in the argument list of YiiXLBase::_ss($stateName,$stateValue,$defaultValue=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:950: warning: argument 'mixed' of command @param is not found in the argument list of YiiXLBase::_ss($stateName,$stateValue,$defaultValue=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:950: warning: The following parameters of YiiXLBase::_ss($stateName,$stateValue,$defaultValue=null) are not documented:
parameter 'stateName'
parameter 'stateValue'
parameter 'defaultValue'
/usr/local/yiixl/lib/core/YiiXLBase.php:1269: warning: argument 'mixed' of command @param is not found in the argument list of YiiXLBase::_unserialize($value)
/usr/local/yiixl/lib/core/YiiXLBase.php:1269: warning: The following parameters of YiiXLBase::_unserialize($value) are not documented:
parameter 'value'
/usr/local/yiixl/lib/core/YiiXLBase.php:176: warning: argument 'IXLComponent' of command @param is not found in the argument list of YiiXLBase::createUniqueName(IXLComponent $component,$humanReadable=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:176: warning: argument 'boolean' of command @param is not found in the argument list of YiiXLBase::createUniqueName(IXLComponent $component,$humanReadable=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:176: warning: The following parameters of YiiXLBase::createUniqueName(IXLComponent $component,$humanReadable=false) are not documented:
parameter 'component'
parameter 'humanReadable'
/usr/local/yiixl/lib/core/YiiXLBase.php:1127: warning: argument 'mixed' of command @param is not found in the argument list of YiiXLBase::filterInt($value,$nullIfZero=true,$min=null,$max=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:1127: warning: argument 'boolean' of command @param is not found in the argument list of YiiXLBase::filterInt($value,$nullIfZero=true,$min=null,$max=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:1127: warning: argument 'integer' of command @param is not found in the argument list of YiiXLBase::filterInt($value,$nullIfZero=true,$min=null,$max=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:1127: warning: argument 'integer' of command @param is not found in the argument list of YiiXLBase::filterInt($value,$nullIfZero=true,$min=null,$max=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:1127: warning: The following parameters of YiiXLBase::filterInt($value,$nullIfZero=true,$min=null,$max=null) are not documented:
parameter 'value'
parameter 'nullIfZero'
parameter 'min'
parameter 'max'
/usr/local/yiixl/lib/core/YiiXLBase.php:242: warning: unable to resolve link to `CXLHelperBase::o)' for \link command
/usr/local/yiixl/lib/core/YiiXLBase.php:244: warning: Illegal command param as part of a \link
/usr/local/yiixl/lib/core/YiiXLBase.php:245: warning: Illegal command param as part of a \link
/usr/local/yiixl/lib/core/YiiXLBase.php:246: warning: Illegal command param as part of a \link
/usr/local/yiixl/lib/core/YiiXLBase.php:247: warning: Illegal command param as part of a \link
/usr/local/yiixl/lib/core/YiiXLBase.php:248: warning: Illegal command return as part of a \link
/usr/local/yiixl/lib/core/YiiXLBase.php:249: warning: Illegal command access as part of a \link
/usr/local/yiixl/lib/core/YiiXLBase.php:250: warning: Unexpected end of comment while inside link command
/usr/local/yiixl/lib/core/YiiXLBase.php:747: warning: unable to resolve link to `CApplication::getRequest' for \link command
/usr/local/yiixl/lib/core/YiiXLBase.php:767: warning: unable to resolve link to `CWebApplication::getUser' for \link command
/usr/local/yiixl/lib/core/YiiXLBase.php:211: warning: argument 'mixed' of command @param is not found in the argument list of YiiXLBase::in()
/usr/local/yiixl/lib/core/YiiXLBase.php:375: warning: argument 'mixed' of command @param is not found in the argument list of YiiXLBase::makeArray()
/usr/local/yiixl/lib/core/YiiXLBase.php:391: warning: argument 'mixed' of command @param is not found in the argument list of YiiXLBase::makePath()
/usr/local/yiixl/lib/core/YiiXLBase.php:188: warning: argument 'mixed' of command @param is not found in the argument list of YiiXLBase::nvl()
/usr/local/yiixl/lib/core/YiiXLBase.php:258: warning: argument 'array' of command @param is not found in the argument list of YiiXLBase::o(&$options=array(),$key,$defaultValue=null,$unsetValue=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:258: warning: argument 'integer' of command @param is not found in the argument list of YiiXLBase::o(&$options=array(),$key,$defaultValue=null,$unsetValue=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:258: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::o(&$options=array(),$key,$defaultValue=null,$unsetValue=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:258: warning: argument 'integer' of command @param is not found in the argument list of YiiXLBase::o(&$options=array(),$key,$defaultValue=null,$unsetValue=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:258: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::o(&$options=array(),$key,$defaultValue=null,$unsetValue=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:258: warning: argument 'mixed' of command @param is not found in the argument list of YiiXLBase::o(&$options=array(),$key,$defaultValue=null,$unsetValue=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:258: warning: argument 'boolean' of command @param is not found in the argument list of YiiXLBase::o(&$options=array(),$key,$defaultValue=null,$unsetValue=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:267: warning: Found unknown command `\access'
/usr/local/yiixl/lib/core/YiiXLBase.php:258: warning: The following parameters of YiiXLBase::o(&$options=array(),$key,$defaultValue=null,$unsetValue=false) are not documented:
parameter 'options'
parameter 'key'
parameter 'defaultValue'
parameter 'unsetValue'
/usr/local/yiixl/lib/core/YiiXLBase.php:308: warning: argument 'array' of command @param is not found in the argument list of YiiXLBase::oo(&$options=array(),$key,$subKey,$defaultValue=null,$unsetValue=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:308: warning: argument 'integer' of command @param is not found in the argument list of YiiXLBase::oo(&$options=array(),$key,$subKey,$defaultValue=null,$unsetValue=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:308: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::oo(&$options=array(),$key,$subKey,$defaultValue=null,$unsetValue=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:308: warning: argument 'integer' of command @param is not found in the argument list of YiiXLBase::oo(&$options=array(),$key,$subKey,$defaultValue=null,$unsetValue=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:308: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::oo(&$options=array(),$key,$subKey,$defaultValue=null,$unsetValue=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:308: warning: argument 'mixed' of command @param is not found in the argument list of YiiXLBase::oo(&$options=array(),$key,$subKey,$defaultValue=null,$unsetValue=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:308: warning: argument 'boolean' of command @param is not found in the argument list of YiiXLBase::oo(&$options=array(),$key,$subKey,$defaultValue=null,$unsetValue=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:308: warning: The following parameters of YiiXLBase::oo(&$options=array(),$key,$subKey,$defaultValue=null,$unsetValue=false) are not documented:
parameter 'options'
parameter 'key'
parameter 'subKey'
parameter 'defaultValue'
parameter 'unsetValue'
/usr/local/yiixl/lib/core/YiiXLBase.php:887: warning: unable to resolve link to `CHttpRequest::redirect' for \link command
/usr/local/yiixl/lib/core/YiiXLBase.php:887: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::redirect($url,$terminate=true,$statusCode=302)
/usr/local/yiixl/lib/core/YiiXLBase.php:887: warning: argument 'boolean' of command @param is not found in the argument list of YiiXLBase::redirect($url,$terminate=true,$statusCode=302)
/usr/local/yiixl/lib/core/YiiXLBase.php:887: warning: argument 'int' of command @param is not found in the argument list of YiiXLBase::redirect($url,$terminate=true,$statusCode=302)
/usr/local/yiixl/lib/core/YiiXLBase.php:887: warning: The following parameters of YiiXLBase::redirect($url,$terminate=true,$statusCode=302) are not documented:
parameter 'url'
parameter 'terminate'
parameter 'statusCode'
/usr/local/yiixl/lib/core/YiiXLBase.php:630: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::registerCss($css,$options=array())
/usr/local/yiixl/lib/core/YiiXLBase.php:630: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::registerCss($css,$options=array())
/usr/local/yiixl/lib/core/YiiXLBase.php:630: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::registerCss($css,$options=array())
/usr/local/yiixl/lib/core/YiiXLBase.php:635: warning: Found unknown command `\access'
/usr/local/yiixl/lib/core/YiiXLBase.php:630: warning: The following parameters of YiiXLBase::registerCss($css,$options=array()) are not documented:
parameter 'css'
parameter 'options'
/usr/local/yiixl/lib/core/YiiXLBase.php:574: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::registerCssFile($url,$media='',$fromPublished=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:574: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::registerCssFile($url,$media='',$fromPublished=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:574: warning: argument 'boolean' of command @param is not found in the argument list of YiiXLBase::registerCssFile($url,$media='',$fromPublished=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:579: warning: Found unknown command `\access'
/usr/local/yiixl/lib/core/YiiXLBase.php:574: warning: The following parameters of YiiXLBase::registerCssFile($url,$media='',$fromPublished=false) are not documented:
parameter 'url'
parameter 'media'
parameter 'fromPublished'
/usr/local/yiixl/lib/core/YiiXLBase.php:705: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::registerMetaTag($sContent,$sName=null,$sHttpEquiv=null,$options=array())
/usr/local/yiixl/lib/core/YiiXLBase.php:705: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::registerMetaTag($sContent,$sName=null,$sHttpEquiv=null,$options=array())
/usr/local/yiixl/lib/core/YiiXLBase.php:705: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::registerMetaTag($sContent,$sName=null,$sHttpEquiv=null,$options=array())
/usr/local/yiixl/lib/core/YiiXLBase.php:705: warning: argument 'array' of command @param is not found in the argument list of YiiXLBase::registerMetaTag($sContent,$sName=null,$sHttpEquiv=null,$options=array())
/usr/local/yiixl/lib/core/YiiXLBase.php:711: warning: Found unknown command `\access'
/usr/local/yiixl/lib/core/YiiXLBase.php:705: warning: The following parameters of YiiXLBase::registerMetaTag($sContent,$sName=null,$sHttpEquiv=null,$options=array()) are not documented:
parameter 'sContent'
parameter 'sName'
parameter 'sHttpEquiv'
parameter 'options'
/usr/local/yiixl/lib/core/YiiXLBase.php:663: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::registerScript($sId=null,$sScript,$ePosition=CClientScript::POS_READY)
/usr/local/yiixl/lib/core/YiiXLBase.php:663: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::registerScript($sId=null,$sScript,$ePosition=CClientScript::POS_READY)
/usr/local/yiixl/lib/core/YiiXLBase.php:663: warning: argument 'integer' of command @param is not found in the argument list of YiiXLBase::registerScript($sId=null,$sScript,$ePosition=CClientScript::POS_READY)
/usr/local/yiixl/lib/core/YiiXLBase.php:675: warning: Found unknown command `\access'
/usr/local/yiixl/lib/core/YiiXLBase.php:663: warning: The following parameters of YiiXLBase::registerScript($sId=null,$sScript,$ePosition=CClientScript::POS_READY) are not documented:
parameter 'sId'
parameter 'sScript'
parameter 'ePosition'
/usr/local/yiixl/lib/core/YiiXLBase.php:528: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::registerScriptFile($url,$ePosition=self::POS_HEAD,$fromPublished=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:528: warning: argument 'integer' of command @param is not found in the argument list of YiiXLBase::registerScriptFile($url,$ePosition=self::POS_HEAD,$fromPublished=false)
/usr/local/yiixl/lib/core/YiiXLBase.php:537: warning: Found unknown command `\access'
/usr/local/yiixl/lib/core/YiiXLBase.php:528: warning: The following parameters of YiiXLBase::registerScriptFile($url,$ePosition=self::POS_HEAD,$fromPublished=false) are not documented:
parameter 'url'
parameter 'ePosition'
parameter 'fromPublished'
/usr/local/yiixl/lib/core/YiiXLBase.php:323: warning: unable to resolve link to `CXLHelperBase::so' for \link command
/usr/local/yiixl/lib/core/YiiXLBase.php:323: warning: argument 'array' of command @param is not found in the argument list of YiiXLBase::setOption(array &$options,$key,$value=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:323: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::setOption(array &$options,$key,$value=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:323: warning: argument 'mixed' of command @param is not found in the argument list of YiiXLBase::setOption(array &$options,$key,$value=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:323: warning: The following parameters of YiiXLBase::setOption(array &$options,$key,$value=null) are not documented:
parameter 'options'
parameter 'key'
parameter 'value'
/usr/local/yiixl/lib/core/YiiXLBase.php:1155: warning: argument 'CXLComponent' of command @param is not found in the argument list of YiiXLBase::smartCall(CXLComponent $object,$method,$parameters=array())
/usr/local/yiixl/lib/core/YiiXLBase.php:1155: warning: argument 'array' of command @param is not found in the argument list of YiiXLBase::smartCall(CXLComponent $object,$method,$parameters=array())
/usr/local/yiixl/lib/core/YiiXLBase.php:1155: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::smartCall(CXLComponent $object,$method,$parameters=array())
/usr/local/yiixl/lib/core/YiiXLBase.php:1155: warning: argument 'array' of command @param is not found in the argument list of YiiXLBase::smartCall(CXLComponent $object,$method,$parameters=array())
/usr/local/yiixl/lib/core/YiiXLBase.php:1155: warning: The following parameters of YiiXLBase::smartCall(CXLComponent $object,$method,$parameters=array()) are not documented:
parameter 'object'
parameter 'method'
parameter 'parameters'
/usr/local/yiixl/lib/core/YiiXLBase.php:1189: warning: argument 'IXLComponent' of command @param is not found in the argument list of YiiXLBase::smartCallStatic(IXLComponent $object,$method,$parameters=array())
/usr/local/yiixl/lib/core/YiiXLBase.php:1189: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::smartCallStatic(IXLComponent $object,$method,$parameters=array())
/usr/local/yiixl/lib/core/YiiXLBase.php:1189: warning: argument 'array' of command @param is not found in the argument list of YiiXLBase::smartCallStatic(IXLComponent $object,$method,$parameters=array())
/usr/local/yiixl/lib/core/YiiXLBase.php:1189: warning: The following parameters of YiiXLBase::smartCallStatic(IXLComponent $object,$method,$parameters=array()) are not documented:
parameter 'object'
parameter 'method'
parameter 'parameters'
/usr/local/yiixl/lib/core/YiiXLBase.php:337: warning: argument 'array' of command @param is not found in the argument list of YiiXLBase::so(array &$options,$key,$value=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:337: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::so(array &$options,$key,$value=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:337: warning: argument 'mixed' of command @param is not found in the argument list of YiiXLBase::so(array &$options,$key,$value=null)
/usr/local/yiixl/lib/core/YiiXLBase.php:337: warning: The following parameters of YiiXLBase::so(array &$options,$key,$value=null) are not documented:
parameter 'options'
parameter 'key'
parameter 'value'
/usr/local/yiixl/lib/core/YiiXLBase.php:350: warning: unable to resolve link to `CXLHelperBase::unsetOption' for \link command
/usr/local/yiixl/lib/core/YiiXLBase.php:350: warning: argument 'array' of command @param is not found in the argument list of YiiXLBase::unsetOption(array &$options,$key)
/usr/local/yiixl/lib/core/YiiXLBase.php:350: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::unsetOption(array &$options,$key)
/usr/local/yiixl/lib/core/YiiXLBase.php:350: warning: The following parameters of YiiXLBase::unsetOption(array &$options,$key) are not documented:
parameter 'options'
parameter 'key'
/usr/local/yiixl/lib/core/YiiXLBase.php:362: warning: argument 'array' of command @param is not found in the argument list of YiiXLBase::uo(array &$options,$key)
/usr/local/yiixl/lib/core/YiiXLBase.php:362: warning: argument 'string' of command @param is not found in the argument list of YiiXLBase::uo(array &$options,$key)
/usr/local/yiixl/lib/core/YiiXLBase.php:362: warning: The following parameters of YiiXLBase::uo(array &$options,$key) are not documented:
parameter 'options'
parameter 'key'
/usr/local/yiixl/lib/core/YiiXLBase.php:83: warning: Found unknown command `\staticvar'
/usr/local/yiixl/lib/core/YiiXLBase.php:99: warning: Found unknown command `\staticvar'
/usr/local/yiixl/lib/core/YiiXLBase.php:59: warning: Found unknown command `\staticvar'
/usr/local/yiixl/lib/core/YiiXLBase.php:49: warning: Found unknown command `\staticvar'
/usr/local/yiixl/lib/core/YiiXLBase.php:69: warning: Found unknown command `\staticvar'
/usr/local/yiixl/lib/core/YiiXLBase.php:54: warning: Found unknown command `\staticvar'
/usr/local/yiixl/lib/core/YiiXLBase.php:64: warning: Found unknown command `\staticvar'
/usr/local/yiixl/lib/core/YiiXLBase.php:78: warning: Found unknown command `\staticvar'
/usr/local/yiixl/lib/core/YiiXLBase.php:73: warning: Found unknown command `\staticvar'
/usr/local/yiixl/lib/core/YiiXL.php:5: warning: unable to resolve link to `http://www.pogostick.com' for \link command
/usr/local/yiixl/lib/core/YiiXL.php:6: warning: Illegal command license as part of a \link
/usr/local/yiixl/lib/core/YiiXL.php:7: warning: Illegal command author as part of a \link
/usr/local/yiixl/lib/core/YiiXL.php:9: warning: Illegal command since as part of a \link
/usr/local/yiixl/lib/core/YiiXL.php:12: warning: Illegal command subpackage as part of a \link
/usr/local/yiixl/lib/core/YiiXL.php:14: warning: Illegal command filesource as part of a \link
/usr/local/yiixl/lib/core/YiiXL.php:19: warning: Illegal command link as part of a \link
/usr/local/yiixl/lib/core/YiiXL.php:20: warning: Illegal command license as part of a \link
/usr/local/yiixl/lib/core/YiiXL.php:21: warning: Illegal command author as part of a \link
/usr/local/yiixl/lib/core/YiiXL.php:23: warning: Illegal command since as part of a \link
/usr/local/yiixl/lib/core/YiiXL.php:26: warning: Illegal command subpackage as part of a \link
/usr/local/yiixl/lib/core/YiiXL.php:28: warning: Illegal command filesource as part of a \link
/usr/local/yiixl/lib/core/YiiXL.php:33: warning: Illegal command link as part of a \link
/usr/local/yiixl/lib/core/YiiXL.php:34: warning: Illegal command license as part of a \link
/usr/local/yiixl/lib/core/YiiXL.php:35: warning: Illegal command author as part of a \link