-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1032 lines (1031 loc) · 69.4 KB
/
index.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>SuiteCRM - The Right Way by Daniel Samson and Friends</title>
<link href="https://fonts.googleapis.com/css?family=Noto+Sans" rel="stylesheet">
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/github-light.css">
<meta name="viewport" content="width=device-width">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body id="menu">
<div class="wrapper">
<header>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="256"
height="256"
id="svg2"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="suitecrm-therightway.svg">
<defs
id="defs4">
<linearGradient
id="linearGradient3833"
osb:paint="solid">
<stop
style="stop-color:#75ca2a;stop-opacity:1;"
offset="0"
id="stop3835" />
</linearGradient>
<linearGradient
id="linearGradient3827"
osb:paint="solid">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop3829" />
</linearGradient>
<linearGradient
id="linearGradient3821"
osb:paint="solid">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop3823" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="51.507914"
inkscape:cy="101.77911"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1014"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-796.36218)">
<g
id="g3785"
style="stroke:#75ca2a;stroke-opacity:1;fill-opacity:1;fill:none;stroke-linejoin:round;fill-rule:evenodd">
<path
transform="matrix(1.16706,0,0,1.1625893,-31.157992,764.57206)"
d="m 239.91124,139.07484 c 0,57.04445 -46.24366,103.28811 -103.2881,103.28811 -57.044445,0 -103.288103,-46.24366 -103.288103,-103.28811 0,-57.044439 46.243658,-103.288097 103.288103,-103.288097 57.04444,0 103.2881,46.243658 103.2881,103.288097 z"
sodipodi:ry="103.2881"
sodipodi:rx="103.2881"
sodipodi:cy="139.07484"
sodipodi:cx="136.62314"
id="path2985"
style="fill:none;stroke:#75ca2a;stroke-width:8.10644912999999789;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;fill-opacity:1;fill-rule:evenodd"
sodipodi:type="arc" />
<path
transform="matrix(1.0769987,0,0,1.0740091,-19.106106,776.4167)"
d="m 239.91124,139.07484 c 0,57.04445 -46.24366,103.28811 -103.2881,103.28811 -57.044445,0 -103.288103,-46.24366 -103.288103,-103.28811 0,-57.044439 46.243658,-103.288097 103.288103,-103.288097 57.04444,0 103.2881,46.243658 103.2881,103.288097 z"
sodipodi:ry="103.2881"
sodipodi:rx="103.2881"
sodipodi:cy="139.07484"
sodipodi:cx="136.62314"
id="path2985-4"
style="fill:none;stroke:#75ca2a;stroke-width:3.23047662000000013;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;fill-opacity:1;fill-rule:evenodd"
sodipodi:type="arc" />
<path
transform="matrix(0.65901183,0,0,0.67790218,38.487183,830.21114)"
d="m 239.91124,139.07484 c 0,57.04445 -46.24366,103.28811 -103.2881,103.28811 -57.044445,0 -103.288103,-46.24366 -103.288103,-103.28811 0,-57.044439 46.243658,-103.288097 103.288103,-103.288097 57.04444,0 103.2881,46.243658 103.2881,103.288097 z"
sodipodi:ry="103.2881"
sodipodi:rx="103.2881"
sodipodi:cy="139.07484"
sodipodi:cx="136.62314"
id="path2985-48"
style="fill:none;stroke:#75ca2a;stroke-width:8.10644912999999789;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;fill-opacity:1;fill-rule:evenodd"
sodipodi:type="arc" />
<path
transform="matrix(0.60319679,0,0,0.61719716,46.112809,838.65368)"
d="m 239.91124,139.07484 c 0,57.04445 -46.24366,103.28811 -103.2881,103.28811 -57.044445,0 -103.288103,-46.24366 -103.288103,-103.28811 0,-57.044439 46.243658,-103.288097 103.288103,-103.288097 57.04444,0 103.2881,46.243658 103.2881,103.288097 z"
sodipodi:ry="103.2881"
sodipodi:rx="103.2881"
sodipodi:cy="139.07484"
sodipodi:cx="136.62314"
id="path2985-48-2"
style="fill:none;stroke:#75ca2a;stroke-width:3.97644185999999999;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;fill-opacity:1;fill-rule:evenodd"
sodipodi:type="arc" />
<path
transform="translate(0,796.36218)"
inkscape:connector-curvature="0"
id="path3852"
d="M 76.266517,21.139533"
style="fill:none;stroke:#75ca2a;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;fill-opacity:1;fill-rule:evenodd" />
<g
id="text3877"
style="font-size:48px;font-style:normal;font-weight:normal;text-align:center;line-height:130.99999428000000989%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:none;fill-opacity:1;stroke:#75ca2a;font-family:Sans;stroke-opacity:1;stroke-linejoin:round;fill-rule:evenodd"
transform="matrix(-1.0005311,0.61857052,-0.607358,-0.98239503,817.62282,1754.8242)">
<path
id="path4097"
style="font-size:18.87448883000000066px;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:130.99999428000000989%;letter-spacing:0.01000000000000000px;font-family:Verdana;-inkscape-font-specification:Verdana Bold;stroke:#75ca2a;stroke-opacity:1;fill-opacity:1;fill:#75ca2a;stroke-linejoin:round;fill-rule:evenodd"
d="m 178.67753,978.42896 c -1.02166,-0.88504 -1.47678,-2.03933 -1.36538,-3.46289 0.11204,-1.4149 0.81171,-2.86538 2.09902,-4.35142 0.74423,-0.85913 1.46822,-1.54476 2.17198,-2.05688 0.70438,-0.50347 1.41403,-0.93326 2.12897,-1.28939 l 2.48682,2.15424 -0.25344,0.29256 c -0.9199,0.17046 -1.79394,0.49443 -2.62214,0.97192 -0.83222,0.48213 -1.52188,1.03898 -2.06899,1.67056 -0.1408,0.16253 -0.31191,0.38822 -0.51336,0.67707 -0.20143,0.28883 -0.34205,0.545 -0.42187,0.76851 -0.0934,0.27673 -0.13374,0.53443 -0.121,0.77308 0.009,0.24328 0.13615,0.47153 0.38228,0.68475 0.22755,0.19711 0.50708,0.26855 0.83857,0.21432 0.33212,-0.0456 0.70321,-0.21592 1.11327,-0.51099 0.4308,-0.30964 0.87474,-0.64852 1.33184,-1.01666 0.45771,-0.35948 0.9142,-0.6753 1.36946,-0.94748 1.03957,-0.62767 1.96779,-0.92503 2.78465,-0.8921 0.81748,0.0416 1.58613,0.37417 2.30594,0.99771 0.96592,0.83675 1.37894,1.9505 1.23905,3.34127 -0.13928,1.39942 -0.79826,2.77946 -1.97695,4.14014 -0.59136,0.68264 -1.24201,1.29768 -1.95195,1.84511 -0.70932,0.55607 -1.37502,0.99142 -1.99711,1.30607 l -2.38929,-2.06976 0.2474,-0.2856 c 0.69642,-0.12832 1.41958,-0.4001 2.16948,-0.81534 0.75052,-0.4066 1.39933,-0.92568 1.94644,-1.55724 0.1931,-0.22292 0.36994,-0.45991 0.53053,-0.71097 0.16121,-0.24241 0.28852,-0.50198 0.38194,-0.77871 0.0872,-0.24147 0.11518,-0.48957 0.0839,-0.74429 -0.0267,-0.25073 -0.13058,-0.45453 -0.31169,-0.61141 -0.27399,-0.23736 -0.57581,-0.31591 -0.90543,-0.23566 -0.325,0.0843 -0.79929,0.36434 -1.42289,0.84025 -0.40882,0.3124 -0.80123,0.61057 -1.17725,0.89451 -0.38004,0.28856 -0.81007,0.57854 -1.29008,0.86993 -0.94797,0.56881 -1.81011,0.8462 -2.58642,0.83215 -0.77568,-0.005 -1.52111,-0.31786 -2.23627,-0.93736" />
<path
id="path4099"
style="font-size:18.87448883000000066px;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:130.99999428000000989%;letter-spacing:0.01000000000000000px;font-family:Verdana;-inkscape-font-specification:Verdana Bold;stroke:#75ca2a;stroke-opacity:1;fill-opacity:1;fill:#75ca2a;stroke-linejoin:round;fill-rule:evenodd"
d="m 165.57302,983.47042 2.61561,-2.04115 0.70306,0.90093 c 0.1971,-0.74611 0.42107,-1.37291 0.67189,-1.88038 0.25462,-0.50264 0.66044,-0.97131 1.21747,-1.40599 0.90093,-0.70306 1.79823,-0.98634 2.69189,-0.84983 0.88882,0.14029 1.72823,0.7166 2.51823,1.72894 l 4.14465,5.31114 -2.63014,2.05248 -3.1581,-4.04693 c -0.32129,-0.41172 -0.60177,-0.74617 -0.84144,-1.00336 -0.24074,-0.24858 -0.47947,-0.42467 -0.7162,-0.52828 -0.23189,-0.10741 -0.47199,-0.13046 -0.72031,-0.0692 -0.25316,0.0651 -0.54685,0.22801 -0.88107,0.48882 -0.22281,0.17387 -0.43771,0.40782 -0.64471,0.70184 -0.20698,0.29401 -0.37404,0.61922 -0.50119,0.97563 l 4.5132,5.7834 -2.61561,2.04114 -6.36723,-8.15924" />
<path
id="path4101"
style="font-size:18.87448883000000066px;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:130.99999428000000989%;letter-spacing:0.01000000000000000px;font-family:Verdana;-inkscape-font-specification:Verdana Bold;stroke:#75ca2a;stroke-opacity:1;fill-opacity:1;fill:#75ca2a;stroke-linejoin:round;fill-rule:evenodd"
d="m 159.91889,986.65612 2.88544,-1.63766 5.1086,9.00095 -2.88543,1.63766 -5.10861,-9.00095 m 5.75631,10.32886 3.04573,-1.72865 1.2419,2.18812 -3.04574,1.72865 -1.24189,-2.18812" />
<path
id="path4103"
style="font-size:18.87448883000000066px;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:130.99999428000000989%;letter-spacing:0.01000000000000000px;font-family:Verdana;-inkscape-font-specification:Verdana Bold;stroke:#75ca2a;stroke-opacity:1;fill-opacity:1;fill:#75ca2a;stroke-linejoin:round;fill-rule:evenodd"
d="m 151.07796,990.7925 c 0.29149,-0.22476 0.61121,-0.43819 0.95914,-0.6403 0.34552,-0.20775 0.78383,-0.42509 1.31492,-0.652 1.1865,-0.50693 2.17331,-0.64459 2.96044,-0.41298 0.78148,0.23403 1.42086,0.93298 1.91813,2.09688 l 1.90099,4.44934 1.25429,-0.5359 0.88351,2.06789 -1.2543,0.5359 1.16232,2.72047 -3.05098,1.3035 -1.16232,-2.72044 -2.85605,1.22024 -0.88351,-2.06787 2.85606,-1.22026 -1.44113,-3.37302 c -0.14242,-0.33336 -0.26956,-0.62312 -0.38143,-0.8693 -0.11186,-0.24619 -0.25241,-0.45005 -0.42165,-0.61159 -0.16359,-0.16395 -0.3696,-0.26301 -0.61805,-0.29717 -0.25167,-0.0261 -0.56961,0.0429 -0.95381,0.20708 -0.15819,0.0676 -0.34993,0.1896 -0.57522,0.36603 -0.23092,0.17883 -0.38517,0.31823 -0.46273,0.41819 l -0.25425,0.10862 -0.89437,-2.09331" />
<path
id="path4105"
style="font-size:18.87448883000000066px;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:130.99999428000000989%;letter-spacing:0.01000000000000000px;font-family:Verdana;-inkscape-font-specification:Verdana Bold;stroke:#75ca2a;stroke-opacity:1;fill-opacity:1;fill:#75ca2a;stroke-linejoin:round;fill-rule:evenodd"
d="m 140.38105,998.29805 7.36868,-1.8363 c -0.2438,-0.77506 -0.69194,-1.30291 -1.34442,-1.58355 -0.65843,-0.27915 -1.5242,-0.28502 -2.59731,-0.0176 -0.67963,0.16936 -1.30794,0.45575 -1.88494,0.85915 -0.57698,0.40339 -1.01538,0.79124 -1.31519,1.16356 l -0.3577,0.0891 -0.64404,-2.5844 c 0.65454,-0.47338 1.2874,-0.85587 1.89857,-1.14748 0.61118,-0.29161 1.30726,-0.53473 2.08824,-0.72935 2.01506,-0.50216 3.67206,-0.43386 4.97098,0.2049 1.29894,0.63875 2.15714,1.79575 2.57461,3.471 0.41302,1.65734 0.23312,3.0952 -0.53969,4.31357 -0.77728,1.2258 -2.05124,2.0593 -3.82187,2.5006 -1.6335,0.407 -2.96487,0.2988 -3.9941,-0.3249 -1.02773,-0.6177 -1.73474,-1.7016 -2.12102,-3.25159 l -0.2808,-1.12676 m 3.67166,1.08907 c 0.18577,0.66918 0.47898,1.13438 0.87963,1.39548 0.40066,0.261 0.93484,0.3084 1.60255,0.142 0.62002,-0.1545 1.08963,-0.4425 1.40884,-0.864 0.31921,-0.42147 0.41426,-0.99288 0.28516,-1.7142 l -4.17618,1.04072" />
<path
id="path4107"
style="font-size:18.87448883000000066px;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:130.99999428000000989%;letter-spacing:0.01000000000000000px;font-family:Verdana;-inkscape-font-specification:Verdana Bold;stroke:#75ca2a;stroke-opacity:1;fill-opacity:1;fill:#75ca2a;stroke-linejoin:round;fill-rule:evenodd"
d="m 130.52518,994.22202 c 1.01881,-0.0476 1.96792,0.0587 2.84734,0.31894 0.87329,0.26055 1.63379,0.67399 2.28149,1.24033 0.64771,0.56633 1.16422,1.28642 1.54952,2.16027 0.37917,0.87412 0.59601,1.89423 0.65054,3.06034 0.0508,1.0863 -0.0658,2.0789 -0.34974,2.9779 -0.28395,0.899 -0.72108,1.6791 -1.3114,2.3402 -0.5669,0.6354 -1.28143,1.1394 -2.14357,1.5118 -0.86828,0.3728 -1.82409,0.5835 -2.86744,0.6323 -0.5769,0.027 -1.09709,0.017 -1.56055,-0.029 -0.4693,-0.04 -0.90279,-0.1023 -1.30046,-0.1883 -0.41665,-0.097 -0.79413,-0.212 -1.13244,-0.3438 -0.34414,-0.1253 -0.6449,-0.2435 -0.90229,-0.3545 l -0.1554,-3.3234 0.40507,-0.019 c 0.17874,0.1393 0.4048,0.304 0.67816,0.4942 0.26725,0.1905 0.57117,0.3761 0.91176,0.557 0.34674,0.1806 0.71966,0.3293 1.11876,0.4459 0.39911,0.1167 0.82267,0.1645 1.27069,0.1436 0.49713,-0.023 0.96597,-0.1251 1.40653,-0.3056 0.44086,-0.1744 0.84307,-0.4516 1.20665,-0.8315 0.34575,-0.3667 0.61867,-0.8439 0.81877,-1.4314 0.19398,-0.5872 0.27173,-1.2921 0.23327,-2.1145 -0.0402,-0.8592 -0.19342,-1.57166 -0.45976,-2.13737 -0.27247,-0.56544 -0.60057,-1.00525 -0.98431,-1.31944 -0.39016,-0.32006 -0.81883,-0.54297 -1.28602,-0.66873 -0.4669,-0.11964 -0.92436,-0.16899 -1.37239,-0.14803 -0.42961,0.0201 -0.85007,0.10433 -1.26139,0.25273 -0.41744,0.14868 -0.79898,0.34182 -1.14463,0.57941 -0.29239,0.19204 -0.56274,0.39536 -0.81105,0.60995 -0.24829,0.21458 -0.45185,0.39939 -0.61068,0.55444 l -0.36824,0.0172 -0.15325,-3.27734 c 0.33653,-0.1695 0.65813,-0.32908 0.96481,-0.47874 0.3067,-0.14966 0.6296,-0.28162 0.96869,-0.39589 0.442,-0.14983 0.85782,-0.26769 1.24744,-0.35356 0.38964,-0.0859 0.92815,-0.14489 1.61552,-0.17703" />
<path
id="path4109"
style="font-size:18.87448883000000066px;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:130.99999428000000989%;letter-spacing:0.01000000000000000px;font-family:Verdana;-inkscape-font-specification:Verdana Bold;stroke:#75ca2a;stroke-opacity:1;fill-opacity:1;fill:#75ca2a;stroke-linejoin:round;fill-rule:evenodd"
d="m 113.85783,1002.6373 c -0.0571,0.3393 -0.0363,0.6419 0.0623,0.9077 0.0986,0.2657 0.30583,0.4969 0.62168,0.6933 0.22,0.1367 0.486,0.2406 0.798,0.3118 0.311,0.077 0.67553,0.151 1.09358,0.2213 l 1.26329,0.2125 0.61299,-3.6445 -1.07243,-0.1803 c -0.55742,-0.094 -1.02854,-0.145 -1.41338,-0.1537 -0.38481,-0.01 -0.72077,0.063 -1.00786,0.2137 -0.27394,0.147 -0.4843,0.3235 -0.63108,0.5293 -0.15383,0.2109 -0.26286,0.5072 -0.32707,0.8889 m -3.86486,-10.30396 4.26245,0.71694 2.85526,5.58289 1.60864,0.27057 0.83464,-4.96227 3.47177,0.58394 -2.27615,13.53259 -5.85293,-0.9844 c -0.79977,-0.1345 -1.47981,-0.2956 -2.04013,-0.4833 -0.5603,-0.1877 -1.06643,-0.4754 -1.51838,-0.8629 -0.45798,-0.3885 -0.79466,-0.8501 -1.01003,-1.3848 -0.22242,-0.5296 -0.2725,-1.1579 -0.15022,-1.885 0.16816,-0.9997 0.5385,-1.7754 1.11101,-2.3271 0.56648,-0.55266 1.31505,-0.96567 2.24573,-1.23902 l -3.54166,-6.55814" />
<path
id="path4111"
style="font-size:18.87448883000000066px;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:130.99999428000000989%;letter-spacing:0.01000000000000000px;font-family:Verdana;-inkscape-font-specification:Verdana Bold;stroke:#75ca2a;stroke-opacity:1;fill-opacity:1;fill:#75ca2a;stroke-linejoin:round;fill-rule:evenodd"
d="m 95.253154,986.03758 3.224383,1.41334 -3.688733,8.41547 4.72345,-4.44004 2.236806,0.98046 -0.0641,6.48234 3.68873,-8.41547 3.05557,1.33934 -5.50905,12.56838 -3.764593,-1.6502 -0.06389,-7.54468 -5.582999,5.06948 -3.764594,-1.65008 5.509051,-12.56834" />
<path
id="path4113"
style="font-size:18.87448883000000066px;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:130.99999428000000989%;letter-spacing:0.01000000000000000px;font-family:Verdana;-inkscape-font-specification:Verdana Bold;stroke:#75ca2a;stroke-opacity:1;fill-opacity:1;fill:#75ca2a;stroke-linejoin:round;fill-rule:evenodd"
d="m 56.316797,890.71099 -1.452749,4.03172 10.413104,3.75216 -1.19969,3.32941 -10.413104,-3.75215 -1.45275,4.03172 -2.497064,-0.89977 4.105189,-11.39286 2.497064,0.89977" />
<path
id="path4115"
style="font-size:18.87448883000000066px;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:130.99999428000000989%;letter-spacing:0.01000000000000000px;font-family:Verdana;-inkscape-font-specification:Verdana Bold;stroke:#75ca2a;stroke-opacity:1;fill-opacity:1;fill:#75ca2a;stroke-linejoin:round;fill-rule:evenodd"
d="m 72.924218,883.74498 -1.693451,2.87446 -4.422864,-2.60567 c -0.359969,-0.21206 -0.728207,-0.40404 -1.104714,-0.57595 -0.3818,-0.175 -0.683907,-0.26741 -0.906324,-0.27723 -0.258238,-0.01 -0.493168,0.0625 -0.704792,0.21587 -0.2085,0.14816 -0.420346,0.40486 -0.635539,0.77011 -0.152813,0.2594 -0.266398,0.54903 -0.340756,0.8689 -0.07123,0.31459 -0.106213,0.68262 -0.104941,1.1041 l 6.320645,3.72372 -1.684095,2.85858 -12.355431,-7.27903 1.684095,-2.85858 4.422863,2.60566 c -0.09763,-0.74208 -0.115092,-1.40842 -0.0524,-1.99902 0.06582,-0.59588 0.26714,-1.17968 0.603954,-1.75141 0.567607,-0.96343 1.291025,-1.54984 2.170258,-1.75923 0.882356,-0.21465 1.882015,0.007 2.998979,0.66507 l 5.804512,3.41965" />
<path
id="path4117"
style="font-size:18.87448883000000066px;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:130.99999428000000989%;letter-spacing:0.01000000000000000px;font-family:Verdana;-inkscape-font-specification:Verdana Bold;stroke:#75ca2a;stroke-opacity:1;fill-opacity:1;fill:#75ca2a;stroke-linejoin:round;fill-rule:evenodd"
d="m 78.040534,870.5851 -4.994818,5.72024 c 0.643229,0.4964 1.312714,0.67316 2.008459,0.53025 0.699784,-0.14752 1.413376,-0.63781 2.140779,-1.47086 0.460683,-0.52759 0.812351,-1.12183 1.055006,-1.78272 0.242645,-0.66087 0.380486,-1.22975 0.413523,-1.70663 l 0.242467,-0.27768 2.006249,1.75182 c -0.26625,0.76264 -0.566683,1.43833 -0.9013,2.02705 -0.33463,0.58874 -0.766634,1.18624 -1.296015,1.7925 -1.3659,1.56428 -2.764277,2.45581 -4.195135,2.6746 -1.43086,0.2188 -2.796526,-0.23958 -4.097003,-1.37513 -1.286586,-1.12343 -1.961257,-2.40585 -2.024012,-3.84728 -0.06333,-1.45009 0.505104,-2.8624 1.70531,-4.23693 1.107267,-1.26807 2.261384,-1.94058 3.462351,-2.01755 1.196341,-0.081 2.396153,0.40387 3.599442,1.45455 l 0.874697,0.76377 m -3.634849,1.20623 c -0.53509,-0.44275 -1.041623,-0.65666 -1.5196,-0.64173 -0.477975,0.015 -0.943265,0.2816 -1.395871,0.79993 -0.420274,0.48132 -0.640832,0.98613 -0.661676,1.51441 -0.02084,0.52831 0.227944,1.05142 0.746347,1.56933 l 2.8308,-3.24194" />
<path
id="path4119"
style="font-size:18.87448883000000066px;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:130.99999428000000989%;letter-spacing:0.01000000000000000px;font-family:Verdana;-inkscape-font-specification:Verdana Bold;stroke:#75ca2a;stroke-opacity:1;fill-opacity:1;fill:#75ca2a;stroke-linejoin:round;fill-rule:evenodd"
d="m 89.785432,855.52829 c -0.182915,-0.29141 -0.399541,-0.50363 -0.64988,-0.63668 -0.250343,-0.13302 -0.558785,-0.16792 -0.925326,-0.10471 -0.255214,0.0441 -0.523021,0.14331 -0.803422,0.29753 -0.283668,0.14905 -0.605036,0.33625 -0.964106,0.56161 l -1.085013,0.68102 1.964671,3.13015 0.92109,-0.57813 c 0.478758,-0.30049 0.864759,-0.57541 1.158007,-0.82477 0.293242,-0.24933 0.496886,-0.52586 0.610932,-0.82958 0.106898,-0.29196 0.146757,-0.56361 0.119578,-0.81496 -0.02525,-0.2598 -0.140758,-0.55362 -0.346531,-0.88148 m 9.736816,5.12868 -3.660945,2.29784 -5.844264,-2.27283 -1.381636,0.8672 2.675088,4.26199 -2.981836,1.87159 -7.29525,-11.62292 5.02697,-3.15523 c 0.686915,-0.43113 1.302054,-0.76283 1.84542,-0.99508 0.543363,-0.23223 1.112664,-0.3538 1.707904,-0.36472 0.600439,-0.0142 1.158807,0.10689 1.675105,0.36314 0.518226,0.24781 0.973319,0.68394 1.365279,1.30839 0.53893,0.85866 0.777895,1.68433 0.716895,2.47703 -0.05581,0.78945 -0.3405,1.59562 -0.854074,2.41849 l 7.005344,2.54511" />
<path
id="path4121"
style="font-size:18.87448883000000066px;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:130.99999428000000989%;letter-spacing:0.01000000000000000px;font-family:Verdana;-inkscape-font-specification:Verdana Bold;stroke:#75ca2a;stroke-opacity:1;fill-opacity:1;fill:#75ca2a;stroke-linejoin:round;fill-rule:evenodd"
d="m 104.03937,859.11517 -3.05273,1.29941 -4.053464,-9.52283 3.052734,-1.29942 4.05346,9.52284 m -4.546181,-10.9157 -3.22233,1.3716 -0.985392,-2.31499 3.222331,-1.3716 0.985391,2.31499" />
<path
id="path4123"
style="font-size:18.87448883000000066px;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:130.99999428000000989%;letter-spacing:0.01000000000000000px;font-family:Verdana;-inkscape-font-specification:Verdana Bold;stroke:#75ca2a;stroke-opacity:1;fill-opacity:1;fill:#75ca2a;stroke-linejoin:round;fill-rule:evenodd"
d="m 116.38523,854.18134 c 0.24391,0.93961 0.31544,1.76529 0.21457,2.47702 -0.10089,0.71174 -0.34509,1.31152 -0.73261,1.79933 -0.38599,0.49376 -0.90009,0.90969 -1.54229,1.2478 -0.63473,0.3425 -1.38027,0.62491 -2.23662,0.84723 -0.6958,0.18062 -1.39347,0.3173 -2.09303,0.41004 -0.69362,0.0912 -1.30266,0.14139 -1.82713,0.15059 l -0.65072,-2.50662 0.3925,-0.10189 c 0.43263,0.0527 0.94764,0.0682 1.54502,0.0464 0.59892,-0.0158 1.12139,-0.0816 1.56741,-0.19742 0.59469,-0.15439 1.06172,-0.33593 1.4011,-0.54464 0.34686,-0.2043 0.59217,-0.43303 0.73594,-0.68617 0.13495,-0.23816 0.20545,-0.51672 0.21153,-0.83568 0.006,-0.31896 -0.045,-0.68658 -0.153,-1.10286 l -0.0486,-0.18733 c -0.30474,0.41554 -0.66808,0.77646 -1.09002,1.08277 -0.42195,0.30632 -0.92135,0.53436 -1.4982,0.68411 -1.40347,0.36434 -2.59542,0.22308 -3.57585,-0.42377 -0.98043,-0.64685 -1.69449,-1.83258 -2.1422,-3.55719 -0.21459,-0.82662 -0.28389,-1.57035 -0.20788,-2.23121 0.076,-0.66084 0.26723,-1.26907 0.57367,-1.82471 0.28443,-0.51817 0.68199,-0.96733 1.19269,-1.34747 0.51664,-0.38167 1.07528,-0.65047 1.67592,-0.80641 0.54116,-0.14048 1.04877,-0.20243 1.52281,-0.18585 0.47843,0.009 0.92836,0.0796 1.3498,0.21136 l 1.7e-4,-0.47612 3.11322,-0.80819 2.30183,8.86686 m -3.73237,-1.17343 -1.17871,-4.54047 c -0.20443,-0.0294 -0.44585,-0.0302 -0.72426,-0.002 -0.27997,0.0219 -0.527,0.0606 -0.74108,0.11621 -0.84447,0.21923 -1.41452,0.62747 -1.71015,1.22472 -0.29718,0.59132 -0.33308,1.3211 -0.10768,2.18935 0.2501,0.9634 0.60296,1.58909 1.05858,1.87706 0.46156,0.28643 1.04619,0.33779 1.75388,0.15407 0.32112,-0.0834 0.62319,-0.21573 0.90619,-0.39711 0.28299,-0.18138 0.53073,-0.38851 0.74323,-0.62142" />
<path
id="path4125"
style="font-size:18.87448883000000066px;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:130.99999428000000989%;letter-spacing:0.01000000000000000px;font-family:Verdana;-inkscape-font-specification:Verdana Bold;stroke:#75ca2a;stroke-opacity:1;fill-opacity:1;fill:#75ca2a;stroke-linejoin:round;fill-rule:evenodd"
d="m 130.1989,854.28709 -3.33152,0.17695 -0.27227,-5.12612 c -0.0222,-0.4172 -0.0656,-0.8302 -0.13041,-1.23899 -0.0651,-0.41492 -0.15504,-0.71778 -0.26976,-0.90858 -0.13477,-0.22048 -0.32456,-0.37653 -0.56937,-0.46813 -0.2387,-0.0919 -0.56971,-0.12662 -0.99305,-0.10415 -0.30064,0.016 -0.6048,0.0814 -0.91248,0.19613 -0.30156,0.11447 -0.62763,0.28868 -0.97821,0.52264 l 0.38909,7.32566 -3.31311,0.17597 -0.76059,-14.32 3.31311,-0.17597 0.27227,5.12612 c 0.56455,-0.49143 1.11027,-0.8742 1.63716,-1.1483 0.533,-0.27441 1.13082,-0.42921 1.79345,-0.46442 1.11663,-0.0593 2.00513,0.2196 2.66549,0.8367 0.66648,0.6168 1.0341,1.57248 1.10287,2.86704 l 0.35733,6.72745" />
<path
id="path4127"
style="font-size:18.87448883000000066px;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:130.99999428000000989%;letter-spacing:0.01000000000000000px;font-family:Verdana;-inkscape-font-specification:Verdana Bold;stroke:#75ca2a;stroke-opacity:1;fill-opacity:1;fill:#75ca2a;stroke-linejoin:round;fill-rule:evenodd"
d="m 139.86241,855.22949 c -0.36442,0.0518 -0.7478,0.0799 -1.15015,0.0842 -0.40304,0.0104 -0.89153,-0.0166 -1.46546,-0.081 -1.2822,-0.14395 -2.2086,-0.51071 -2.77922,-1.10029 -0.56453,-0.5889 -0.77618,-1.51223 -0.63498,-2.77 l 0.53977,-4.80823 -1.35546,-0.15217 0.25087,-2.23468 1.35546,0.15217 0.33003,-2.93989 3.29708,0.37013 -0.33004,2.93989 3.08642,0.34649 -0.25086,2.23468 -3.08643,-0.34649 -0.4092,3.6451 c -0.0405,0.36024 -0.0727,0.67502 -0.0967,0.94435 -0.0241,0.26934 -0.002,0.516 0.0653,0.73998 0.0615,0.22329 0.19188,0.41105 0.3912,0.56325 0.20609,0.1468 0.51673,0.24349 0.93192,0.2901 0.17095,0.0192 0.39792,0.008 0.68091,-0.0349 0.28908,-0.0417 0.492,-0.087 0.60876,-0.13568 l 0.27476,0.0308 -0.25395,2.26216" />
<path
id="path4129"
style="font-size:18.87448883000000066px;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:130.99999428000000989%;letter-spacing:0.01000000000000000px;font-family:Verdana;-inkscape-font-specification:Verdana Bold;stroke:#75ca2a;stroke-opacity:1;fill-opacity:1;fill:#75ca2a;stroke-linejoin:round;fill-rule:evenodd"
d="m 171.402,852.42863 -9.13062,10.89048 -3.55261,-1.64937 1.53256,-9.14453 -5.93781,7.09931 -3.55262,-1.64937 2.42662,-14.00293 3.352,1.55622 -2.06366,9.4568 6.26829,-7.50472 3.20153,1.48638 -1.79616,9.58098 5.98407,-7.63667 3.26841,1.51742" />
<path
id="path4131"
style="font-size:18.87448883000000066px;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:130.99999428000000989%;letter-spacing:0.01000000000000000px;font-family:Verdana;-inkscape-font-specification:Verdana Bold;stroke:#75ca2a;stroke-opacity:1;fill-opacity:1;fill:#75ca2a;stroke-linejoin:round;fill-rule:evenodd"
d="m 173.74417,868.52915 1.365,-1.66959 c -0.37058,-0.25535 -0.77941,-0.52214 -1.22649,-0.80037 -0.44322,-0.28299 -0.79669,-0.47674 -1.06042,-0.58126 -0.32297,-0.12914 -0.6176,-0.17161 -0.88387,-0.12742 -0.25763,0.0433 -0.4895,0.19104 -0.69561,0.44315 -0.13612,0.16648 -0.23268,0.31371 -0.28969,0.44169 -0.057,0.12798 -0.0673,0.2862 -0.0309,0.47467 0.0316,0.18458 0.1041,0.36287 0.21743,0.53488 0.1172,0.16725 0.33754,0.3831 0.661,0.64755 0.25685,0.21 0.55886,0.36962 0.90604,0.47886 0.35192,0.11313 0.69778,0.16574 1.03756,0.15784 m -1.01499,1.24149 c -0.22351,-0.008 -0.4978,-0.0221 -0.82289,-0.0418 -0.3251,-0.0198 -0.61302,-0.0607 -0.86377,-0.12288 -0.34544,-0.092 -0.67511,-0.2226 -0.98901,-0.39194 -0.3178,-0.16459 -0.63843,-0.37911 -0.96187,-0.64355 -0.76107,-0.62222 -1.20597,-1.37879 -1.33468,-2.26969 -0.12873,-0.89091 0.10636,-1.70263 0.70525,-2.43515 0.47833,-0.58507 0.99997,-0.95617 1.56492,-1.11331 0.56494,-0.15712 1.17513,-0.14633 1.83056,0.0324 0.65066,0.17484 1.36493,0.50485 2.14281,0.99002 0.77786,0.48518 1.56245,1.01553 2.35377,1.59105 l 0.035,-0.0428 c 0.36166,-0.44237 0.42979,-0.89457 0.20441,-1.35661 -0.22152,-0.46679 -0.68426,-0.98797 -1.38824,-1.56352 -0.42335,-0.34611 -0.93746,-0.63945 -1.54232,-0.88001 -0.60098,-0.24532 -1.03917,-0.4131 -1.31457,-0.50336 l -0.23545,-0.1925 1.58083,-1.93358 c 0.32945,0.15033 0.8375,0.4268 1.52414,0.82944 0.69526,0.40178 1.3497,0.8535 1.96332,1.35516 1.46029,1.19389 2.32916,2.28122 2.60664,3.26199 0.28609,0.9799 0.0364,1.95028 -0.74917,2.91112 l -4.45666,5.45114 -2.54719,-2.0825 0.69417,-0.84906" />
<path
id="path4133"
style="font-size:18.87448883000000066px;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:130.99999428000000989%;letter-spacing:0.01000000000000000px;font-family:Verdana;-inkscape-font-specification:Verdana Bold;stroke:#75ca2a;stroke-opacity:1;fill-opacity:1;fill:#75ca2a;stroke-linejoin:round;fill-rule:evenodd"
d="m 182.58014,876.06103 6.62271,-2.54433 2.21184,2.59528 -14.49714,4.79923 -2.3314,-2.73557 4.01007,-1.26219 5.20855,-9.73064 2.25966,2.65139 -3.48429,6.22683" />
</g>
<g
style="fill:none;fill-opacity:1;stroke:#75ca2a;stroke-opacity:1;stroke-linejoin:round;fill-rule:evenodd"
transform="matrix(0.99094775,-0.13424814,0.13424814,0.99094775,-120.22489,28.912606)"
id="g3953">
<path
sodipodi:type="star"
style="fill:none;stroke:#75ca2a;stroke-width:2.31100011000000016;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;fill-opacity:1;fill-rule:evenodd"
id="path3886"
sodipodi:sides="5"
sodipodi:cx="171.42857"
sodipodi:cy="46"
sodipodi:r1="19.298937"
sodipodi:r2="8.2859936"
sodipodi:arg1="0.8902751"
sodipodi:arg2="1.4916021"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 183.57143,61 -11.48734,-6.739977 -11.16901,7.923775 2.86031,-13.007877 -10.98737,-8.173783 13.25511,-1.299334 4.37844,-12.975451 5.3318,12.204844 13.6934,0.154515 -9.95988,8.842342 z"
transform="matrix(0.49120937,0.33773285,-0.33773285,0.49120937,99.373693,761.18677)"
inkscape:transform-center-x="-0.27771085"
inkscape:transform-center-y="0.8310868" />
<path
sodipodi:type="star"
style="fill:none;stroke:#75ca2a;stroke-width:2.31100011000000016;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;fill-opacity:1;fill-rule:evenodd"
id="path3886-7"
sodipodi:sides="5"
sodipodi:cx="171.42857"
sodipodi:cy="46"
sodipodi:r1="19.298937"
sodipodi:r2="8.2859936"
sodipodi:arg1="0.8902751"
sodipodi:arg2="1.4916021"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 183.57143,61 -11.48734,-6.739977 -11.16901,7.923775 2.86031,-13.007877 -10.98737,-8.173783 13.25511,-1.299334 4.37844,-12.975451 5.3318,12.204844 13.6934,0.154515 -9.95988,8.842342 z"
transform="matrix(0.37546854,0.46300486,-0.46300486,0.37546854,151.65448,765.60156)" />
<path
sodipodi:type="star"
style="fill:none;stroke:#75ca2a;stroke-width:2.31100011000000016;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;fill-opacity:1;fill-rule:evenodd"
id="path3886-7-4"
sodipodi:sides="5"
sodipodi:cx="171.42857"
sodipodi:cy="46"
sodipodi:r1="19.298937"
sodipodi:r2="8.2859936"
sodipodi:arg1="0.8902751"
sodipodi:arg2="1.4916021"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 183.57143,61 -11.48734,-6.739977 -11.16901,7.923775 2.86031,-13.007877 -10.98737,-8.173783 13.25511,-1.299334 4.37844,-12.975451 5.3318,12.204844 13.6934,0.154515 -9.95988,8.842342 z"
transform="matrix(0.14806312,0.57743176,-0.57743176,0.14806312,210.5769,784.38825)" />
</g>
<g
style="fill:none;fill-opacity:1;stroke:#75ca2a;stroke-opacity:1;stroke-linejoin:round;fill-rule:evenodd"
transform="matrix(0.99411952,0.10828837,-0.10828837,0.99411952,106.11379,-1.1968411)"
id="g3948">
<path
sodipodi:type="star"
style="fill:none;stroke:#75ca2a;stroke-width:2.31100011000000016;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;fill-opacity:1;fill-rule:evenodd"
id="path3886-1"
sodipodi:sides="5"
sodipodi:cx="171.42857"
sodipodi:cy="46"
sodipodi:r1="19.298937"
sodipodi:r2="8.2859936"
sodipodi:arg1="0.8902751"
sodipodi:arg2="1.4916021"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 183.57143,61 -11.48734,-6.739977 -11.16901,7.923775 2.86031,-13.007877 -10.98737,-8.173783 13.25511,-1.299334 4.37844,-12.975451 5.3318,12.204844 13.6934,0.154515 -9.95988,8.842342 z"
transform="matrix(-0.49120937,-0.33773285,0.33773285,-0.49120937,146.66516,1074.7528)"
inkscape:transform-center-x="0.27771579"
inkscape:transform-center-y="-0.83112959" />
<path
sodipodi:type="star"
style="fill:none;stroke:#75ca2a;stroke-width:2.31100011000000016;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;fill-opacity:1;fill-rule:evenodd"
id="path3886-7-9"
sodipodi:sides="5"
sodipodi:cx="171.42857"
sodipodi:cy="46"
sodipodi:r1="19.298937"
sodipodi:r2="8.2859936"
sodipodi:arg1="0.8902751"
sodipodi:arg2="1.4916021"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 183.57143,61 -11.48734,-6.739977 -11.16901,7.923775 2.86031,-13.007877 -10.98737,-8.173783 13.25511,-1.299334 4.37844,-12.975451 5.3318,12.204844 13.6934,0.154515 -9.95988,8.842342 z"
transform="matrix(-0.37546854,-0.46300486,0.46300486,-0.37546854,94.38437,1070.3381)" />
<path
sodipodi:type="star"
style="fill:none;stroke:#75ca2a;stroke-width:2.31100011000000016;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;fill-opacity:1;fill-rule:evenodd"
id="path3886-7-4-9"
sodipodi:sides="5"
sodipodi:cx="171.42857"
sodipodi:cy="46"
sodipodi:r1="19.298937"
sodipodi:r2="8.2859936"
sodipodi:arg1="0.8902751"
sodipodi:arg2="1.4916021"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 183.57143,61 -11.48734,-6.739977 -11.16901,7.923775 2.86031,-13.007877 -10.98737,-8.173783 13.25511,-1.299334 4.37844,-12.975451 5.3318,12.204844 13.6934,0.154515 -9.95988,8.842342 z"
transform="matrix(-0.14806312,-0.57743176,0.57743176,-0.14806312,35.461955,1051.5514)" />
</g>
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path3958"
d="m 87.142856,932.36218 c 4.556801,-8.09524 11.427791,-16.19048 10.714291,-24.28571 13.486473,7.78057 24.121473,16.98688 30.000003,28.57142 7.64021,-31.93121 16.90793,-47.58745 26.42858,-60.71428 4.57784,7.35027 3.59722,13.77414 18.57142,22.85714 -14.52381,14.86767 -29.04762,29.16152 -43.57143,70 -9.88294,-16.30754 -22.76635,-29.61461 -42.142864,-36.42857 z"
style="fill:none;stroke:#75ca2a;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;fill-opacity:1;fill-rule:evenodd" />
</g>
<path
style="fill:#75ca2a;stroke:#75ca2a;stroke-width:1.65071440000000003;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;fill-opacity:1"
d="m 125.09408,164.53394 c -7.84601,-11.2582 -20.58387,-22.05813 -31.912823,-27.05762 -2.273888,-1.00347 -4.232889,-1.9201 -4.353336,-2.03695 -0.120447,-0.11686 1.063021,-2.30703 2.629928,-4.86705 4.082047,-6.66928 5.917136,-10.42208 6.827648,-13.96272 l 0.797945,-3.10291 5.696018,3.78595 c 6.94471,4.61592 17.94435,15.47783 20.35329,20.09845 0.97287,1.86607 2.1588,3.39285 2.63541,3.39285 0.4766,0 1.21598,-1.36607 1.64306,-3.03571 5.28005,-20.64206 12.61712,-38.255489 21.30594,-51.147222 l 3.54135,-5.254364 3.39891,6.580912 c 2.83428,5.487696 4.17468,7.220808 8.0689,10.432935 2.56849,2.118609 4.96386,3.852019 5.32305,3.852019 0.35918,0 -1.94897,2.74887 -5.12923,6.10858 -14.88576,15.72579 -25.68006,33.12302 -33.99149,54.78428 -1.4697,3.83036 -2.74069,6.96429 -2.82442,6.96429 -0.0837,0 -1.88829,-2.49107 -4.01015,-5.53572 z"
id="path3839"
inkscape:connector-curvature="0"
transform="translate(0,796.36218)" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Layer" />
</svg>
<p class="lastupdated">Last Updated: 2016-07-14 12:00:00 +0000</p>
</header>
<div class="menu-title">
Menu
</div>
<div class="hr"></div>
<nav>
<ul>
<li>
<ul>
<li>
<a href="#welcome">Introduction</a>
<!--<ul>-->
<!--<li><a href="#contribute">How to contribute</a></li>-->
<!--<li><a href="#spread_the_word">Spread the work</a></li>-->
<!--</ul>-->
</li>
<li><a href="#modularmvc">Modular Model View Controller</a></li>
<li><a href="#module-development">Module Development</a></li>
</ul>
</li>
<li>
<ul>
<li><a href="#extension-development">Extending Modules</a></li>
<li><a href="#translating-suitecrm">Translating Labels</a></li>
<li><a href="#dashlet-development">Dashlet Development</a></li>
</ul>
</li>
<li>
<ul>
<li><a href="#template-development">Templating</a></li>
<li><a href="#theme-development">Building Themes</a></li>
<li><a href="#integrating-suitecrm">Integrating Applications</a></li>
</ul>
<li>
<ul>
<li><a href="#getting-help">Getting Help</a></li>
<li><a href="#contributing-back-to-suitecrm">Contributing Back To SuiteCRM</a></li>
<li><a href="#faq">Frequently Asked Questions</a></li>
</ul>
</li>
</ul>
</nav>
<div class="hr"></div>
<section id="welcome">
<div class="chapter">Chapter 1</div>
<h2>Introduction</h2>
<p>
SuiteCRM - The Right Way is a series of brief guides with references to more detailed information related to each guide. Each guide represents the best practices of developing software with SuiteCRM.
</p>
<h3>Audience</h3>
<p>These guides are for software developers who wish to get started developing with SuiteCRM.</p>
<h2 id="contribute">How to contribute</h2>
<p>
Please contribute to this project on <a href="https://github.com/daniel-samson/suitecrm-the-right-way">github</a>. Add a guide, check for spelling, or raise an issue.
</p>
<h2 id="spread_the_word">Spread the word</h2>
<p>
Share the love. Tell someone else about this site. <a href="https://twitter.com/suitecrmtrw">We are on twitter!</a>
</p>
</section>
<div class="back-to-top"><a href="#menu">Back To Top</a></div>
<section id="modularmvc">
<div class="chapter">Chapter 2</div>
<h2>Modular Model View Controller (MVC)</h2>
<p class="chapter-image">
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="256"
height="256"
id="svg2"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="mvc.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4473592"
inkscape:cx="195.60752"
inkscape:cy="78.331542"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="927"
inkscape:window-height="1028"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="0" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-796.36218)">
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 73.282443,119.20611 0,20.03053 -1.954199,0"
id="path3108"
inkscape:connector-curvature="0"
transform="translate(0,796.36218)" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 119.69466,190.0458 27.35878,0 0,0.48855"
id="path3110"
inkscape:connector-curvature="0"
transform="translate(0,796.36218)" />
<g
transform="matrix(0.68510833,0,0,0.68510833,17.075054,385.12003)"
id="g3082">
<rect
style="fill:#008066;fill-opacity:1;stroke:none"
id="rect3084"
width="157.71178"
height="156.022"
x="0.563254"
y="795.51727"
ry="56.044006"
rx="65.056107" />
<path
sodipodi:type="star"
style="fill:#88aa00;fill-opacity:1;stroke:none"
id="path3086"
sodipodi:sides="3"
sodipodi:cx="137.43454"
sodipodi:cy="78.574257"
sodipodi:r1="59.742355"
sodipodi:r2="29.871178"
sodipodi:arg1="0.52359878"
sodipodi:arg2="1.5707963"
inkscape:flatsided="true"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 189.17294,108.44543 -103.476798,0 51.738398,-89.613528 z"
transform="matrix(0.67884468,0,0,0.67884468,-8.5266332,837.89529)"
inkscape:transform-center-y="-10.13894" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#eef4d7;fill-opacity:1;stroke:none;font-family:Sans"
x="31.542341"
y="841.14111"
id="text3088"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3090"
x="31.542341"
y="841.14111"
style="font-size:28px;fill:#eef4d7">Module</tspan></text>
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#f6ffd5;fill-opacity:1;stroke:none;font-family:Sans"
x="76.602875"
y="881.6955"
id="text3092"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3094"
x="76.602875"
y="881.6955"
style="font-size:20px;fill:#f6ffd5">M</tspan></text>
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#f6ffd5;fill-opacity:1;stroke:none;font-family:Sans"
x="65.843788"
y="906.47882"
id="text3096"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3098"
x="65.843788"
y="906.47882"
style="font-size:20px;fill:#f6ffd5">V</tspan></text>
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#f6ffd5;fill-opacity:1;stroke:none;font-family:Sans"
x="91.557755"
y="906.47876"
id="text3100"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3102"
x="91.557755"
y="906.47876"
style="font-size:20px;fill:#f6ffd5">C</tspan></text>
</g>
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 147.54198,182.71756 -0.27935,-0.48385 -14.07486,7.73927 14.01818,8.82929 0.82458,-1.42822"
id="path3112"
inkscape:connector-curvature="0"
transform="translate(0,796.36218)"
sodipodi:nodetypes="ccccc" />
<g
id="g3060"
transform="matrix(0.68510833,0,0,0.68510833,139.30168,385.12003)">
<rect
rx="65.056107"
ry="56.044006"
y="795.51727"
x="0.563254"
height="156.022"
width="157.71178"
id="rect3062"
style="fill:#008066;fill-opacity:1;stroke:none" />
<path
inkscape:transform-center-y="-10.13894"
transform="matrix(0.67884468,0,0,0.67884468,-8.5266332,837.89529)"
d="m 189.17294,108.44543 -103.476798,0 51.738398,-89.613528 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="true"
sodipodi:arg2="1.5707963"
sodipodi:arg1="0.52359878"
sodipodi:r2="29.871178"
sodipodi:r1="59.742355"
sodipodi:cy="78.574257"
sodipodi:cx="137.43454"
sodipodi:sides="3"
id="path3064"
style="fill:#88aa00;fill-opacity:1;stroke:none"
sodipodi:type="star" />
<text
sodipodi:linespacing="125%"
id="text3066"
y="841.14111"
x="31.542341"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#eef4d7;fill-opacity:1;stroke:none;font-family:Sans"
xml:space="preserve"><tspan
style="font-size:28px;fill:#eef4d7"
y="841.14111"
x="31.542341"
id="tspan3068"
sodipodi:role="line">Module</tspan></text>
<text
sodipodi:linespacing="125%"
id="text3070"
y="881.6955"
x="76.602875"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#f6ffd5;fill-opacity:1;stroke:none;font-family:Sans"
xml:space="preserve"><tspan
style="font-size:20px;fill:#f6ffd5"
y="881.6955"
x="76.602875"
id="tspan3072"
sodipodi:role="line">M</tspan></text>
<text
sodipodi:linespacing="125%"
id="text3074"
y="906.47882"
x="65.843788"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#f6ffd5;fill-opacity:1;stroke:none;font-family:Sans"
xml:space="preserve"><tspan
style="font-size:20px;fill:#f6ffd5"
y="906.47882"
x="65.843788"
id="tspan3076"
sodipodi:role="line">V</tspan></text>
<text
sodipodi:linespacing="125%"
id="text3078"
y="906.47876"
x="91.557755"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#f6ffd5;fill-opacity:1;stroke:none;font-family:Sans"
xml:space="preserve"><tspan
style="font-size:20px;fill:#f6ffd5"
y="906.47876"
x="91.557755"
id="tspan3080"
sodipodi:role="line">C</tspan></text>
</g>
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 121.16031,70.839695 24.42748,0 0,0.977099"
id="path3116"
inkscape:connector-curvature="0"
transform="translate(0,796.36218)" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 121.52672,859.2324 8.30535,8.30534 0.48855,-0.48854 0,0"
id="path3118"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 129.9542,867.44615 -7.57252,7.57252 0.24427,0.24427"
id="path3122"
inkscape:connector-curvature="0" />
<g
id="g3007"
transform="matrix(0.68510833,0,0,0.68510833,17.075054,268.52597)">
<rect
rx="65.056107"
ry="56.044006"
y="795.51727"
x="0.563254"
height="156.022"
width="157.71178"
id="rect3005"
style="fill:#008066;fill-opacity:1;stroke:none" />
<path
inkscape:transform-center-y="-10.13894"
transform="matrix(0.67884468,0,0,0.67884468,-8.5266332,837.89529)"
d="m 189.17294,108.44543 -103.476798,0 51.738398,-89.613528 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="true"
sodipodi:arg2="1.5707963"
sodipodi:arg1="0.52359878"
sodipodi:r2="29.871178"
sodipodi:r1="59.742355"
sodipodi:cy="78.574257"
sodipodi:cx="137.43454"
sodipodi:sides="3"
id="path3003"
style="fill:#88aa00;fill-opacity:1;stroke:none"
sodipodi:type="star" />
<text
sodipodi:linespacing="125%"
id="text2985"
y="841.14111"
x="31.542341"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#eef4d7;fill-opacity:1;stroke:none;font-family:Sans"
xml:space="preserve"><tspan
style="font-size:28px;fill:#eef4d7"
y="841.14111"
x="31.542341"
id="tspan2987"
sodipodi:role="line">Module</tspan></text>
<text
sodipodi:linespacing="125%"
id="text2989"
y="881.6955"
x="76.602875"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#f6ffd5;fill-opacity:1;stroke:none;font-family:Sans"
xml:space="preserve"><tspan
style="font-size:20px;fill:#f6ffd5"
y="881.6955"
x="76.602875"
id="tspan2991"
sodipodi:role="line">M</tspan></text>
<text
sodipodi:linespacing="125%"
id="text2993"
y="906.47882"
x="65.843788"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#f6ffd5;fill-opacity:1;stroke:none;font-family:Sans"
xml:space="preserve"><tspan
style="font-size:20px;fill:#f6ffd5"
y="906.47882"
x="65.843788"
id="tspan2995"
sodipodi:role="line">V</tspan></text>
<text
sodipodi:linespacing="125%"
id="text2997"
y="906.47876"
x="91.557755"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#f6ffd5;fill-opacity:1;stroke:none;font-family:Sans"
xml:space="preserve"><tspan
style="font-size:20px;fill:#f6ffd5"
y="906.47876"
x="91.557755"
id="tspan2999"
sodipodi:role="line">C</tspan></text>
</g>
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 143.57252,861.64462 -9.44373,5.45234"
id="path3124"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 142.53435,874.53012 -8.30534,-7.32825 0,0"
id="path3128"
inkscape:connector-curvature="0" />
<g
transform="matrix(0.68510833,0,0,0.68510833,139.30168,268.52597)"
id="g3038">
<rect
style="fill:#008066;fill-opacity:1;stroke:none"
id="rect3040"
width="157.71178"
height="156.022"
x="0.563254"
y="795.51727"
ry="56.044006"
rx="65.056107" />
<path
sodipodi:type="star"
style="fill:#88aa00;fill-opacity:1;stroke:none"
id="path3042"
sodipodi:sides="3"
sodipodi:cx="137.43454"
sodipodi:cy="78.574257"
sodipodi:r1="59.742355"
sodipodi:r2="29.871178"
sodipodi:arg1="0.52359878"
sodipodi:arg2="1.5707963"
inkscape:flatsided="true"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 189.17294,108.44543 -103.476798,0 51.738398,-89.613528 z"
transform="matrix(0.67884468,0,0,0.67884468,-8.5266332,837.89529)"
inkscape:transform-center-y="-10.13894" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#eef4d7;fill-opacity:1;stroke:none;font-family:Sans"
x="31.542341"
y="841.14111"
id="text3044"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3046"
x="31.542341"
y="841.14111"
style="font-size:28px;fill:#eef4d7">Module</tspan></text>
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#f6ffd5;fill-opacity:1;stroke:none;font-family:Sans"
x="76.602875"
y="881.6955"
id="text3048"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3050"
x="76.602875"
y="881.6955"
style="font-size:20px;fill:#f6ffd5">M</tspan></text>
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#f6ffd5;fill-opacity:1;stroke:none;font-family:Sans"
x="65.843788"
y="906.47882"
id="text3052"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3054"
x="65.843788"
y="906.47882"
style="font-size:20px;fill:#f6ffd5">V</tspan></text>
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#f6ffd5;fill-opacity:1;stroke:none;font-family:Sans"
x="91.557755"
y="906.47876"
id="text3056"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3058"
x="91.557755"
y="906.47876"
style="font-size:20px;fill:#f6ffd5">C</tspan></text>
</g>
</g>
</svg>
</p>
<p>
When looking at SuiteCRM. You may ask yourself; where are the models? the views? and the controllers? What MVC framework does SuiteCRM deploy?
</p>
<p>
SuiteCRM is made up of modules. A module is a MVC container. Each module contains a single model, a single controller with many views and side effect files. A module in SuiteCRM is almost synonymous with a database model. A module represents a single database table. It defines which fields are available and which modules it is related to.
</p>
<p>
When developing in SuiteCRM, you can create a module using module builder rather than creating a module from scratch. The SuiteCRM framework takes care of the application functionality for you. This enables you to spend more time on the features you wish to implement and less time on the setting up the things you need. If you need to configure and customise a module, you should use studio to extend an existing module.
</p>
<p>
You can also change a module by editing one of its side effect files such as the metadata files, the languages files, or variable definitions (vardefs.php). SuiteCRM also offers ways to customise the behaviour of the application through logic hooks, function fields, views, actions and templates.
</p>
<h6>References</h6>
<small>
<ul>
<li>
<a href="http://support.sugarcrm.com/Documentation/Sugar_Developer/Sugar_Developer_Guide_6.5/Introduction/">SugarCRM CE 6.5 Documentation</a>
</li>
</ul>
</small>
</section>
<div class="back-to-top"><a href="#menu">Back To Top</a></div>
<section id="module-development">
<div class="chapter">Chapter 3</div>
<h2>Module Development</h2>
<p>
The best way to create a module is to use Module Builder. When you want to create a module from code. You should still use module builder to create the package. It will save you hours of time and it will give you a way to deploy your changes to other instances of SuiteCRM. When you wish to create upgrade safe changes to a module you should use studio.
</p>
<p>
Before deploying your new package in Module Builder, you may wish to export it first. Exporting a module will give you a zip file package which can then be installed into any SuiteCRM instance. This is really useful for 3rd party developers, as a package contains an installer plus your new module(s).
</p>
<p>
After extracting a package, You can see the <em>modules</em> folder that represents the modules folder of a SuiteCRM instance. You can continue to develop your module on your instance of SuiteCRM. When you are ready to deploy your module, you can replace the contents of the modules folder with your module(s). You can then recreate the zip file and load your module using module loader tool.
</p>
<p>
In each package, the manifest file contains all of the installation details including the checks and constraints used during the installation process. A good practice is to change the version of a package before you deploy it, and specify which versions of SuiteCRM can install your package. It is a good idea to only specify the versions that you have tested. That way you won't accidently break your production version of SuiteCRM.
</p>
<h6>References</h6>
<small>
<ul>
<li>
<a href="http://support.sugarcrm.com/Documentation/Sugar_Developer/Sugar_Developer_Guide_6.5/Introduction/#Module_Framework">SugarCRM CE 6.5 - Modules</a>
</li>
<li>
<a href="https://leanpub.com/suitecrmfordevelopers">SuiteCRM for Developers by Jim Mackin</a>
</li>
</ul>
</small>
</section>
<div class="back-to-top"><a href="#menu">Back To Top</a></div>
<section id="extension-development">
<div class="chapter">Chapter 4</div>
<h2>Extending SuiteCRM</h2>
<p>
When you need to customise a module, you should use Studio to extend an existing module. Studio is just like Module Builder. However, Studio creates changes which persist after you upgrade your instance of SuiteCRM. This is achieved through the extensions framework in SuiteCRM.
</p>
<p>
When modifying a module that comes with SuiteCRM, it is recommended that you use the extensions framework instead of modifying a module directly. This ensures that when you upgrade your instance of SuiteCRM, you changes will not be overwritten by the upgrade installer.
</p>
<p>
All extensions exist in the <em>custom</em> directory of a SuiteCRM instance. The custom directory is the root directory for all extensions. You can copy any side effect files into the custom directory. As long as you keep the directory structure in tact, SuiteCRM will try and load the side effect files. Classes can also be extended but you must add the "<em>Custom</em>" prefix to the name of the class. If you are extending a class form the modules directory, you also need change the base class so your class inherits from the class in modules. This ensures that the class behaves correctly.
</p>
<p>
Unfortunately, some parts of SuiteCRM cannot be extended. For example, many of the libraries in the <em>include</em> directory cannot be extended.
</p>
<h6>References</h6>
<small>
<ul>
<li>
<a href="http://support.sugarcrm.com/Documentation/Sugar_Developer/Sugar_Developer_Guide_6.5/Introduction/#Extension_Framework">SugarCRM CE 6.5 - Extensions Framework</a>
</li>
</ul>
</small>
</section>
<div class="back-to-top"><a href="#menu">Back To Top</a></div>
<section id="translating-suitecrm">
<div class="chapter">Chapter 5</div>
<h2>Translating SuiteCRM</h2>
<p></p>
<p>
SuiteCRM employs labels as a means to communicate intent to a user. Labels are inside buttons, next to fields, and above entire sections of elements.
Labels are used everywhere in SuiteCRM. The great thing about labels is that they are translatable.
So users from many regions can use the same instance of SuiteCRM, share the same data, and use the same features at the same time.
</p>
<p>
Labels can be accessed anywhere in the application. SuiteCRM offers different mechanisms for developers to get access to labels.
</p>
<p>
All labels are split up into two camps. Application wide labels and module wide labels.
The application wide labels are general labels which happen to be used everywhere in the application. They can also include drop down values.
Module wide labels however, can only be accessed when the user is accessing a module or if that module is related to an other module.
</p>
<h3 id="how-labels-work">How Do Labels work?</h3>
<p>SuiteCRM defines languages through language packs. When a language pack is installed you can edit the labels for that language pack.</p>
<p>All application wide labels are kept in <em>include/languages/</em> and/or <em>custom/extension/application/Ext/Language/</em></p>
<p>Module wide labels are kept in <em>module/<module>/languages</em> and/or <em>custom/modules/<module>/languages</em></p>
<p>A language has an assigned prefix. The built in prefix is en_us. When you first install SuiteCRM, you will notice that there are many en_us.lang.php files place through out the application.</p>
<p>Each language file containers are a list of key/value pairs. The keys are used by developers to include in their code. The values are used by the translators/developers to describe intent to the user.
SuiteCRM employs these keys as a reference, each key is referenced by the different language packs.
So that the application doesn't need to know the translation until it has to use it.
Then SuiteCRM can simply look up the key for the language of the current user.
</p>
<p>Example of a simple label:</p>
<pre>
'CaseKey' => 'Cases Translation',
</pre>
<p>Example of a dropdown:</p>
<pre>
'opportunity_relationship_type_dom' => array(
'' => '',
'Primary Decision Maker' => 'Primary Decision Maker',
'Business Decision Maker' => 'Business Decision Maker',
'Business Evaluator' => 'Business Evaluator',
'Technical Decision Maker' => 'Technical Decision Maker',
'Technical Evaluator' => 'Technical Evaluator',
'Executive Sponsor' => 'Executive Sponsor',
'Influencer' => 'Influencer',
'Other' => 'Other',
),
</pre>
<p>You can also edit labels in studio and also with the dropdown editor</p>
<h6>References</h6>
<small>
<ul>
<li>
<a href="https://suitecrm.com/forum/international-language-support/7919-guide-to-install-a-language-pack-that-we-can-all-understand">How to install language packs</a>
</li>
<li>
<a href="https://crowdin.com/project/suitecrmtranslations">Translations</a>
</li>
<li>
<a href="https://leanpub.com/suitecrmfordevelopers">Chapter 9 - SuiteCRM for Developers by Jim Mackin</a>
</li>
</ul>
</small>
</section>
<div class="back-to-top"><a href="#menu">Back To Top</a></div>
<section id="dashlet-development">
<div class="chapter">Chapter 6</div>
<h2>Dashlet Development</h2>
<p>
Creating Dashlets. Saving/Retrieving options.
</p>
</section>
<div class="back-to-top"><a href="#menu">Back To Top</a></div>
<section id="template-development">
<div class="chapter">Chapter 7</div>
<h2>Templating</h2>
<small>
PDF/Email Templates
</small>
</section>
<div class="back-to-top"><a href="#menu">Back To Top</a></div>
<section id="theme-development">
<div class="chapter">Chapter 8</div>
<h2>Working With Themes</h2>
<p>
create and add a theme
creating custom templates
</p>
</section>
<div class="back-to-top"><a href="#menu">Back To Top</a></div>
<section id="integrating-suitecrm">
<div class="chapter">Chapter 9</div>
<h2>Integrating SuiteCRM</h2>
<p>
portal development, rest and soap
</p>
</section>
<div class="back-to-top"><a href="#menu">Back To Top</a></div>