This repository was archived by the owner on Jun 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstructure.xml
More file actions
1984 lines (1984 loc) · 95.9 KB
/
structure.xml
File metadata and controls
1984 lines (1984 loc) · 95.9 KB
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
<?xml version="1.0" encoding="utf-8"?>
<project version="2.0.0a12" title="">
<file path="Tag.php" hash="5306ddbb0d2ae37c5cb0ef8604c0ebb1" package="Default">
<class final="false" abstract="false" namespace="JohnVanOrange\core" line="4" package="Default">
<extends>\JohnVanOrange\core\Base</extends>
<name>Tag</name>
<full_name>\JohnVanOrange\core\Tag</full_name>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="8" package="Default">
<name>__construct</name>
<full_name>__construct</full_name>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="25" package="Default">
<name>add</name>
<full_name>add</full_name>
<docblock line="13">
<description>Add tag</description>
<long-description><p>Add tags to images</p></long-description>
<tag line="13" name="api" description=""/>
<tag line="13" name="param" description="The tag value to be added to the image." type="string" variable="$name">
<type by_reference="false">string</type>
</tag>
<tag line="13" name="param" description="6-digit image ID." type="string" variable="$image">
<type by_reference="false">string</type>
</tag>
<tag line="13" name="param" description="Session ID that is provided when logged in. This is also set as a cookie." type="string" variable="$sid">
<type by_reference="false">string</type>
</tag>
</docblock>
<argument line="25">
<name>$name</name>
<default/>
<type/>
</argument>
<argument line="25">
<name>$image</name>
<default/>
<type/>
</argument>
<argument line="25">
<name>$sid</name>
<default>NULL</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="68" package="Default">
<name>get</name>
<full_name>get</full_name>
<docblock line="57">
<description>Get tags</description>
<long-description><p>List the tags for an image</p></long-description>
<tag line="57" name="api" description=""/>
<tag line="57" name="param" description="The 6-digit UID for an image. Also can accept a tag basename if the search_by parameter is set to basename." type="string" variable="$value">
<type by_reference="false">string</type>
</tag>
<tag line="57" name="param" description="Valid values are 'image' or 'basename'." type="string" variable="$search_by">
<type by_reference="false">string</type>
</tag>
</docblock>
<argument line="68">
<name>$value</name>
<default/>
<type/>
</argument>
<argument line="68">
<name>$search_by</name>
<default>'image'</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="109" package="Default">
<name>all</name>
<full_name>all</full_name>
<docblock line="99">
<description>All images with tag</description>
<long-description><p>Get all images that have a certain tag.</p></long-description>
<tag line="99" name="api" description=""/>
<tag line="99" name="param" description="The basename value for a particular tag." type="string" variable="$tag">
<type by_reference="false">string</type>
</tag>
</docblock>
<argument line="109">
<name>$tag</name>
<default/>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="136" package="Default">
<name>suggest</name>
<full_name>suggest</full_name>
<docblock line="126">
<description>Tag suggest</description>
<long-description><p>This is used to find suggested tags by giving it parts of text, and it will return the 10 closest matches for existing tags.</p></long-description>
<tag line="126" name="api" description=""/>
<tag line="126" name="param" description="Partial text that is used to query for existing tag names." type="string" variable="$term">
<type by_reference="false">string</type>
</tag>
</docblock>
<argument line="136">
<name>$term</name>
<default/>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="156" package="Default">
<name>top</name>
<full_name>top</full_name>
<docblock line="148">
<description>Top tags</description>
<long-description><p>Returns the top 200 used tags and a count of the number of times they are used.</p></long-description>
<tag line="148" name="api" description=""/>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="181" package="Default">
<name>remove</name>
<full_name>remove</full_name>
<docblock line="169">
<description>Remove tag</description>
<long-description><p>Removes a tag from an image. Must be an admin to access.</p></long-description>
<tag line="169" name="api" description=""/>
<tag line="169" name="param" description="Tag id." type="int" variable="$id">
<type by_reference="false">int</type>
</tag>
<tag line="169" name="param" description="6-digit image id." type="string" variable="$uid">
<type by_reference="false">string</type>
</tag>
<tag line="169" name="param" description="Session ID that is provided when logged in. This is also set as a cookie. If sid cookie headers are sent, this value is not required." type="string" variable="$sid">
<type by_reference="false">string</type>
</tag>
</docblock>
<argument line="181">
<name>$id</name>
<default/>
<type/>
</argument>
<argument line="181">
<name>$uid</name>
<default/>
<type/>
</argument>
<argument line="181">
<name>$sid</name>
<default>NULL</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="208" package="Default">
<name>removeAll</name>
<full_name>removeAll</full_name>
<docblock line="197">
<description>Remove tag from all images</description>
<long-description><p>Completely removes a specific tag from all images it is on. Must be an admin to access.</p></long-description>
<tag line="197" name="api" description=""/>
<tag line="197" name="param" description="Tag id." type="int" variable="$id">
<type by_reference="false">int</type>
</tag>
<tag line="197" name="param" description="Session ID that is provided when logged in. This is also set as a cookie. If sid cookie headers are sent, this value is not required." type="string" variable="$sid">
<type by_reference="false">string</type>
</tag>
</docblock>
<argument line="208">
<name>$id</name>
<default/>
<type/>
</argument>
<argument line="208">
<name>$sid</name>
<default>NULL</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="239" package="Default">
<name>rename</name>
<full_name>rename</full_name>
<docblock line="227">
<description>Rename tag</description>
<long-description><p>Changes the display name of a tag. The basename will not change. Must be admin to access.</p></long-description>
<tag line="227" name="api" description=""/>
<tag line="227" name="param" description="Tag id." type="int" variable="$id">
<type by_reference="false">int</type>
</tag>
<tag line="227" name="param" description="New tag name." type="string" variable="$name">
<type by_reference="false">string</type>
</tag>
<tag line="227" name="param" description="Session ID that is provided when logged in. This is also set as a cookie. If sid cookie headers are sent, this value is not required." type="string" variable="$sid">
<type by_reference="false">string</type>
</tag>
</docblock>
<argument line="239">
<name>$id</name>
<default/>
<type/>
</argument>
<argument line="239">
<name>$name</name>
<default/>
<type/>
</argument>
<argument line="239">
<name>$sid</name>
<default>NULL</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="281" package="Default">
<name>report</name>
<full_name>report</full_name>
<docblock line="269">
<description>Report tag</description>
<long-description><p>Allows reporting of problematic tags so they may undergo review.</p></long-description>
<tag line="269" name="api" description=""/>
<tag line="269" name="param" description="The numeric id of an tag." type="string" variable="$tag_id">
<type by_reference="false">string</type>
</tag>
<tag line="269" name="param" description="Number value representing the reason type which can be found in report/all" type="int" variable="$type">
<type by_reference="false">int</type>
</tag>
<tag line="269" name="param" description="Session ID that is provided when logged in. This is also set as a cookie." type="string" variable="$sid">
<type by_reference="false">string</type>
</tag>
</docblock>
<argument line="281">
<name>$tag_id</name>
<default/>
<type/>
</argument>
<argument line="281">
<name>$type</name>
<default/>
<type/>
</argument>
<argument line="281">
<name>$sid</name>
<default>NULL</default>
<type/>
</argument>
</method>
</class>
<markers>
<todo line="288">need a way to retrieve tag data by tag_id</todo>
</markers>
<parse_markers>
<error line="0" code="50007">No page-level DocBlock was found in file Tag.php</error>
<error line="4" code="50000">No DocBlock was found for \JohnVanOrange\core\Tag</error>
<error line="6" code="50018">No DocBlock was found for property $res</error>
<error line="8" code="50010">No DocBlock was found for method __construct()</error>
<error line="254" code="50010">No DocBlock was found for method addtoList()</error>
</parse_markers>
</file>
<file path="S3.php" hash="564ca26f9ac170b1f075d8851b37e73d" package="Default">
<class final="false" abstract="false" namespace="JohnVanOrange\core" line="6" package="Default">
<extends>\S3</extends>
<name>S3</name>
<full_name>\JohnVanOrange\core\S3</full_name>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="10" package="Default">
<name>__construct</name>
<full_name>__construct</full_name>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="19" package="Default">
<name>get_bucket</name>
<full_name>get_bucket</full_name>
</method>
</class>
<parse_markers>
<error line="0" code="50007">No page-level DocBlock was found in file S3.php</error>
<error line="6" code="50000">No DocBlock was found for \JohnVanOrange\core\S3</error>
<error line="8" code="50018">No DocBlock was found for property $db</error>
<error line="8" code="50018">No DocBlock was found for property $data</error>
<error line="10" code="50010">No DocBlock was found for method __construct()</error>
<error line="19" code="50010">No DocBlock was found for method get_bucket()</error>
</parse_markers>
</file>
<file path="Locale.php" hash="1c13e4d1a5e9cc178005af847b0fd8be" package="Default">
<class final="false" abstract="false" namespace="JohnVanOrange\core" line="4" package="Default">
<extends/>
<name>Locale</name>
<full_name>\JohnVanOrange\core\Locale</full_name>
<method final="false" abstract="false" static="true" visibility="public" namespace="JohnVanOrange\core" line="6" package="Default">
<name>get</name>
<full_name>get</full_name>
</method>
</class>
<parse_markers>
<error line="0" code="50007">No page-level DocBlock was found in file Locale.php</error>
<error line="4" code="50000">No DocBlock was found for \JohnVanOrange\core\Locale</error>
<error line="6" code="50010">No DocBlock was found for method get()</error>
</parse_markers>
</file>
<file path="ImageFilter/Random.php" hash="49af97d10766565ed406d9d865d9b50c" package="Default">
<class final="false" abstract="false" namespace="JohnVanOrange\core\ImageFilter" line="4" package="Default">
<extends>\JohnVanOrange\core\ImageFilter\Base</extends>
<name>Random</name>
<full_name>\JohnVanOrange\core\ImageFilter\Random</full_name>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core\ImageFilter" line="8" package="Default">
<name>__construct</name>
<full_name>__construct</full_name>
<argument line="8">
<name>$options</name>
<default>NULL</default>
<type/>
</argument>
<argument line="8">
<name>$count</name>
<default>1</default>
<type/>
</argument>
</method>
</class>
<parse_markers>
<error line="0" code="50007">No page-level DocBlock was found in file ImageFilter/Random.php</error>
<error line="4" code="50000">No DocBlock was found for \JohnVanOrange\core\ImageFilter\Random</error>
<error line="6" code="50018">No DocBlock was found for property $count</error>
<error line="8" code="50010">No DocBlock was found for method __construct()</error>
<error line="13" code="50010">No DocBlock was found for method sort()</error>
<error line="17" code="50010">No DocBlock was found for method limit_process()</error>
</parse_markers>
</file>
<file path="ImageFilter/Base.php" hash="ba4abf7d84cc65be58e10f0c01297866" package="Default">
<class final="false" abstract="false" namespace="JohnVanOrange\core\ImageFilter" line="4" package="Default">
<extends>\Peyote\Select</extends>
<name>Base</name>
<full_name>\JohnVanOrange\core\ImageFilter\Base</full_name>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core\ImageFilter" line="8" package="Default">
<name>__construct</name>
<full_name>__construct</full_name>
<argument line="8">
<name>$options</name>
<default>NULL</default>
<type/>
</argument>
</method>
</class>
<markers>
<todo line="47">add override to specify columns</todo>
<todo line="52">include an override where any image can be displayed</todo>
</markers>
<parse_markers>
<error line="0" code="50007">No page-level DocBlock was found in file ImageFilter/Base.php</error>
<error line="4" code="50000">No DocBlock was found for \JohnVanOrange\core\ImageFilter\Base</error>
<error line="6" code="50018">No DocBlock was found for property $options</error>
<error line="8" code="50010">No DocBlock was found for method __construct()</error>
<error line="41" code="50010">No DocBlock was found for method join_process()</error>
<error line="46" code="50010">No DocBlock was found for method columns_process()</error>
<error line="51" code="50010">No DocBlock was found for method display()</error>
<error line="56" code="50010">No DocBlock was found for method sort()</error>
<error line="60" code="50010">No DocBlock was found for method limit_process()</error>
<error line="64" code="50010">No DocBlock was found for method format()</error>
<error line="68" code="50010">No DocBlock was found for method animated()</error>
<error line="72" code="50010">No DocBlock was found for method nsfw()</error>
<error line="76" code="50010">No DocBlock was found for method approved()</error>
<error line="80" code="50010">No DocBlock was found for method uploader()</error>
</parse_markers>
</file>
<file path="Media.php" hash="d7860c39f94992ba3a52fd248119a44b" package="Default">
<class final="false" abstract="false" namespace="JohnVanOrange\core" line="4" package="Default">
<extends>\JohnVanOrange\core\Base</extends>
<name>Media</name>
<full_name>\JohnVanOrange\core\Media</full_name>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="6" package="Default">
<name>__construct</name>
<full_name>__construct</full_name>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="19" package="Default">
<name>add</name>
<full_name>add</full_name>
<docblock line="10">
<description>Add media</description>
<long-description><p>Add media associated with an image.</p></long-description>
<tag line="10" name="param" description="uid The 6-digit id of an image." type="string" variable="$uid">
<type by_reference="false">string</type>
</tag>
<tag line="10" name="param" description="file Path to the image file." type="string" variable="$file">
<type by_reference="false">string</type>
</tag>
<tag line="10" name="param" description="type Specify if image is primary or thumb." type="string" variable="$type">
<type by_reference="false">string</type>
</tag>
</docblock>
<argument line="19">
<name>$uid</name>
<default/>
<type/>
</argument>
<argument line="19">
<name>$file</name>
<default/>
<type/>
</argument>
<argument line="19">
<name>$type</name>
<default>'primary'</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="63" package="Default">
<name>get</name>
<full_name>get</full_name>
<docblock line="55">
<description>Get media</description>
<long-description><p>Retrieve media associated with an image.</p></long-description>
<tag line="55" name="param" description="uid The 6-digit id of an image." type="string" variable="$uid">
<type by_reference="false">string</type>
</tag>
</docblock>
<argument line="63">
<name>$uid</name>
<default/>
<type/>
</argument>
</method>
</class>
<parse_markers>
<error line="0" code="50007">No page-level DocBlock was found in file Media.php</error>
<error line="4" code="50000">No DocBlock was found for \JohnVanOrange\core\Media</error>
<error line="6" code="50010">No DocBlock was found for method __construct()</error>
<error line="33" code="50010">No DocBlock was found for method width()</error>
<error line="38" code="50010">No DocBlock was found for method height()</error>
<error line="43" code="50010">No DocBlock was found for method size()</error>
<error line="47" code="50010">No DocBlock was found for method hash()</error>
<error line="51" code="50010">No DocBlock was found for method format()</error>
</parse_markers>
</file>
<file path="Blacklist.php" hash="f16b67ad849518d09aa4aab9a08bce59" package="Default">
<class final="false" abstract="false" namespace="JohnVanOrange\core" line="4" package="Default">
<extends>\JohnVanOrange\core\Base</extends>
<name>Blacklist</name>
<full_name>\JohnVanOrange\core\Blacklist</full_name>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="6" package="Default">
<name>__construct</name>
<full_name>__construct</full_name>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="21" package="Default">
<name>add</name>
<full_name>add</full_name>
<docblock line="10">
<description>Add to blacklist</description>
<long-description><p>Add tag name to blacklist. Must be admin to access.</p></long-description>
<tag line="10" name="param" description="The tag value to be added to the blacklist." type="string" variable="$name">
<type by_reference="false">string</type>
</tag>
<tag line="10" name="param" description="Session ID that is provided when logged in. This is also set as a cookie." type="string" variable="$sid">
<type by_reference="false">string</type>
</tag>
<tag line="10" name="return" description="" type="array">
<type by_reference="false">array</type>
</tag>
</docblock>
<argument line="21">
<name>$name</name>
<default/>
<type/>
</argument>
<argument line="21">
<name>$sid</name>
<default>NULL</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="47" package="Default">
<name>check</name>
<full_name>check</full_name>
<docblock line="37">
<description>Check blacklist</description>
<long-description><p>Checks to see if tag name is listed on the blacklist.</p></long-description>
<tag line="37" name="param" description="The tag value to be added to the blacklist." type="string" variable="$name">
<type by_reference="false">string</type>
</tag>
<tag line="37" name="return" description="" type="bool">
<type by_reference="false">bool</type>
</tag>
</docblock>
<argument line="47">
<name>$name</name>
<default/>
<type/>
</argument>
</method>
</class>
<parse_markers>
<error line="0" code="50007">No page-level DocBlock was found in file Blacklist.php</error>
<error line="4" code="50000">No DocBlock was found for \JohnVanOrange\core\Blacklist</error>
<error line="6" code="50010">No DocBlock was found for method __construct()</error>
</parse_markers>
</file>
<file path="API.php" hash="a05bc46e2eb2e6b680caef86fe58bc79" package="Default">
<class final="false" abstract="false" namespace="JohnVanOrange\core" line="4" package="Default">
<extends/>
<name>API</name>
<full_name>\JohnVanOrange\core\API</full_name>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="6" package="Default">
<name>__construct</name>
<full_name>__construct</full_name>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="18" package="Default">
<name>call</name>
<full_name>call</full_name>
<argument line="18">
<name>$method</name>
<default/>
<type/>
</argument>
<argument line="18">
<name>$params</name>
<default>array()</default>
<type/>
</argument>
</method>
</class>
<parse_markers>
<error line="0" code="50007">No page-level DocBlock was found in file API.php</error>
<error line="4" code="50000">No DocBlock was found for \JohnVanOrange\core\API</error>
<error line="6" code="50010">No DocBlock was found for method __construct()</error>
<error line="18" code="50010">No DocBlock was found for method call()</error>
</parse_markers>
</file>
<file path="Ads.php" hash="e8175741a43192c5d28011afde62438f" package="Default">
<class final="false" abstract="false" namespace="JohnVanOrange\core" line="4" package="Default">
<extends>\JohnVanOrange\core\Base</extends>
<name>Ads</name>
<full_name>\JohnVanOrange\core\Ads</full_name>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="6" package="Default">
<name>__construct</name>
<full_name>__construct</full_name>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="18" package="Default">
<name>get</name>
<full_name>get</full_name>
<docblock line="10">
<description>Get ad</description>
<long-description><p>Get a random ad.</p></long-description>
<tag line="10" name="api" description=""/>
</docblock>
</method>
</class>
<parse_markers>
<error line="0" code="50007">No page-level DocBlock was found in file Ads.php</error>
<error line="4" code="50000">No DocBlock was found for \JohnVanOrange\core\Ads</error>
<error line="6" code="50010">No DocBlock was found for method __construct()</error>
</parse_markers>
</file>
<file path="Mail.php" hash="0b0e0a8f17c212ba22a39eae59715381" package="Default">
<class final="false" abstract="false" namespace="JohnVanOrange\core" line="4" package="Default">
<extends>\Swift_Message</extends>
<name>Mail</name>
<full_name>\JohnVanOrange\core\Mail</full_name>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="8" package="Default">
<name>__construct</name>
<full_name>__construct</full_name>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="14" package="Default">
<name>__destruct</name>
<full_name>__destruct</full_name>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="17" package="Default">
<name>sendMessage</name>
<full_name>sendMessage</full_name>
<argument line="17">
<name>$to</name>
<default/>
<type/>
</argument>
<argument line="17">
<name>$subject</name>
<default/>
<type/>
</argument>
<argument line="17">
<name>$template</name>
<default/>
<type/>
</argument>
<argument line="17">
<name>$data</name>
<default/>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="37" package="Default">
<name>sendAdminMessage</name>
<full_name>sendAdminMessage</full_name>
<argument line="37">
<name>$subject</name>
<default/>
<type/>
</argument>
<argument line="37">
<name>$template</name>
<default/>
<type/>
</argument>
<argument line="37">
<name>$data</name>
<default/>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="42" package="Default">
<name>setTo</name>
<full_name>setTo</full_name>
<argument line="42">
<name>$to</name>
<default/>
<type/>
</argument>
<argument line="42">
<name>$name</name>
<default>NULL</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="46" package="Default">
<name>setFrom</name>
<full_name>setFrom</full_name>
<argument line="46">
<name>$from</name>
<default/>
<type/>
</argument>
<argument line="46">
<name>$name</name>
<default>NULL</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="50" package="Default">
<name>setSubject</name>
<full_name>setSubject</full_name>
<argument line="50">
<name>$subject</name>
<default/>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="54" package="Default">
<name>setBody</name>
<full_name>setBody</full_name>
<argument line="54">
<name>$body</name>
<default/>
<type/>
</argument>
<argument line="54">
<name>$contentType</name>
<default>NULL</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="58" package="Default">
<name>send</name>
<full_name>send</full_name>
</method>
</class>
<parse_markers>
<error line="0" code="50007">No page-level DocBlock was found in file Mail.php</error>
<error line="4" code="50000">No DocBlock was found for \JohnVanOrange\core\Mail</error>
<error line="6" code="50018">No DocBlock was found for property $mailer</error>
<error line="6" code="50018">No DocBlock was found for property $message</error>
<error line="8" code="50010">No DocBlock was found for method __construct()</error>
<error line="14" code="50010">No DocBlock was found for method __destruct()</error>
<error line="17" code="50010">No DocBlock was found for method sendMessage()</error>
<error line="37" code="50010">No DocBlock was found for method sendAdminMessage()</error>
<error line="42" code="50010">No DocBlock was found for method setTo()</error>
<error line="46" code="50010">No DocBlock was found for method setFrom()</error>
<error line="50" code="50010">No DocBlock was found for method setSubject()</error>
<error line="54" code="50010">No DocBlock was found for method setBody()</error>
<error line="58" code="50010">No DocBlock was found for method send()</error>
<error line="62" code="50010">No DocBlock was found for method loadTemplate()</error>
</parse_markers>
</file>
<file path="DB.php" hash="4716d4c53d7f0b166e266560dbc133f8" package="Default">
<class final="false" abstract="false" namespace="JohnVanOrange\core" line="6" package="Default">
<extends>\PDO</extends>
<name>DB</name>
<full_name>\JohnVanOrange\core\DB</full_name>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="10" package="Default">
<name>__construct</name>
<full_name>__construct</full_name>
<argument line="10">
<name>$dsn</name>
<default/>
<type/>
</argument>
<argument line="10">
<name>$user</name>
<default/>
<type/>
</argument>
<argument line="10">
<name>$pass</name>
<default/>
<type/>
</argument>
<argument line="10">
<name>$options</name>
<default>array()</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="14" package="Default">
<name>__destruct</name>
<full_name>__destruct</full_name>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="17" package="Default">
<name>fetch</name>
<full_name>fetch</full_name>
<argument line="17">
<name>$query</name>
<default/>
<type>\Peyote\Query</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="25" package="Default">
<name>exec</name>
<full_name>exec</full_name>
<argument line="25">
<name>$sql</name>
<default/>
<type/>
</argument>
</method>
</class>
<parse_markers>
<error line="0" code="50007">No page-level DocBlock was found in file DB.php</error>
<error line="6" code="50000">No DocBlock was found for \JohnVanOrange\core\DB</error>
<error line="8" code="50018">No DocBlock was found for property $dsn</error>
<error line="8" code="50018">No DocBlock was found for property $user</error>
<error line="8" code="50018">No DocBlock was found for property $pass</error>
<error line="8" code="50018">No DocBlock was found for property $dboptions</error>
<error line="8" code="50018">No DocBlock was found for property $setup</error>
<error line="10" code="50010">No DocBlock was found for method __construct()</error>
<error line="14" code="50010">No DocBlock was found for method __destruct()</error>
<error line="17" code="50010">No DocBlock was found for method fetch()</error>
<error line="25" code="50010">No DocBlock was found for method exec()</error>
<error line="30" code="50010">No DocBlock was found for method setup()</error>
</parse_markers>
</file>
<file path="Resource.php" hash="2e0daf4c4c655a6dfd3c29ee70ef42c0" package="Default">
<class final="false" abstract="false" namespace="JohnVanOrange\core" line="4" package="Default">
<extends>\JohnVanOrange\core\Base</extends>
<name>Resource</name>
<full_name>\JohnVanOrange\core\Resource</full_name>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="8" package="Default">
<name>__construct</name>
<full_name>__construct</full_name>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="13" package="Default">
<name>add</name>
<full_name>add</full_name>
<argument line="13">
<name>$type</name>
<default/>
<type/>
</argument>
<argument line="13">
<name>$image</name>
<default>NULL</default>
<type/>
</argument>
<argument line="13">
<name>$sid</name>
<default>NULL</default>
<type/>
</argument>
<argument line="13">
<name>$value</name>
<default>NULL</default>
<type/>
</argument>
<argument line="13">
<name>$public</name>
<default>FALSE</default>
<type/>
</argument>
<argument line="13">
<name>$tag_id</name>
<default>NULL</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="41" package="Default">
<name>merge</name>
<full_name>merge</full_name>
<argument line="41">
<name>$to</name>
<default/>
<type/>
</argument>
<argument line="41">
<name>$from</name>
<default/>
<type/>
</argument>
</method>
</class>
<parse_markers>
<error line="0" code="50007">No page-level DocBlock was found in file Resource.php</error>
<error line="4" code="50000">No DocBlock was found for \JohnVanOrange\core\Resource</error>
<error line="6" code="50018">No DocBlock was found for property $user</error>
<error line="8" code="50010">No DocBlock was found for method __construct()</error>
<error line="13" code="50010">No DocBlock was found for method add()</error>
<error line="41" code="50010">No DocBlock was found for method merge()</error>
</parse_markers>
</file>
<file path="Setting.php" hash="5c0435ac1456317d2c24ef1cb1f051c1" package="Default">
<class final="false" abstract="false" namespace="JohnVanOrange\core" line="4" package="Default">
<extends>\JohnVanOrange\core\Base</extends>
<name>Setting</name>
<full_name>\JohnVanOrange\core\Setting</full_name>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="6" package="Default">
<name>__construct</name>
<full_name>__construct</full_name>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="20" package="Default">
<name>get</name>
<full_name>get</full_name>
<docblock line="10">
<description>Get setting</description>
<long-description><p>Get the value of a setting.</p></long-description>
<tag line="10" name="api" description=""/>
<tag line="10" name="param" description="Setting name" type="string" variable="$name">
<type by_reference="false">string</type>
</tag>
</docblock>
<argument line="20">
<name>$name</name>
<default/>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="39" package="Default">
<name>update</name>
<full_name>update</full_name>
<docblock line="27">
<description>Update setting</description>
<long-description><p>Update the value of a setting. Must be logged on as admin to access this method.</p></long-description>
<tag line="27" name="api" description=""/>
<tag line="27" name="param" description="Setting name" type="string" variable="$name">
<type by_reference="false">string</type>
</tag>
<tag line="27" name="param" description="Setting value" type="string" variable="$value">
<type by_reference="false">string</type>
</tag>
<tag line="27" name="param" description="Session ID that is provided when logged in. This is also set as a cookie. If sid cookie headers are sent, this value is not required." type="string" variable="$sid">
<type by_reference="false">string</type>
</tag>
</docblock>
<argument line="39">
<name>$name</name>
<default/>
<type/>
</argument>
<argument line="39">
<name>$value</name>
<default/>
<type/>
</argument>
<argument line="39">
<name>$sid</name>
<default>NULL</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="59" package="Default">
<name>all</name>
<full_name>all</full_name>
<docblock line="52">
<description>Display all settings</description>
<long-description><p>Display a list of all available settings.</p></long-description>
<tag line="52" name="api" description=""/>
</docblock>
</method>
</class>
<parse_markers>
<error line="0" code="50007">No page-level DocBlock was found in file Setting.php</error>
<error line="4" code="50000">No DocBlock was found for \JohnVanOrange\core\Setting</error>
<error line="6" code="50010">No DocBlock was found for method __construct()</error>
</parse_markers>
</file>
<file path="Image.php" hash="580a573710fefeb58f1418cf8fa9cabe" package="Default">
<class final="false" abstract="false" namespace="JohnVanOrange\core" line="5" package="Default">
<extends>\JohnVanOrange\core\Base</extends>
<name>Image</name>
<full_name>\JohnVanOrange\core\Image</full_name>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="10" package="Default">
<name>__construct</name>
<full_name>__construct</full_name>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="27" package="Default">
<name>like</name>
<full_name>like</full_name>
<docblock line="16">
<description>Like image</description>
<long-description><p>Like an image.</p></long-description>
<tag line="16" name="api" description=""/>
<tag line="16" name="param" description="The 6-digit id of an image." type="string" variable="$image">
<type by_reference="false">string</type>
</tag>
<tag line="16" name="param" description="Session ID that is provided when logged in. This is also set as a cookie. If sid cookie headers are sent, this value is not required." type="string" variable="$sid">
<type by_reference="false">string</type>
</tag>
</docblock>
<argument line="27">
<name>$image</name>
<default></default>
<type/>
</argument>
<argument line="27">
<name>$sid</name>
<default>NULL</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="61" package="Default">
<name>dislike</name>
<full_name>dislike</full_name>
<docblock line="50">
<description>Dislike image</description>
<long-description><p>Dislike an image.</p></long-description>
<tag line="50" name="api" description=""/>
<tag line="50" name="param" description="The 6-digit id of an image." type="string" variable="$image">
<type by_reference="false">string</type>
</tag>
<tag line="50" name="param" description="Session ID that is provided when logged in. This is also set as a cookie. If sid cookie headers are sent, this value is not required." type="string" variable="$sid">
<type by_reference="false">string</type>
</tag>
</docblock>
<argument line="61">
<name>$image</name>
<default></default>
<type/>
</argument>
<argument line="61">
<name>$sid</name>
<default>NULL</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="95" package="Default">
<name>save</name>
<full_name>save</full_name>
<docblock line="84">
<description>Save image</description>
<long-description><p>Save an image for viewing later. Must be logged in to use this method.</p></long-description>
<tag line="84" name="api" description=""/>
<tag line="84" name="param" description="The 6-digit id of an image." type="string" variable="$image">
<type by_reference="false">string</type>
</tag>
<tag line="84" name="param" description="Session ID that is provided when logged in. This is also set as a cookie. If sid cookie headers are sent, this value is not required." type="string" variable="$sid">
<type by_reference="false">string</type>
</tag>
</docblock>
<argument line="95">
<name>$image</name>
<default></default>
<type/>
</argument>
<argument line="95">
<name>$sid</name>
<default>NULL</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="118" package="Default">
<name>unsave</name>
<full_name>unsave</full_name>
<docblock line="107">
<description>Unsave image</description>
<long-description><p>Stop saving a previously saved image. Must be logged in to use this method.</p></long-description>
<tag line="107" name="api" description=""/>
<tag line="107" name="param" description="The 6-digit id of an image." type="string" variable="$image">
<type by_reference="false">string</type>
</tag>
<tag line="107" name="param" description="Session ID that is provided when logged in. This is also set as a cookie. If sid cookie headers are sent, this value is not required." type="string" variable="$sid">
<type by_reference="false">string</type>
</tag>
</docblock>
<argument line="118">
<name>$image</name>
<default></default>
<type/>
</argument>
<argument line="118">
<name>$sid</name>
<default>NULL</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="JohnVanOrange\core" line="146" package="Default">
<name>approve</name>
<full_name>approve</full_name>
<docblock line="134">
<description>Approve image</description>
<long-description><p>Approves an image. If the image was reported, it will resolve all reports. If the image was hidden, it will now be displayed. Must be logged on as admin to access this method.</p></long-description>
<tag line="134" name="api" description=""/>
<tag line="134" name="param" description="The 6-digit id of an image." type="string" variable="$image">
<type by_reference="false">string</type>
</tag>
<tag line="134" name="param" description="Session ID that is provided when logged in. This is also set as a cookie. If sid cookie headers are sent, this value is not required." type="string" variable="$sid">
<type by_reference="false">string</type>
</tag>
<tag line="134" name="param" description="If an image should be marked as approved, but NSFW, setting this to 'true' or '1' will mark the image that way." type="bool" variable="$nsfw">