-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproperties.php
1735 lines (1660 loc) · 46.8 KB
/
properties.php
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
<?php
use Aedart\Contracts\Utils\DataTypes;
return [
/*****************************************************************
* Aware-Of Properties Generator Configuration
****************************************************************/
/*
* Author and email
*/
'author' => 'Alin Eugen Deac',
'email' => 'aedart@gmail.com',
/*
* Location where files are to be generated
*
* E.g. Psr-4 namespace location
*/
'output' => 'packages/',
/*****************************************************************
* Templates location
****************************************************************/
/*
* If none is given, then default twig templates are used
*
* @var string|array
*/
'templates-path' => [
'packages/Support/resources/athenaeum/templates/aware-of/',
'packages/Support/resources/templates/aware-of-component/',
],
/*****************************************************************
* Documentation
****************************************************************/
/*
* Location where a markdown file is to be generated.
* Omit if no document should be generated.
*
* @var string
*/
'docs-output' => 'docs/archive/current/support/properties/available-helpers.md',
/*****************************************************************
* Namespaces to use
****************************************************************/
'namespaces' => [
/*
* Vendor namespace to apply on all generated
* namespaces.
*/
'vendor' => 'Aedart\\',
/*
* Namespaces for interfaces
*/
'interfaces' => [
/*
* Vendor namespace overwrite for interfaces
*/
'vendor' => 'Aedart\\Contracts\\',
/*
* Prefix for all interfaces
*/
'prefix' => 'Support\\Properties\\',
/**
* Path overwrite for interfaces
*
* Uses "output" if not given
*/
'output' => 'packages/Contracts/src/',
/*
* Namespaces for various data types
*/
DataTypes::STRING_TYPE => 'Strings\\',
DataTypes::INT_TYPE => 'Integers\\',
DataTypes::FLOAT_TYPE => 'Floats\\',
DataTypes::BOOL_TYPE => 'Booleans\\',
DataTypes::ARRAY_TYPE => 'Arrays\\',
DataTypes::CALLABLE_TYPE => 'Callables\\',
DataTypes::ITERABLE_TYPE => 'Iterators\\',
DataTypes::MIXED_TYPE => 'Mixes\\',
DataTypes::DATE_TIME_TYPE => 'Dates\\',
],
/*
* Namespaces for interfaces
*/
'traits' => [
/*
* Vendor namespace overwrite for interfaces
*/
'vendor' => 'Aedart\\Support\\',
/*
* Prefix for all traits
*/
'prefix' => 'Properties\\',
/**
* Path overwrite for traits
*
* Uses "output" if not given
*/
'output' => 'packages/Support/src/',
/*
* Namespaces for various data types
*/
DataTypes::STRING_TYPE => 'Strings\\',
DataTypes::INT_TYPE => 'Integers\\',
DataTypes::FLOAT_TYPE => 'Floats\\',
DataTypes::BOOL_TYPE => 'Booleans\\',
DataTypes::ARRAY_TYPE => 'Arrays\\',
DataTypes::CALLABLE_TYPE => 'Callables\\',
DataTypes::ITERABLE_TYPE => 'Iterators\\',
DataTypes::MIXED_TYPE => 'Mixes\\',
DataTypes::DATE_TIME_TYPE => 'Dates\\',
],
],
/*****************************************************************
* List of Aware-Of Components to generate
****************************************************************/
'aware-of-properties' => [
// -------------------------------------------------------------------------------------
// A
// -------------------------------------------------------------------------------------
stringProperty(
'action',
'A process or fact of doing something',
'action'
),
callableProperty(
'action',
'Callback method',
'callback'
),
stringProperty(
'address',
'Address to someone or something',
'address'
),
integerProperty(
'age',
'Age of someone or something',
'age'
),
stringProperty(
'agency',
'Name of agency organisation',
'name'
),
stringProperty(
'agent',
'Someone or something that acts on behalf of someone else or something else',
'agent'
),
stringProperty(
'alias',
'An alternate name of an item or component',
'name'
),
integerProperty(
'amount',
'The quantity of something',
'amount'
),
floatProperty(
'amount',
'The quantity of something',
'amount'
),
stringProperty(
'anniversary',
'Date of anniversary',
'anniversary'
),
integerProperty(
'anniversary',
'Date of anniversary',
'anniversary'
),
dateTimeProperty(
'anniversary',
'Date of anniversary',
'anniversary'
),
stringProperty(
'area',
'Name of area, e.g. in a building, in a city, outside the city, ...etc',
'name'
),
stringProperty(
'author',
'Name of author',
'name'
),
// -------------------------------------------------------------------------------------
// B
// -------------------------------------------------------------------------------------
stringProperty(
'basePath',
'The path to the root directory of some kind of a resource, e.g. your application, files, pictures,...etc',
'path'
),
stringProperty(
'begin',
'Location, index or some other identifier of where something begins',
'location'
),
stringProperty(
'birthdate',
'Date of birth',
'date'
),
integerProperty(
'birthdate',
'Date of birth',
'date'
),
dateTimeProperty(
'birthdate',
'Date of birth',
'date'
),
stringProperty(
'bootstrapPath',
'Directory path where bootstrapping resources are located',
'path'
),
stringProperty(
'brand',
'Name or identifier of a brand that is associated with a product or service',
'identifier'
),
integerProperty(
'brand',
'Name or identifier of a brand that is associated with a product or service',
'identifier'
),
stringProperty(
'buildingNumber',
'The house number assigned to a building or apartment in a street or area, e.g. 12a',
'number'
),
// -------------------------------------------------------------------------------------
// C
// -------------------------------------------------------------------------------------
callableProperty(
'callback',
'Callback method',
'callback'
),
stringProperty(
'calendar',
'Location to calendar, e.g. URI, name, ID or other identifier',
'location'
),
stringProperty(
'cardNumber',
'Numeric or Alphanumeric card number, e.g. for credit cards or other types of cards',
'number'
),
stringProperty(
'cardOwner',
'Name of the card owner (cardholder)',
'name'
),
stringProperty(
'cardType',
'The type of card, e.g. VISA, MasterCard, Playing Card, Magic Card... etc',
'type'
),
stringProperty(
'category',
'Name of category',
'name'
),
arrayProperty(
'categories',
'List of category names',
'list'
),
arrayProperty(
'choices',
'Various choices that can be made',
'list'
),
stringProperty(
'city',
'Name of city, town or village',
'name'
),
stringProperty(
'class',
'The class of something or perhaps a class path',
'class'
),
stringProperty(
'code',
'The code for something, e.g. language code, classification code, or perhaps an artifacts identifier',
'code'
),
stringProperty(
'colour',
'Name of colour or colour value, e.g. RGB, CMYK, HSL or other format',
'colour'
),
stringProperty(
'column',
'Name of column',
'name'
),
stringProperty(
'comment',
'A comment',
'content'
),
stringProperty(
'company',
'Name of company',
'name'
),
stringProperty(
'configPath',
'Directory path where configuration files or resources located',
'path'
),
stringProperty(
'content',
'Content',
'content'
),
stringProperty(
'country',
'Name of country, e.g. Denmark, United Kingdom, Australia...etc',
'name'
),
stringProperty(
'createdAt',
'Date of when this component, entity or resource was created',
'date'
),
integerProperty(
'createdAt',
'Date of when this component, entity or resource was created',
'date'
),
dateTimeProperty(
'createdAt',
'Date of when this component, entity or resource was created',
'date'
),
stringProperty(
'currency',
'Name, code or other identifier of currency',
'identifier'
),
// -------------------------------------------------------------------------------------
// D
// -------------------------------------------------------------------------------------
arrayProperty(
'data',
'A list (array) containing a set of values',
'values'
),
stringProperty(
'database',
'Name of database',
'name'
),
stringProperty(
'databasePath',
'Directory path where your databases are located',
'path'
),
stringProperty(
'date',
'Date of event',
'date'
),
integerProperty(
'date',
'Date of event',
'date'
),
dateTimeProperty(
'date',
'Date of event',
'date'
),
stringProperty(
'deceasedAt',
'Date of when person, animal of something has died',
'date'
),
integerProperty(
'deceasedAt',
'Date of when person, animal of something has died',
'date'
),
dateTimeProperty(
'deceasedAt',
'Date of when person, animal of something has died',
'date'
),
stringProperty(
'deletedAt',
'Date of when this component, entity or resource was deleted',
'date'
),
integerProperty(
'deletedAt',
'Date of when this component, entity or resource was deleted',
'date'
),
dateTimeProperty(
'deletedAt',
'Date of when this component, entity or resource was deleted',
'date'
),
stringProperty(
'deliveredAt',
'Date of delivery',
'date'
),
integerProperty(
'deliveredAt',
'Date of delivery',
'date'
),
dateTimeProperty(
'deliveredAt',
'Date of delivery',
'date'
),
stringProperty(
'deliveryAddress',
'Delivery address',
'address'
),
stringProperty(
'deliveryDate',
'Date of planned delivery',
'date'
),
integerProperty(
'deliveryDate',
'Date of planned delivery',
'date'
),
dateTimeProperty(
'deliveryDate',
'Date of planned delivery',
'date'
),
integerProperty(
'depth',
'Depth of something',
'amount'
),
floatProperty(
'depth',
'Depth of something',
'amount'
),
stringProperty(
'description',
'Description',
'description'
),
stringProperty(
'directory',
'Path to a given directory, relative or absolute, existing or none-existing',
'path'
),
stringProperty(
'discount',
'Discount amount',
'amount'
),
integerProperty(
'discount',
'Discount amount',
'amount'
),
floatProperty(
'discount',
'Discount amount',
'amount'
),
stringProperty(
'distance',
'Distance to or from something',
'length'
),
integerProperty(
'distance',
'Distance to or from something',
'length'
),
floatProperty(
'distance',
'Distance to or from something',
'length'
),
stringProperty(
'domain',
'Name, URL, territory or term that describes a given domain... etc',
'domain'
),
stringProperty(
'duration',
'Duration of some event or media',
'amount'
),
integerProperty(
'duration',
'Duration of some event or media',
'amount'
),
floatProperty(
'duration',
'Duration of some event or media',
'amount'
),
// -------------------------------------------------------------------------------------
// E
// -------------------------------------------------------------------------------------
stringProperty(
'ean',
'International Article Number (EAN)',
'ean'
),
stringProperty(
'ean8',
'International Article Number (EAN), 8-digit',
'ean8'
),
stringProperty(
'ean13',
'International Article Number (EAN), 13-digit',
'ean13'
),
stringProperty(
'edition',
'The version of a published text, e.g. book, article, newspaper, report... etc',
'edition'
),
integerProperty(
'edition',
'The version of a published text, e.g. book, article, newspaper, report... etc',
'edition'
),
stringProperty(
'email',
'Email',
'email'
),
stringProperty(
'end',
'Location, index or other identifier of when something ends',
'location'
),
stringProperty(
'end',
'Location, index or other identifier of when something ends',
'location'
),
stringProperty(
'endDate',
'Date for when some kind of event ends',
'date'
),
integerProperty(
'endDate',
'Date for when some kind of event ends',
'date'
),
dateTimeProperty(
'endDate',
'Date for when some kind of event ends',
'date'
),
stringProperty(
'environmentPath',
'Directory path where your environment resources are located',
'path'
),
stringProperty(
'error',
'Error name or identifier',
'identifier'
),
integerProperty(
'error',
'Error name or identifier',
'identifier'
),
stringProperty(
'event',
'Event name or identifier',
'identifier'
),
integerProperty(
'event',
'Event name or identifier',
'identifier'
),
stringProperty(
'expiresAt',
'Date of when this component, entity or resource is going to expire',
'date'
),
integerProperty(
'expiresAt',
'Date of when this component, entity or resource is going to expire',
'date'
),
dateTimeProperty(
'expiresAt',
'Date of when this component, entity or resource is going to expire',
'date'
),
// -------------------------------------------------------------------------------------
// F
// -------------------------------------------------------------------------------------
stringProperty(
'fileExtension',
'File extension, e.g. php, avi, json, txt...etc',
'extension'
),
stringProperty(
'filename',
'Name of given file, with or without path, e.g. myText.txt, /usr/docs/README.md',
'name'
),
stringProperty(
'filePath',
'Path to a file',
'path'
),
stringProperty(
'firstName',
'First name (given name) or forename of a person',
'name'
),
stringProperty(
'format',
'The shape, size and presentation or medium of an item or component',
'format'
),
stringProperty(
'formattedName',
'Formatted name of someone or something',
'name'
),
// -------------------------------------------------------------------------------------
// G
// -------------------------------------------------------------------------------------
stringProperty(
'gender',
'Gender (sex) identity of a person, animal or something',
'identity'
),
stringProperty(
'group',
'Group identifier',
'identity'
),
integerProperty(
'group',
'Group identifier',
'identity'
),
// -------------------------------------------------------------------------------------
// H
// -------------------------------------------------------------------------------------
stringProperty(
'handler',
'Identifier of a handler',
'identifier'
),
integerProperty(
'handler',
'Identifier of a handler',
'identifier'
),
callableProperty(
'handler',
'Handler callback method',
'callback'
),
integerProperty(
'height',
'Height of something',
'amount'
),
floatProperty(
'height',
'Height of something',
'amount'
),
stringProperty(
'host',
'Identifier of a host',
'identifier'
),
stringProperty(
'html',
'HyperText Markup Language (HTML)',
'html'
),
mixedProperty(
'html',
'HyperText Markup Language (HTML)',
'html'
),
// -------------------------------------------------------------------------------------
// I
// -------------------------------------------------------------------------------------
stringProperty(
'iata',
'International Air Transport Association code',
'code'
),
stringProperty(
'iban',
'International Bank Account Number (IBAN)',
'number'
),
stringProperty(
'icao',
'International Civil Aviation Organization code',
'code'
),
stringProperty(
'id',
'Unique identifier',
'identifier'
),
integerProperty(
'id',
'Unique identifier',
'identifier'
),
stringProperty(
'identifier',
'Name or code that identifies a unique object, resource, class, component or thing',
'identifier'
),
integerProperty(
'identifier',
'Name or code that identifies a unique object, resource, class, component or thing',
'identifier'
),
stringProperty(
'image',
'Path, Uri or other type of location to an image',
'location'
),
stringProperty(
'index',
'Index',
'index'
),
integerProperty(
'index',
'Index',
'index'
),
stringProperty(
'info',
'Information about someone or something',
'text'
),
stringProperty(
'information',
'Information about someone or something',
'text'
),
stringProperty(
'invoiceAddress',
'Invoice Address. Can be formatted.',
'address'
),
stringProperty(
'ip',
'IP address',
'address'
),
stringProperty(
'ipV4',
'IPv4 address',
'address'
),
stringProperty(
'ipV6',
'IPv6 address',
'address'
),
stringProperty(
'isicV4',
'International Standard of Industrial Classification of All Economic Activities (ISIC), revision 4 code',
'code'
),
stringProperty(
'isbn',
'International Standard Book Number (ISBN)',
'isbn'
),
stringProperty(
'isbn10',
'International Standard Book Number (ISBN), 10-digits',
'isbn10'
),
stringProperty(
'isbn13',
'International Standard Book Number (ISBN), 13-digits',
'ibn13'
),
// -------------------------------------------------------------------------------------
// J
// -------------------------------------------------------------------------------------
stringProperty(
'json',
'JavaScript Object Notation (JSON)',
'json'
),
mixedProperty(
'json',
'JavaScript Object Notation (JSON)',
'json'
),
// -------------------------------------------------------------------------------------
// K
// -------------------------------------------------------------------------------------
stringProperty(
'key',
'key, e.g. indexing key, encryption key or other type of key',
'key'
),
stringProperty(
'kind',
'The kind of object this represents, e.g. human, organisation, group, individual...etc',
'kind'
),
// -------------------------------------------------------------------------------------
// L
// -------------------------------------------------------------------------------------
stringProperty(
'label',
'Label name',
'name'
),
stringProperty(
'langPath',
'Directory path where translation resources are located',
'path'
),
stringProperty(
'language',
'Name or identifier of a language',
'identifier'
),
stringProperty(
'lastName',
'Last Name (surname) or family name of a person',
'name'
),
stringProperty(
'latitude',
'North-South position on Earth\'s surface',
'value'
),
floatProperty(
'latitude',
'North-South position on Earth\'s surface',
'value'
),
integerProperty(
'length',
'Length of something',
'amount'
),
floatProperty(
'length',
'Length of something',
'amount'
),
stringProperty(
'license',
'License name or identifier',
'identifier'
),
integerProperty(
'license',
'License name or identifier',
'identifier'
),
stringProperty(
'link',
'Hyperlink to related resource or action',
'link'
),
stringProperty(
'locale',
'Locale language code, e.g. en_us or other format',
'code'
),
stringProperty(
'location',
'Name or identifier of a location',
'identifier'
),
integerProperty(
'location',
'Name or identifier of a location',
'identifier'
),
arrayProperty(
'Locations',
'List of locations',
'list'
),
stringProperty(
'logo',
'Path, Uri or other type of location to a logo',
'location'
),
stringProperty(
'Longitude',
'East-West position on Earth\'s surface',
'value'
),
floatProperty(
'Longitude',
'East-West position on Earth\'s surface',
'value'
),
// -------------------------------------------------------------------------------------
// M
// -------------------------------------------------------------------------------------
stringProperty(
'macAddress',
'Media Access Control Address (MAC Address)',
'address'
),
stringProperty(
'manufacturer',
'Name or identifier of a manufacturer',
'identifier'
),
stringProperty(
'material',
'Name or identifier of a material, e.g. leather, wool, cotton, paper.',
'identifier'
),
stringProperty(
'mediaType',