template.xml 69 KB
Newer Older
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348
<?xml version="1.0" encoding="UTF-8"?>
<template xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://xml.sigsiu.net/SobiPro/template.xsd">
	<name>SobiPackages</name>
	<id>sobipackages</id>
	<authorName>Sigrid Suski and Radek Suski</authorName>
	<authorEmail>sobi[at]sigsiu.net</authorEmail>
	<authorUrl>http://www.Sigsiu.NET</authorUrl>
	<copyright>Copyright (C) 2006-2018 Sigsiu.NET GmbH</copyright>
	<license>Sigsiu.NET Template License V1</license>
	<creationDate>2018-10-27</creationDate>
	<version>2.0</version>
	<description>
		Business Directory with different packages (Basic, Silver, Gold) based on default template V4.2 using Font Awesome 4 icons.
	</description>
	<previewImage>SobiPackages.png</previewImage>
	<files>
		<file path="category/view.xsl">
			Default category view template with top menu, navigation, entries and categories.
		</file>
		<file path="common/alphaindex.xsl">
			Template for the alpha index (letters) only.
		</file>
		<file path="common/alphamenu.xsl">
			Template for the alpha menu. Fields chooser and calls the alpha index (letters) template.
		</file>
		<file path="common/categories.xsl">
			Template for the categories list (categoriesLoop). Calls the template for a single category.
		</file>
		<file path="common/category.xsl">
			Template for a single category in the categories list.
		</file>
		<file path="common/editfields.xsl">
			Template to output one field in entry form. Called from default loop in edit.xsl.
		</file>
		<file path="common/entries.xsl">
			Template to display all entries (entriesLoop) within a category or the search function. Build the structure of all entries and calls the "vCard"
			template while displaying single entry.
		</file>
		<file path="common/font.xsl">
			Template to load Google fonts. Will be called from the topmenu template.
		</file>
		<file path="common/manage.xsl">
			Displays the managing functions like edit entry, approve aso, within an entry.
		</file>
		<file path="common/messages.xsl">
			Displays the message bar.
		</file>
		<file path="common/navigation.xsl">
			Template for the site navigation.
		</file>
		<file path="common/searchfields.xsl">
			Template to output one field in the search. Called from default loop.
		</file>
		<file path="common/showfields.xsl">
			Template to output one field in vCard and details view. Called from default loop.
		</file>
		<file path="common/topmenu.xsl">
			Template for the top menu.
		</file>
		<file path="common/vcard.xsl">
			Template to display single entry within a category, any listing view or the search function.
		</file>
		<file path="css/tmpl/jbootstrap.css">
			CSS classes to restore changes made by Joomla Bootstrap 2 template.
		</file>
		<file path="css/tmpl/joostrap.css">
			CSS classes to restore changes made by Joostrap templates.
		</file>
		<file path="css/custom.css">
			Custom CSS file. Your own CSS changes goes in here.
		</file>
		<file path="css/custom.less">
			LESS file for the custom CSS file. Your own CSS changes goes in here.
		</file>
		<file path="css/theme.css">
			The theme CSS file. Automatically generated!
		</file>
		<file path="css/theme.less">
			LESS file for the theme CSS file.
		</file>
		<file path="entry/details.ini">
			Configuration file to load JS files in details view.
		</file>
		<file path="entry/details.xsl">
			Template for the entry details view page.
		</file>
		<file path="entry/edit.ini">
			Configuration file to load JS files in entry form.
		</file>
		<file path="entry/edit.json">
			Template configuration file for the entry form. Automatically generated!
		</file>
		<file path="entry/edit.xsl">
			Template for the add/edit entry page.
		</file>
		<file path="entry/basic.xsl">
			Template for the add/edit basic/bronze package entry page.
		</file>
		<file path="entry/silver.xsl">
			Template for the add/edit silver package entry page.
		</file>
		<file path="entry/gold.xsl">
			Template for the add/edit gold package entry page.
		</file>
		<file path="feeds/rss.ini">
			Configuration file for RSS feeds.
		</file>
		<file path="feeds/rss.json">
			Configuration file for RSS feeds. Automatically generated!
		</file>
		<file path="feeds/rss.xsl">
			Template for Atom/RSS feeds.
		</file>
		<file path="js/alpha.js">
			JavaScript functions for the alpha menu.
		</file>
		<file path="js/autosuggest.js">
			JavaScript functions for the auto-suggest feature used in search and entry form.
		</file>
		<file path="js/details.js">
			JavaScript functions for the details view.
		</file>
		<file path="js/form.js">
			JavaScript functions for the entry form.
		</file>
		<file path="js/navigation.js">
			JavaScript functions for AJAX navigation.
		</file>
		<file path="js/search.js">
			JavaScript functions for the search form.
		</file>
		<file path="listing/alpha.xsl">
			Alpha listings template.
		</file>
		<file path="listing/date.xsl">
			Date listings template.
		</file>
		<file path="listing/user.xsl">
			User listings template.
		</file>
		<file path="payment/list.xsl">
			List of payments on the payment page.
		</file>
		<file path="payment/payment.xsl">
			Payment page after an entry has been added.
		</file>
		<file path="payment/submit.xsl">
			Template for the preview of the payment.
		</file>
		<file path="search/view.xsl">
			Template for the search form.
		</file>
		<file path="search/search.ini">
			Configuration file to load JS files in search form.
		</file>
		<file path="section/ajax.ini">
			Configuration file for AJAX navigation.
		</file>
		<file path="section/ajax.xsl">
			Template for AJAX navigation.
		</file>
		<file path="section/view.xsl">
			Template for the section main view.
		</file>
		<file path="themes/cornfield.less">
			Cornfield color theme (yellow/orange/brown).
		</file>
		<file path="themes/cornflower.less">
			Cornflower color theme (blue).
		</file>
		<file path="themes/malva.less">
			Malva color theme (violett).
		</file>
		<file path="themes/meadow.less">
			Meadow color theme (green).
		</file>
		<file path="themes/pastels.less">
			Pastels color theme (pastel colours).
		</file>
		<file path="themes/poppyseed.less">
			Poppyseed color theme (shades of grey).
		</file>
		<file path="themes/roses.less">
			Roses color theme (red/rose).
		</file>
		<file path="themes/custom.less">
			Custom color theme (defined in the template settings)
		</file>
		<file path="themes/sobipro.less">
			SobiPro color theme (SobiPro colors; default).
		</file>
		<file path="themes/terra.less">
			Terra color theme (brown).
		</file>
		<file path="themes/waterfall.less">
			Waterfall color theme (aquamarine).
		</file>
		<file path="template.php">
			PHP file with additional functions to use within templates.
		</file>
		<file path="translation.xml">
			Translation file for texts in templates.
		</file>
		<file path="config.ini">
			Main template configuration file.
		</file>
		<file path="config.json">
			Template settings configuration file. Automatically generated!
		</file>
		<file path="config.xml">
			Template settings file.
		</file>
	</files>
	<requirements>
		<core version="1.4.9"/>
		<field version="2.3">calendar_field</field>
	</requirements>
	<install>
		<section>
			<name>Advanced Business Directory</name>
			<description><![CDATA[<p>Business Directory with different packages (Basic, Silver, Gold ).</p>]]></description>
			<nameField>field_name</nameField>
			<settings>
				<setting key="show" section="alphamenu" value="true"/>
				<setting key="verify" section="alphamenu" value="false"/>
				<setting key="letters" section="alphamenu" value="A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,0-9"/>
				<setting key="iconsize" section="category" value="false"/>
				<setting key="show_desc" section="category" value="false"/>
				<setting key="show_icon" section="category" value="true"/>
				<setting key="parse_desc" section="category" value="false"/>
				<setting key="show_intro" section="category" value="true"/>
				<setting key="top_menu" section="general" value="true"/>
				<setting key="parse_template_content" section="general" value="false"/>
				<setting key="subcats" section="list" value="true"/>
				<setting key="cat_desc" section="list" value="false"/>
				<setting key="cat_meta" section="list" value="false"/>
				<setting key="entry_cats" section="list" value="true"/>
				<setting key="entry_meta" section="list" value="false"/>
				<setting key="num_subcats" section="list" value="6"/>
				<setting key="entries_limit" section="list" value="10"/>
				<setting key="entries_in_line" section="list" value="2"/>
				<setting key="entries_ordering" section="list" value="position.asc"/>
				<setting key="categories_in_line" section="list" value="2"/>
				<setting key="categories_ordering" section="list" value="name.asc"/>
				<setting key="entries_ordering" section="search" value="disabled"/>
				<setting key="highlight-search" section="search" value="false"/>
				<setting key="template" section="section" value="sobipackages"/>
				<setting key="development" section="template" value="false"/>
				<setting key="icon_fonts_arr" section="template" value="YToyOntpOjA7czoxNDoiZm9udC1hd2Vzb21lLTQiO2k6MTtzOjE0OiJmb250LWF3ZXNvbWUtMyI7fQ=="/>
				<setting key="bootstrap3-load" section="template" value="true"/>
				<setting key="icon_fonts_load" section="template" value="true"/>
				<setting key="bootstrap3-source" section="template" value="true"/>
				<setting key="bootstrap3-styles" section="template" value="true"/>
				<setting key="bootstrap-disabled" section="template" value="false"/>
			</settings>
			<fields>
				<field>
					<name>field_name</name>
					<label>Company Name</label>
					<type>inbox</type>
					<required>true</required>
					<showIn>both</showIn>
					<adminField>false</adminField>
					<options>
						<option attribute="inSearch">true</option>
						<option attribute="searchMethod">general</option>
						<option attribute="priority">5</option>
						<option attribute="withLabel">false</option>
						<option attribute="maxLength">150</option>
						<option attribute="admList">false</option>
						<option attribute="isFree">true</option>
						<option attribute="addToMetaDesc">true</option>
						<option attribute="addToMetaKeys">true</option>
						<option attribute="fee">false</option>
						<option attribute="cssClass">spClassInbox</option>
						<option attribute="position">true</option>
						<option attribute="uniqueData">false</option>
						<option attribute="editable">true</option>
						<option attribute="parse">false</option>
						<option attribute="suggesting">1</option>
						<option attribute="metaSeparator">,</option>
						<option attribute="cssClassView">spViewInbox</option>
						<option attribute="cssClassSearch">spClassSearchInbox</option>
						<option attribute="cssClassEdit">spClassEditInbox</option>
						<option attribute="showEditLabel">1</option>
						<option attribute="labelAsPlaceholder">1</option>
						<option attribute="bsWidth">7</option>
						<option attribute="bsSearchWidth">7</option>
					</options>
				</field>
				<field>
					<name>field_category</name>
					<label>Categories</label>
					<type>category</type>
					<required>true</required>
					<showIn>hidden</showIn>
					<adminField>false</adminField>
					<options>
						<option attribute="inSearch">true</option>
						<option attribute="searchMethod">mselect</option>
						<option attribute="priority">5</option>
						<option attribute="withLabel">false</option>
						<option attribute="admList">false</option>
						<option attribute="isFree">true</option>
						<option attribute="addToMetaDesc">true</option>
						<option attribute="addToMetaKeys">true</option>
						<option attribute="fee">false</option>
						<option attribute="cssClass">spClassCategory</option>
						<option attribute="position">2</option>
						<option attribute="uniqueData">false</option>
						<option attribute="editable">true</option>
						<option attribute="parse">false</option>
						<option attribute="cssClassEdit">spClassEditCategory</option>
						<option attribute="cssClassSearch">spClassSearchCategory</option>
						<option attribute="method">mselect</option>
						<option attribute="catsMaxLimit">10</option>
						<option attribute="bsWidth">6</option>
						<option attribute="bsSearchWidth">6</option>
						<option attribute="orderCatsBy">position.asc</option>
						<option attribute="searchOrderCatsBy">position.asc</option>
						<option attribute="size">10</option>
						<option attribute="ssize">10</option>
						<option attribute="showEditLabel">1</option>
					</options>
				</field>
				<field>
					<name>field_zip</name>
					<label>Postcode</label>
					<type>inbox</type>
					<required>true</required>
					<showIn>details</showIn>
					<adminField>false</adminField>
					<options>
						<option attribute="inSearch">false</option>
						<option attribute="searchMethod">general</option>
						<option attribute="priority">10</option>
						<option attribute="withLabel">false</option>
						<option attribute="maxLength">150</option>
						<option attribute="admList">false</option>
						<option attribute="isFree">true</option>
						<option attribute="addToMetaDesc">false</option>
						<option attribute="addToMetaKeys">false</option>
						<option attribute="fee">false</option>
						<option attribute="cssClass">spClassInbox postcode</option>
						<option attribute="position">7</option>
						<option attribute="uniqueData">false</option>
						<option attribute="editable">true</option>
						<option attribute="parse">false</option>
						<option attribute="cssClassView">spClassViewInbox</option>
						<option attribute="cssClassSearch">spClassSearchInbox</option>
						<option attribute="cssClassEdit">spClassEditInbox</option>
						<option attribute="showEditLabel">1</option>
						<option attribute="labelAsPlaceholder">1</option>
						<option attribute="bsWidth">3</option>
						<option attribute="bsSearchWidth">4</option>
					</options>
				</field>
				<field>
					<name>field_city</name>
					<label>City</label>
					<type>inbox</type>
					<required>true</required>
					<showIn>details</showIn>
					<adminField>false</adminField>
					<options>
						<option attribute="inSearch">true</option>
						<option attribute="searchMethod">select</option>
						<option attribute="priority">10</option>
						<option attribute="withLabel">false</option>
						<option attribute="maxLength">150</option>
						<option attribute="admList">false</option>
						<option attribute="isFree">true</option>
						<option attribute="addToMetaDesc">false</option>
						<option attribute="addToMetaKeys">true</option>
						<option attribute="fee">false</option>
						<option attribute="cssClass">spClassInbox city</option>
						<option attribute="position">8</option>
						<option attribute="uniqueData">false</option>
						<option attribute="editable">true</option>
						<option attribute="parse">false</option>
						<option attribute="metaSeparator">,</option>
						<option attribute="cssClassView">spClassViewInbox</option>
						<option attribute="cssClassSearch">spClassSearchInbox</option>
						<option attribute="cssClassEdit">spClassEditInbox</option>
						<option attribute="showEditLabel">1</option>
						<option attribute="labelAsPlaceholder">1</option>
						<option attribute="bsWidth">6</option>
						<option attribute="bsSearchWidth">5</option>
					</options>
				</field>
				<field>
					<name>field_contact</name>
					<label>Contact Person</label>
					<type>inbox</type>
					<required>false</required>
					<showIn>details</showIn>
					<adminField>false</adminField>
					<options>
						<option attribute="inSearch">false</option>
						<option attribute="searchMethod">general</option>
						<option attribute="priority">10</option>
						<option attribute="withLabel">true</option>
						<option attribute="maxLength">150</option>
						<option attribute="admList">false</option>
						<option attribute="isFree">true</option>
						<option attribute="addToMetaDesc">false</option>
						<option attribute="addToMetaKeys">false</option>
						<option attribute="fee">false</option>
						<option attribute="cssClass">spClassInbox</option>
						<option attribute="position">5</option>
						<option attribute="uniqueData">false</option>
						<option attribute="editable">true</option>
						<option attribute="parse">false</option>
						<option attribute="cssClassView">spClassViewInbox</option>
						<option attribute="cssClassSearch">spClassSearchInbox</option>
						<option attribute="cssClassEdit">spClassEditInbox</option>
						<option attribute="showEditLabel">1</option>
						<option attribute="labelAsPlaceholder">1</option>
						<option attribute="bsWidth">6</option>
						<option attribute="bsSearchWidth">6</option>
					</options>
				</field>
				<field>
					<name>field_phone</name>
					<label>Phone</label>
					<type>inbox</type>
					<required>false</required>
					<showIn>details</showIn>
					<adminField>false</adminField>
					<options>
						<option attribute="inSearch">false</option>
						<option attribute="searchMethod">general</option>
						<option attribute="priority">10</option>
						<option attribute="withLabel">true</option>
						<option attribute="maxLength">150</option>
						<option attribute="admList">false</option>
						<option attribute="isFree">true</option>
						<option attribute="addToMetaDesc">false</option>
						<option attribute="addToMetaKeys">false</option>
						<option attribute="fee">false</option>
						<option attribute="cssClass">spClassInbox phone</option>
						<option attribute="position">10</option>
						<option attribute="uniqueData">false</option>
						<option attribute="editable">true</option>
						<option attribute="parse">false</option>
						<option attribute="cssClassView">spClassViewInbox</option>
						<option attribute="cssClassEdit">spClassEditInbox</option>
						<option attribute="showEditLabel">1</option>
						<option attribute="labelAsPlaceholder">1</option>
						<option attribute="bsWidth">3</option>
						<option attribute="bsSearchWidth">1</option>
						<option attribute="encryptData">1</option>
					</options>
				</field>
				<field>
					<name>field_fax</name>
					<label>Fax</label>
					<type>inbox</type>
					<required>false</required>
					<showIn>details</showIn>
					<adminField>false</adminField>
					<options>
						<option attribute="inSearch">false</option>
						<option attribute="searchMethod">general</option>
						<option attribute="priority">10</option>
						<option attribute="withLabel">true</option>
						<option attribute="maxLength">150</option>
						<option attribute="admList">false</option>
						<option attribute="isFree">true</option>
						<option attribute="addToMetaDesc">false</option>
						<option attribute="addToMetaKeys">false</option>
						<option attribute="fee">false</option>
						<option attribute="cssClass">spClassInbox fax</option>
						<option attribute="position">11</option>
						<option attribute="uniqueData">false</option>
						<option attribute="editable">true</option>
						<option attribute="parse">false</option>
						<option attribute="cssClassView">spClassViewInbox</option>
						<option attribute="cssClassEdit">spClassEditInbox</option>
						<option attribute="showEditLabel">1</option>
						<option attribute="labelAsPlaceholder">1</option>
						<option attribute="bsWidth">3</option>
						<option attribute="bsSearchWidth">1</option>
						<option attribute="encryptData">1</option>
					</options>
				</field>
				<field>
					<name>field_email</name>
					<label>Email</label>
					<type>inbox</type>
					<required>true</required>
					<showIn>hidden</showIn>
					<adminField>false</adminField>
					<options>
						<option attribute="inSearch">false</option>
						<option attribute="searchMethod">general</option>
						<option attribute="priority">10</option>
						<option attribute="withLabel">false</option>
						<option attribute="maxLength">150</option>
						<option attribute="admList">false</option>
						<option attribute="isFree">true</option>
						<option attribute="addToMetaDesc">false</option>
						<option attribute="addToMetaKeys">false</option>
						<option attribute="fee">false</option>
						<option attribute="cssClass">spClassInbox</option>
						<option attribute="position">4</option>
						<option attribute="uniqueData">false</option>
						<option attribute="editable">true</option>
						<option attribute="parse">false</option>
						<option attribute="cssClassView">spClassViewInbox</option>
						<option attribute="cssClassSearch">spClassSearchInbox</option>
						<option attribute="cssClassEdit">spClassEditInbox</option>
						<option attribute="showEditLabel">1</option>
						<option attribute="labelAsPlaceholder">1</option>
						<option attribute="bsWidth">6</option>
						<option attribute="bsSearchWidth">4</option>
						<option attribute="encryptData">1</option>
					</options>
				</field>
				<field>
					<name>field_short_description</name>
					<label>Short Description</label>
					<type>textarea</type>
					<required>false</required>
					<showIn>vcard</showIn>
					<adminField>false</adminField>
					<options>
						<option attribute="inSearch">true</option>
						<option attribute="searchMethod">general</option>
						<option attribute="priority">5</option>
						<option attribute="withLabel">false</option>
						<option attribute="maxLength">300</option>
						<option attribute="admList">false</option>
						<option attribute="isFree">true</option>
						<option attribute="addToMetaDesc">false</option>
						<option attribute="addToMetaKeys">false</option>
						<option attribute="fee">false</option>
						<option attribute="cssClass">spClassText</option>
						<option attribute="position">14</option>
						<option attribute="uniqueData">false</option>
						<values attribute="allowedAttributes">
							<value name="0"/>
						</values>
						<values attribute="allowedTags">
							<value name="0">span</value>
							<value name="1">br</value>
							<value name="2">div</value>
							<value name="3">p</value>
						</values>
						<option attribute="editable">true</option>
						<option attribute="editor">false</option>
						<option attribute="parse">false</option>
						<option attribute="height">100</option>
						<option attribute="allowHtml">1</option>
						<option attribute="cssClassView">spClassViewText</option>
						<option attribute="cssClassSearch">spClassSearchText</option>
						<option attribute="cssClassEdit">spClassEditText</option>
						<option attribute="showEditLabel">1</option>
						<option attribute="bsWidth">10</option>
					</options>
				</field>
				<field>
					<name>field_full_description</name>
					<label>Full Description</label>
					<type>textarea</type>
					<required>false</required>
					<showIn>details</showIn>
					<adminField>false</adminField>
					<options>
						<option attribute="inSearch">true</option>
						<option attribute="searchMethod">general</option>
						<option attribute="priority">5</option>
						<option attribute="withLabel">false</option>
						<option attribute="admList">false</option>
						<option attribute="isFree">true</option>
						<option attribute="addToMetaDesc">false</option>
						<option attribute="addToMetaKeys">false</option>
						<option attribute="fee">20</option>
						<option attribute="cssClass">spClassText</option>
						<option attribute="position">15</option>
						<option attribute="uniqueData">false</option>
						<values attribute="allowedAttributes">
							<value name="0"/>
						</values>
						<values attribute="allowedTags">
							<value name="0"/>
						</values>
						<option attribute="editable">true</option>
						<option attribute="editor">true</option>
						<option attribute="parse">false</option>
						<option attribute="height">100</option>
						<option attribute="allowHtml">2</option>
						<option attribute="cssClassView">spClassViewText fulldescription</option>
						<option attribute="cssClassSearch">spClassSearchText</option>
						<option attribute="cssClassEdit">spClassEditText</option>
						<option attribute="showEditLabel">1</option>
						<option attribute="bsWidth">10</option>
					</options>
				</field>
				<field>
					<name>field_company_logo</name>
					<label>Company Logo</label>
					<type>image</type>
					<required>false</required>
					<showIn>both</showIn>
					<adminField>false</adminField>
					<options>
						<option attribute="inSearch">false</option>
						<option attribute="searchMethod">general</option>
						<option attribute="priority">5</option>
						<option attribute="withLabel">false</option>
						<option attribute="maxLength">150</option>
						<option attribute="admList">false</option>
						<option attribute="isFree">true</option>
						<option attribute="addToMetaDesc">false</option>
						<option attribute="addToMetaKeys">false</option>
						<option attribute="fee">5</option>
						<option attribute="cssClass">spClassImage</option>
						<option attribute="position">3</option>
						<option attribute="uniqueData">false</option>
						<option attribute="editable">true</option>
						<option attribute="parse">false</option>
						<option attribute="savePath">images/sobipro/entries/{id}/</option>
						<option attribute="inDetails">image</option>
						<option attribute="inVcard">thumb</option>
						<option attribute="thumbHeight">500</option>
						<option attribute="thumbWidth">500</option>
						<option attribute="thumbName">thumb_{orgname}</option>
						<option attribute="keepOrg">1</option>
						<option attribute="resize">1</option>
						<option attribute="maxSize">50000</option>
						<option attribute="resizeWidth">1000</option>
						<option attribute="resizeHeight">1000</option>
						<option attribute="imageName">img_{orgname}</option>
						<option attribute="generateThumb">1</option>
						<option attribute="thumbFloat">right</option>
						<option attribute="imageFloat">right</option>
						<option attribute="cssClassView">spClassViewImage</option>
						<option attribute="cssClassEdit">spClassEditImage</option>
						<option attribute="showEditLabel">1</option>
						<option attribute="detectTransparency">1</option>
						<option attribute="bsWidth">10</option>
					</options>
				</field>
				<field>
					<name>field_website</name>
					<label>Website</label>
					<type>url</type>
					<required>false</required>
					<showIn>details</showIn>
					<adminField>false</adminField>
					<options>
						<option attribute="inSearch">false</option>
						<option attribute="searchMethod">general</option>
						<option attribute="priority">5</option>
						<option attribute="withLabel">false</option>
						<option attribute="maxLength">150</option>
						<option attribute="admList">false</option>
						<option attribute="isFree">true</option>
						<option attribute="addToMetaDesc">false</option>
						<option attribute="addToMetaKeys">false</option>
						<option attribute="fee">false</option>
						<option attribute="cssClass">spClassUrl website</option>
						<option attribute="position">12</option>
						<option attribute="uniqueData">false</option>
						<option attribute="editable">true</option>
						<option attribute="parse">false</option>
						<option attribute="labelMaxLength">150</option>
						<option attribute="labelsLabel">Website</option>
						<values attribute="allowedProtocols">
							<value name="0">https</value>
							<value name="1">http</value>
						</values>
						<option attribute="cssClassView">spClassSearchUrl</option>
						<option attribute="cssClassEdit">spClassEditUrl</option>
						<option attribute="showEditLabel">1</option>
						<option attribute="labelAsPlaceholder">1</option>
						<option attribute="bsWidth">9</option>
					</options>
				</field>
				<field>
					<name>field_business_days</name>
					<label>Business Days</label>
					<type>chbxgroup</type>
					<required>false</required>
					<showIn>details</showIn>
					<adminField>false</adminField>
					<options>
						<option attribute="inSearch">false</option>
						<option attribute="searchMethod">chbx</option>
						<option attribute="priority">5</option>
						<option attribute="withLabel">true</option>
						<option attribute="width">350</option>
						<option attribute="admList">false</option>
						<option attribute="isFree">true</option>
						<option attribute="addToMetaDesc">false</option>
						<option attribute="addToMetaKeys">false</option>
						<option attribute="fee">false</option>
						<option attribute="cssClass">spClassCheckbox days</option>
						<option attribute="position">13</option>
						<option attribute="uniqueData">false</option>
						<option attribute="editable">true</option>
						<option attribute="parse">false</option>
						<option attribute="optWidth">120</option>
						<option attribute="cssClassView">spClassViewCheckbox</option>
						<option attribute="cssClassSearch">spClassSearchCheckbox</option>
						<option attribute="cssClassEdit">spClassEditCheckbox</option>
						<option attribute="showEditLabel">1</option>
						<option attribute="bsSearchWidth">9</option>
						<values attribute="fieldOptions">
							<value name="monday">Monday</value>
							<value name="tuesday">Tuesday</value>
							<value name="wednesday">Wednesday</value>
							<value name="thursday">Thursday</value>
							<value name="friday">Friday</value>
							<value name="saturday">Saturday</value>
							<value name="sunday">Sunday</value>
						</values>
					</options>
				</field>
				<field>
					<name>field_country</name>
					<label>Country</label>
					<type>select</type>
					<required>true</required>
					<showIn>details</showIn>
					<adminField>false</adminField>
					<options>
						<option attribute="inSearch">true</option>
						<option attribute="searchMethod">mselect</option>
						<option attribute="priority">5</option>
						<option attribute="withLabel">true</option>
						<option attribute="admList">false</option>
						<option attribute="isFree">true</option>
						<option attribute="addToMetaDesc">false</option>
						<option attribute="addToMetaKeys">true</option>
						<option attribute="fee">false</option>
						<option attribute="cssClass">spClassSelect</option>
						<option attribute="position">9</option>
						<option attribute="uniqueData">false</option>
						<option attribute="editable">true</option>
						<option attribute="parse">false</option>
						<option attribute="size">10</option>
						<option attribute="selectLabel">Select %s</option>
						<option attribute="ssize">10</option>
						<option attribute="dependencyDefinition">countries.xml</option>
						<option attribute="metaSeparator">,</option>
						<option attribute="cssClassView">spClassViewSelect</option>
						<option attribute="cssClassSearch">spClassSearchSelect</option>
						<option attribute="cssClassEdit">spClassEditSelect</option>
						<option attribute="showEditLabel">1</option>
						<option attribute="bsWidth">4</option>
						<option attribute="bsSearchWidth">5</option>
						<values attribute="fieldOptions">
							<value name="germany">Germany</value>
							<value name="france">France</value>
							<value name="greece">Greece</value>
							<value name="usa">USA</value>
							<value name="canada">Canada</value>
						</values>
					</options>
				</field>
				<field>
					<name>field_street</name>
					<label>Street</label>
					<type>inbox</type>
					<required>false</required>
					<showIn>details</showIn>
					<adminField>false</adminField>
					<options>
						<option attribute="inSearch">false</option>
						<option attribute="searchMethod">general</option>
						<option attribute="priority">5</option>
						<option attribute="withLabel">false</option>
						<option attribute="maxLength">150</option>
						<option attribute="admList">false</option>
						<option attribute="isFree">true</option>
						<option attribute="addToMetaDesc">false</option>
						<option attribute="addToMetaKeys">false</option>
						<option attribute="fee">false</option>
						<option attribute="cssClass">spClassInbox street</option>
						<option attribute="position">6</option>
						<option attribute="uniqueData">false</option>
						<option attribute="editable">true</option>
						<option attribute="parse">false</option>
						<option attribute="cssClassView">spClassViewInbox</option>
						<option attribute="cssClassSearch">spClassSearchInbox</option>
						<option attribute="cssClassEdit">spClassEditInbox</option>
						<option attribute="showEditLabel">1</option>
						<option attribute="labelAsPlaceholder">1</option>
						<option attribute="bsWidth">7</option>
						<option attribute="bsSearchWidth">5</option>
					</options>
				</field>
				<field>
					<name>field_silver_entry</name>
					<label>Silver Entry</label>
					<type>chbxgroup</type>
					<required>false</required>
					<showIn>hidden</showIn>
					<adminField>false</adminField>
					<options>
						<option attribute="inSearch">false</option>
						<option attribute="searchMethod">general</option>
						<option attribute="priority">5</option>
						<option attribute="withLabel">false</option>
						<option attribute="width">350</option>
						<option attribute="admList">false</option>
						<option attribute="isFree">false</option>
						<option attribute="addToMetaDesc">false</option>
						<option attribute="addToMetaKeys">false</option>
						<option attribute="fee">100</option>
						<option attribute="cssClass">spClassCheckbox</option>
						<option attribute="position">17</option>
						<option attribute="uniqueData">false</option>
						<option attribute="editable">true</option>
						<option attribute="parse">false</option>
						<option attribute="optInLine">3</option>
						<option attribute="optWidth">150</option>
						<option attribute="cssClassView">spClassViewCheckbox</option>
						<option attribute="cssClassEdit">spClassEditCheckbox</option>
						<option attribute="bsSearchWidth">1</option>
						<option attribute="selectLabel">spClassSearchCheckbox</option>
						<values attribute="fieldOptions">
							<value name="positive">yes</value>
						</values>
					</options>
				</field>
				<field>
					<name>field_gold_entry</name>
					<label>Gold Entry</label>
					<type>chbxgroup</type>
					<required>false</required>
					<showIn>hidden</showIn>
					<adminField>false</adminField>
					<options>
						<option attribute="inSearch">false</option>
						<option attribute="searchMethod">general</option>
						<option attribute="priority">5</option>
						<option attribute="withLabel">false</option>
						<option attribute="width">350</option>
						<option attribute="admList">false</option>
						<option attribute="isFree">false</option>
						<option attribute="addToMetaDesc">false</option>
						<option attribute="addToMetaKeys">false</option>
						<option attribute="fee">200</option>
						<option attribute="cssClass">spClassCheckbox</option>
						<option attribute="position">18</option>
						<option attribute="uniqueData">false</option>
						<option attribute="editable">true</option>
						<option attribute="parse">false</option>
						<option attribute="optInLine">3</option>
						<option attribute="optWidth">150</option>
						<option attribute="cssClassView">spClassViewCheckbox</option>
						<option attribute="cssClassSearch">spClassSearchCheckbox</option>
						<option attribute="cssClassEdit">spClassEditCheckbox</option>
						<option attribute="bsSearchWidth">1</option>
						<values attribute="fieldOptions">
							<value name="positive">yes</value>
						</values>
					</options>
				</field>
				<field>
					<name>field_expiration_time</name>
					<label>Expiration Time</label>
					<type>calendar</type>
					<required>false</required>
					<showIn>hidden</showIn>
					<adminField>false</adminField>
					<options>
						<option attribute="inSearch">false</option>
						<option attribute="priority">5</option>
						<option attribute="withLabel">false</option>
						<option attribute="admList">true</option>
						<option attribute="isFree">true</option>
						<option attribute="addToMetaDesc">false</option>
						<option attribute="addToMetaKeys">false</option>
						<option attribute="fee">false</option>
						<option attribute="cssClass">spClassCalendar</option>
						<option attribute="position">19</option>
						<option attribute="uniqueData">false</option>
						<option attribute="editable">true</option>
						<option attribute="parse">false</option>
						<option attribute="cssClassView">spClassViewCalendar</option>
						<option attribute="cssClassEdit">spClassEditCalendar</option>
						<option attribute="cssClassSearch">spClassSearchCalendar</option>
						<option attribute="inputForm">date://d.m.Y</option>
						<option attribute="outputForm">d.m.Y</option>
						<option attribute="function">validUntil</option>
						<option attribute="bsWidth">5</option>
						<option attribute="bsSearchWidth">1</option>
						<option attribute="inputIcon">fa fa-calendar</option>
						<option attribute="showEditLabel">1</option>
					</options>
				</field>
				<field>
					<name>field_basic_entry</name>
					<label>Basic Entry</label>
					<type>chbxgroup</type>
					<required>false</required>
					<showIn>hidden</showIn>
					<adminField>false</adminField>
					<options>
						<option attribute="inSearch">false</option>
						<option attribute="searchMethod">general</option>
						<option attribute="priority">5</option>
						<option attribute="withLabel">false</option>
						<option attribute="width">350</option>
						<option attribute="admList">false</option>
						<option attribute="isFree">true</option>
						<option attribute="addToMetaDesc">false</option>
						<option attribute="addToMetaKeys">false</option>
						<option attribute="fee">false</option>
						<option attribute="cssClass">spClassCheckbox</option>
						<option attribute="position">16</option>
						<option attribute="uniqueData">false</option>
						<option attribute="editable">true</option>
						<option attribute="parse">false</option>
						<option attribute="optInLine">3</option>
						<option attribute="optWidth">150</option>
						<option attribute="cssClassView">spClassViewCheckbox</option>
						<option attribute="cssClassEdit">spClassEditCheckbox</option>
						<option attribute="bsSearchWidth">1</option>
						<option attribute="selectLabel">spClassSearchCheckbox</option>
						<values attribute="fieldOptions">
							<value name="positive">yes</value>
						</values>
					</options>
				</field>
			</fields>
			<categories>
				<category>
					<name>Computers and Internet</name>
					<description>
						<![CDATA[<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque laoreet rhoncus tempor. Suspendisse dapibus vulputate dolor ut tincidunt. Suspendisse tristique laoreet dui, ut tempor orci dictum ut. Quisque aliquam urna ac justo tristique interdum. Aliquam in dui eget lectus elementum lacinia eget eu sem. Nam eu felis tellus, ac cursus velit. </p>]]></description>
					<icon>{'element':'i','class':'icon-desktop','font':'font-awesome-3'}</icon>
					<showIcon>2</showIcon>
					<showIntrotext>2</showIntrotext>
					<parseDesc>0</parseDesc>
					<fields/>
					<childs>
						<category>
							<name>Communications</name>
							<introtext>Telecommunication occurs when the exchange of information between two entities (communication) includes the use of
								technology.
							</introtext>
							<description>
								<![CDATA[<p><b>Telecommunication</b> occurs when the exchange of <a title="Information" href="https://en.wikipedia.org/wiki/Information">information</a> between two <a class="mw-redirect" title="Entities" href="https://en.wikipedia.org/wiki/Entities">entities</a> (<a title="Communication" href="https://en.wikipedia.org/wiki/Communication">communication</a>) includes the use of technology. </p>]]></description>
							<icon>{'element':'span','class':'fab fa-jenkins','font':'font-awesome-5'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
						<category>
							<name>Graphics</name>
							<introtext>Graphics (from Greek γραφικός graphikos, 'something written' e.g. autograph) are visual images or designs on some
								surface, such as a wall, canvas, screen, paper, or stone to inform, illustrate, or entertain.
							</introtext>
							<description>
								<![CDATA[<p><b>Graphics</b> (from <a title="Greek language" href="https://en.wikipedia.org/wiki/Greek_language">Greek</a> <span lang="grc"><a class="extiw" title="wikt:γραφικός" href="https://en.wiktionary.org/wiki/%CE%B3%CF%81%CE%B1%CF%86%CE%B9%CE%BA%CF%8C%CF%82">γραφικός</a></span> <i>graphikos</i>, 'something written' e.g. autograph) are <a title="Visual perception" href="https://en.wikipedia.org/wiki/Visual_perception">visual</a> images or designs on some surface, such as a wall, <a title="Canvas" href="https://en.wikipedia.org/wiki/Canvas">canvas</a>, screen, paper, or stone to inform, illustrate, or entertain.</p>]]></description>
							<icon>{'element':'i','class':'icon-picture','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
						<category>
							<name>Hardware</name>
							<introtext>Computer hardware (usually simply called hardware when a computing context is implicit) is the collection of physical
								elements that constitutes a computer system.
							</introtext>
							<description>
								<![CDATA[<p><b>Computer hardware</b> (usually simply called <b>hardware</b> when a <a title="Computing" href="https://en.wikipedia.org/wiki/Computing">computing</a> context is implicit) is the collection of physical elements that constitutes a <a title="Computer" href="https://en.wikipedia.org/wiki/Computer">computer</a> system.</p>]]></description>
							<icon>{'element':'i','class':'icon-keyboard','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
						<category>
							<name>Mobile Computing</name>
							<introtext>Mobile computing is human–computer interaction by which a computer is expected to be transported during normal usage.
							</introtext>
							<description>
								<![CDATA[<p><b>Mobile computing</b> is <a title="Human–computer interaction" href="https://en.wikipedia.org/wiki/Human%E2%80%93computer_interaction">human–computer interaction</a> by which a <a title="Computer" href="https://en.wikipedia.org/wiki/Computer">computer</a> is expected to be transported during normal usage. Mobile computing involves <a class="mw-redirect" title="Mobile communication" href="https://en.wikipedia.org/wiki/Mobile_communication">mobile communication</a>, mobile hardware, and mobile software.</p>]]></description>
							<icon>{'element':'i','class':'icon-laptop','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
						<category>
							<name>Multimedia</name>
							<introtext>Multimedia refers to content that uses a combination of different content forms.</introtext>
							<description>
								<![CDATA[<p><b>Multimedia</b> refers to <a class="mw-redirect" title="Content (media and publishing)" href="https://en.wikipedia.org/wiki/Content_%28media_and_publishing%29">content</a> that uses a combination of different <a title="Content format" href="https://en.wikipedia.org/wiki/Content_format">content forms</a>. This contrasts with media that use only rudimentary computer displays such as text-only or traditional forms of printed or hand-produced material.</p>]]></description>
							<icon>{'element':'i','class':'icon-tablet','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
					</childs>
				</category>
				<category>
					<name>Games</name>
					<description>
						<![CDATA[<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque laoreet rhoncus tempor. Suspendisse dapibus vulputate dolor ut tincidunt. Suspendisse tristique laoreet dui, ut tempor orci dictum ut. Quisque aliquam urna ac justo tristique interdum. Aliquam in dui eget lectus elementum lacinia eget eu sem. Nam eu felis tellus, ac cursus velit. </p>]]></description>
					<icon>{'element':'i','class':'icon-gamepad','font':'font-awesome-3'}</icon>
					<showIcon>2</showIcon>
					<showIntrotext>2</showIntrotext>
					<parseDesc>0</parseDesc>
					<fields/>
					<childs>
						<category>
							<name>Card Games</name>
							<introtext>A card game is any game using playing cards as the primary device with which the game is played, be they traditional or
								game-specific.
							</introtext>
							<description>
								<![CDATA[<p>A <b>card game</b> is any <a title="Game" href="https://en.wikipedia.org/wiki/Game">game</a> using <a title="Playing card" href="https://en.wikipedia.org/wiki/Playing_card">playing cards</a> as the primary device with which the game is played, be they traditional or game-specific. Countless card games exist, including families of related games (such as <a title="Poker" href="https://en.wikipedia.org/wiki/Poker">poker</a>).</p>]]></description>
							<icon>{'element':'i','class':'icon-stackexchange','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
						<category>
							<name>Computer Games</name>
							<introtext>PC games, also known as computer games or personal computer games, are video games played on a personal computer rather
								than a dedicated video game console or arcade machine.
							</introtext>
							<description>
								<![CDATA[<p><b>PC games</b>, also known as <b>computer games</b> or <b>personal computer games</b>, are <a title="Video game" href="https://en.wikipedia.org/wiki/Video_game">video games</a> played on a <a title="Personal computer" href="https://en.wikipedia.org/wiki/Personal_computer">personal computer</a> rather than a dedicated <a title="Video game console" href="https://en.wikipedia.org/wiki/Video_game_console">video game console</a> or <a class="mw-redirect" title="Arcade machine" href="https://en.wikipedia.org/wiki/Arcade_machine">arcade machine</a>. </p>]]></description>
							<icon>{'element':'i','class':'icon-bug','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
						<category>
							<name>Puzzles</name>
							<introtext>yA puzzle is a game, problem, or toy that tests a person's ingenuity or knowledge. In a puzzle, one is required to put
								pieces together in a logical way, in order to arrive at the correct solution of the puzzle.
							</introtext>
							<description>
								<![CDATA[<p>A <b>puzzle</b> is a <a title="Game" href="https://en.wikipedia.org/wiki/Game">game</a>, <a class="mw-redirect" title="Problem" href="https://en.wikipedia.org/wiki/Problem">problem</a>, or <a title="Toy" href="https://en.wikipedia.org/wiki/Toy">toy</a> that tests a person's <a title="Ingenuity" href="https://en.wikipedia.org/wiki/Ingenuity">ingenuity</a> or knowledge. In a puzzle, one is required to put pieces together in a logical way, in order to arrive at the correct solution of the puzzle.</p>]]></description>
							<icon>{'element':'i','class':'icon-puzzle-piece','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
						<category>
							<name>Video Games</name>
							<introtext>A video game is an electronic game that involves human interaction with a user interface to generate visual feedback on a
								video device.
							</introtext>
							<description>
								<![CDATA[<p>A <b>video game</b> is an <a title="Electronic game" href="https://en.wikipedia.org/wiki/Electronic_game">electronic game</a> that involves human interaction with a <a title="User interface" href="https://en.wikipedia.org/wiki/User_interface">user interface</a> to generate visual feedback on a <a title="Video" href="https://en.wikipedia.org/wiki/Video">video device</a>. The word <i>video</i> in <i>video game</i> traditionally referred to a <a title="Raster scan" href="https://en.wikipedia.org/wiki/Raster_scan">raster</a> display device,<sup id="cite_ref-1" class="reference"></sup> but it now implies any type of <a title="Display device" href="https://en.wikipedia.org/wiki/Display_device">display device</a> that can produce two- or three-dimensional images.</p>]]></description>
							<icon>{'element':'i','class':'icon-gamepad','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
					</childs>
				</category>
				<category>
					<name>Health</name>
					<description>
						<![CDATA[<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque laoreet rhoncus tempor. Suspendisse dapibus vulputate dolor ut tincidunt. Suspendisse tristique laoreet dui, ut tempor orci dictum ut. Quisque aliquam urna ac justo tristique interdum. Aliquam in dui eget lectus elementum lacinia eget eu sem. Nam eu felis tellus, ac cursus velit. </p>]]></description>
					<icon>{'element':'i','class':'icon-medkit','font':'font-awesome-3'}</icon>
					<showIcon>2</showIcon>
					<showIntrotext>2</showIntrotext>
					<parseDesc>0</parseDesc>
					<fields/>
					<childs>
						<category>
							<name>Beauty</name>
							<introtext>Physical attractiveness is the degree to which a person's physical traits are considered aesthetically pleasing or
								beautiful.
							</introtext>
							<description>
								<![CDATA[<p><b>Physical attractiveness</b> is the degree to which a person's physical traits are considered <a class="mw-redirect" title="Aesthetic" href="https://en.wikipedia.org/wiki/Aesthetic">aesthetically</a> pleasing or <a title="Beauty" href="https://en.wikipedia.org/wiki/Beauty">beautiful</a>. The term often implies <a title="Sexual attraction" href="https://en.wikipedia.org/wiki/Sexual_attraction">sexual attractiveness</a> or desirability, but can also be distinct from the two. </p>]]></description>
							<icon>{'element':'i','class':'icon-smile','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
						<category>
							<name>Fitness</name>
							<introtext>Physical fitness is a general state of health and well-being and, more specifically, the ability to perform aspects of
								sports or occupations.
							</introtext>
							<description>
								<![CDATA[<p><b>Physical fitness</b> is a general state of <a title="Health" href="https://en.wikipedia.org/wiki/Health">health</a> and well-being and, more specifically, the ability to perform aspects of <a title="Outline of sports" href="https://en.wikipedia.org/wiki/Outline_of_sports">sports</a> or occupations. Physical fitness is generally achieved through correct <a title="Nutrition" href="https://en.wikipedia.org/wiki/Nutrition">nutrition</a>, moderate-vigorous physical activity, <a title="Physical exercise" href="https://en.wikipedia.org/wiki/Physical_exercise">exercise</a> and rest.</p>]]></description>
							<icon>{'element':'i','class':'icon-male','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
						<category>
							<name>Pharmacy</name>
							<introtext>Pharmacy is the science and technique of preparing and dispensing drugs. It is a health profession that links health
								sciences with chemical sciences and aims to ensure the safe and effective use of pharmaceutical drugs.
							</introtext>
							<description>
								<![CDATA[<p><b>Pharmacy</b> is the science and technique of preparing and dispensing <a title="Drug" href="https://en.wikipedia.org/wiki/Drug">drugs</a>. It is a <a class="mw-redirect" title="Health profession" href="https://en.wikipedia.org/wiki/Health_profession">health profession</a> that links <a class="mw-redirect" title="Health science" href="https://en.wikipedia.org/wiki/Health_science">health sciences</a> with <a title="Chemistry" href="https://en.wikipedia.org/wiki/Chemistry">chemical sciences</a> and aims to ensure the safe and effective use of <a title="Pharmaceutical drug" href="https://en.wikipedia.org/wiki/Pharmaceutical_drug">pharmaceutical drugs</a>.</p>]]></description>
							<icon>{'element':'i','class':'icon-beaker','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
						<category>
							<name>Weight Loss</name>
							<introtext>Weight loss, in the context of medicine, health, or physical fitness, refers to a reduction of the total body mass, due
								to a mean loss of fluid, body fat or adipose tissue and/or lean mass, namely bone mineral deposits, muscle, tendon, and other
								connective tissue.
							</introtext>
							<description>
								<![CDATA[<p><b>Weight loss</b>, in the context of medicine, health, or <a title="Physical fitness" href="https://en.wikipedia.org/wiki/Physical_fitness">physical fitness</a>, refers to a reduction of the total <a class="mw-redirect" title="Body mass" href="https://en.wikipedia.org/wiki/Body_mass">body mass</a>, due to a mean loss of fluid, body fat or <a title="Adipose tissue" href="https://en.wikipedia.org/wiki/Adipose_tissue">adipose tissue</a> and/or lean mass, namely bone mineral deposits, muscle, tendon, and other connective tissue.</p>]]></description>
							<icon>{'element':'i','class':'icon-sort-by-attributes-alt','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
					</childs>
				</category>
				<category>
					<name><![CDATA[Home & Garden]]></name>
					<description>
						<![CDATA[<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque laoreet rhoncus tempor. Suspendisse dapibus vulputate dolor ut tincidunt. Suspendisse tristique laoreet dui, ut tempor orci dictum ut. Quisque aliquam urna ac justo tristique interdum. Aliquam in dui eget lectus elementum lacinia eget eu sem. Nam eu felis tellus, ac cursus velit. </p>]]></description>
					<icon>{'element':'i','class':'icon-home','font':'font-awesome-3'}</icon>
					<showIcon>2</showIcon>
					<showIntrotext>2</showIntrotext>
					<parseDesc>0</parseDesc>
					<fields/>
					<childs>
						<category>
							<name>Do-It-Yourself</name>
							<introtext>Do it yourself, also known as DIY, is the method of building, modifying, or repairing something without the aid of
								experts or professionals.
							</introtext>
							<description>
								<![CDATA[<p><b>Do it yourself</b>, also known as <b>DIY</b>, is the method of building, modifying, or <a class="mw-redirect" title="Repair" href="https://en.wikipedia.org/wiki/Repair">repairing</a> something without the aid of experts or professionals.</p>]]></description>
							<icon>{'element':'i','class':'icon-legal','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
						<category>
							<name>Moving and Relocating</name>
							<introtext>Relocation, also known as moving, is the process of vacating a fixed location (such as a residence or business) and
								settling in a different one.
							</introtext>
							<description>
								<![CDATA[<p><b>Relocation</b>, also known as <b>moving</b>, is the process of vacating a fixed location (such as a residence or business) and settling in a different one.</p>]]></description>
							<icon>{'element':'i','class':'icon-truck','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
						<category>
							<name>Personal Finance</name>
							<introtext>Personal finance is the financial management which an individual or a family unit is required to do to obtain, budget,
								save, and spend monetary resources over time, taking into account various financial risks and future life events.
							</introtext>
							<description>
								<![CDATA[<p><b>Personal finance</b> is the financial management which an individual or a family unit is required to do to obtain, <a title="Personal budget" href="https://en.wikipedia.org/wiki/Personal_budget">budget</a>, save, and spend monetary resources over time, taking into account various financial risks and future life events.</p>]]></description>
							<icon>{'element':'i','class':'icon-money','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
						<category>
							<name>Pets</name>
							<introtext>A pet is an animal kept primarily for a person's company or protection, as opposed to working animals, sport animals,
								livestock, and laboratory animals, which are kept primarily for performance, agricultural value, or research.
							</introtext>
							<description>
								<![CDATA[<p>A <b>pet</b> is an <a title="Animal" href="https://en.wikipedia.org/wiki/Animal">animal</a> kept primarily for a person's company or protection, as opposed to <a title="Working animal" href="https://en.wikipedia.org/wiki/Working_animal">working animals</a>, <a class="mw-redirect" title="Sport animal" href="https://en.wikipedia.org/wiki/Sport_animal">sport animals</a>, <a title="Livestock" href="https://en.wikipedia.org/wiki/Livestock">livestock</a>, and <a class="mw-redirect" title="Laboratory animal" href="https://en.wikipedia.org/wiki/Laboratory_animal">laboratory animals</a>, which are kept primarily for performance, agricultural value, or research.</p>]]></description>
							<icon>{'element':'i','class':'icon-twitter','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
					</childs>
				</category>
				<category>
					<name>News</name>
					<description>
						<![CDATA[<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque laoreet rhoncus tempor. Suspendisse dapibus vulputate dolor ut tincidunt. Suspendisse tristique laoreet dui, ut tempor orci dictum ut. Quisque aliquam urna ac justo tristique interdum. Aliquam in dui eget lectus elementum lacinia eget eu sem. Nam eu felis tellus, ac cursus velit. </p>]]></description>
					<icon>{'element':'i','class':'icon-rss-sign','font':'font-awesome-3'}</icon>
					<showIcon>2</showIcon>
					<showIntrotext>2</showIntrotext>
					<parseDesc>0</parseDesc>
					<fields/>
					<childs>
						<category>
							<name>Chats and Forums</name>
							<introtext>An Internet forum, or message board, is an online discussion site where people can hold conversations in the form of
								posted messages.
							</introtext>
							<description>
								<![CDATA[<p>An <b>Internet forum</b>, or <b>message board</b>, is an <a class="mw-redirect" title="Online" href="https://en.wikipedia.org/wiki/Online">online</a> discussion site where people can hold conversations in the form of posted messages. They differ from <a class="mw-redirect" title="Chat rooms" href="https://en.wikipedia.org/wiki/Chat_rooms">chat rooms</a> in that messages are often longer than one line of text, and are at least temporarily archived.</p>]]></description>
							<icon>{'element':'i','class':'icon-comments-alt','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
						<category>
							<name>Current Events</name>
							<introtext>Event management is the application of project management to the creation and development of large scale events such as
								festivals, conferences, ceremonies, formal parties, concerts, or conventions.
							</introtext>
							<description>
								<![CDATA[<p><b>Event management</b> is the application of <a title="Project management" href="https://en.wikipedia.org/wiki/Project_management">project management</a> to the creation and development of large scale events such as <a title="Festival" href="https://en.wikipedia.org/wiki/Festival">festivals</a>, conferences, ceremonies, formal parties, concerts, or <a title="Convention (meeting)" href="https://en.wikipedia.org/wiki/Convention_%28meeting%29">conventions</a>. It involves studying the brand, identifying the <a title="Target audience" href="https://en.wikipedia.org/wiki/Target_audience">target audience</a>, devising the event concept, planning the logistics and coordinating the technical aspects before actually launching the event.<sup id="cite_ref-1" class="reference"></sup></p>]]></description>
							<icon>{'element':'i','class':'icon-calendar','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
						<category>
							<name>Journalism</name>
							<introtext>Journalism is gathering, processing, and dissemination of news and information related to the news to an audience.
							</introtext>
							<description>
								<![CDATA[<p><b>Journalism</b> is gathering, processing, and dissemination of <a title="News" href="https://en.wikipedia.org/wiki/News">news</a> and information related to the news to an <a title="Audience" href="https://en.wikipedia.org/wiki/Audience">audience</a>. The word applies to both the method of inquiring for news and the literary style which is used to disseminate it.</p>]]></description>
							<icon>{'element':'i','class':'icon-file-text-alt','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
						<category>
							<name>Television</name>
							<introtext>A television, commonly referred to as TV or telly is a telecommunication medium used for transmitting sound with moving
								images in monochrome (black-and-white), colour, or in three dimensions.
							</introtext>
							<description>
								<![CDATA[<p>A <b>television</b>, commonly referred to as <b>TV</b> or <b>telly</b> is a <a title="Telecommunication" href="https://en.wikipedia.org/wiki/Telecommunication">telecommunication</a> medium used for transmitting sound with moving images in <a title="Monochrome" href="https://en.wikipedia.org/wiki/Monochrome">monochrome</a> (<a title="Black-and-white" href="https://en.wikipedia.org/wiki/Black-and-white">black-and-white</a>), <a class="mw-redirect" title="Colour" href="https://en.wikipedia.org/wiki/Colour">colour</a>, or in <a title="3D television" href="https://en.wikipedia.org/wiki/3D_television">three dimensions</a>. </p>]]></description>
							<icon>{'element':'i','class':'icon-desktop','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
						<category>
							<name>Weather</name>
							<introtext>Weather forecasting is the application of science and technology to predict the state of the atmosphere for a given
								location.
							</introtext>
							<description>
								<![CDATA[<p><b>Weather forecasting</b> is the application of science and technology to predict the state of the <a class="mw-redirect" title="Earth's atmosphere" href="https://en.wikipedia.org/wiki/Earth%27s_atmosphere">atmosphere</a> for a given location. Human beings have attempted to predict the weather informally for millennia, and formally since the nineteenth century.</p>]]></description>
							<icon>{'element':'i','class':'icon-sun','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
					</childs>
				</category>
				<category>
					<name>Shopping</name>
					<description>
						<![CDATA[<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque laoreet rhoncus tempor. Suspendisse dapibus vulputate dolor ut tincidunt. Suspendisse tristique laoreet dui, ut tempor orci dictum ut. Quisque aliquam urna ac justo tristique interdum. Aliquam in dui eget lectus elementum lacinia eget eu sem. Nam eu felis tellus, ac cursus velit. </p>]]></description>
					<icon>{'element':'i','class':'icon-shopping-cart','font':'font-awesome-3'}</icon>
					<showIcon>2</showIcon>
					<showIntrotext>2</showIntrotext>
					<parseDesc>0</parseDesc>
					<fields/>
					<childs>
						<category>
							<name>Books</name>
							<introtext>A book is a set of written, printed, illustrated, or blank sheets, made of ink, paper, parchment, or other materials,
								fastened together to hinge at one side.
							</introtext>
							<description>
								<![CDATA[<p>A <b>book</b> is a set of written, printed, illustrated, or blank sheets, made of <a title="Ink" href="https://en.wikipedia.org/wiki/Ink">ink</a>, <a title="Paper" href="https://en.wikipedia.org/wiki/Paper">paper</a>, <a title="Parchment" href="https://en.wikipedia.org/wiki/Parchment">parchment</a>, or other materials, fastened together to hinge at one side. A single sheet within a book is a <a class="mw-redirect" title="Recto" href="https://en.wikipedia.org/wiki/Recto">leaf</a>, and each side of a leaf is a <a title="Page (paper)" href="https://en.wikipedia.org/wiki/Page_%28paper%29">page</a>.</p>]]></description>
							<icon>{'element':'i','class':'icon-book','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
						<category>
							<name><![CDATA[Movies & Music]]></name>
							<introtext>Music is an art form whose medium is sound.</introtext>
							<description>
								<![CDATA[<p><b>Music</b> is an <a title="Art" href="https://en.wikipedia.org/wiki/Art">art</a> form whose <a class="mw-redirect" title="Media (arts)" href="https://en.wikipedia.org/wiki/Media_%28arts%29">medium</a> is <a title="Sound" href="https://en.wikipedia.org/wiki/Sound">sound</a>. Generally, a <b><a title="Song" href="https://en.wikipedia.org/wiki/Song">song</a></b> is considered the smallest standalone work of music, especially when involving <a title="Singing" href="https://en.wikipedia.org/wiki/Singing">singing</a>.</p>]]></description>
							<icon>{'element':'i','class':'icon-music','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
						<category>
							<name>Toys</name>
							<introtext>A toy is an item that can be used for play. Toys are generally played with by children and pets.</introtext>
							<description>
								<![CDATA[<p>A <b>toy</b> is an item that can be used for <a title="Play (activity)" href="https://en.wikipedia.org/wiki/Play_%28activity%29">play</a>. Toys are generally played with by <a title="Child" href="https://en.wikipedia.org/wiki/Child">children</a> and <a title="Pet" href="https://en.wikipedia.org/wiki/Pet">pets</a>. Playing with toys is an enjoyable means of training the young for life in society. Different materials are used to make toys enjoyable to both young and old.</p>]]></description>
							<icon>{'element':'i','class':'icon-rocket','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
						<category>
							<name>Home Improvement</name>
							<introtext>Home improvement, home renovation or remodeling is the process of renovating or making additions to one's home.
							</introtext>
							<description>
								<![CDATA[<p><b>Home improvement</b>, <b>home renovation</b> or <b>remodeling</b> is the process of <a title="Renovation" href="https://en.wikipedia.org/wiki/Renovation">renovating</a> or making additions to one's home. <a title="Building material" href="https://en.wikipedia.org/wiki/Building_material">Building materials</a> and hardware for home improvement projects are typically purchased at <a class="mw-redirect" title="Home improvement store" href="https://en.wikipedia.org/wiki/Home_improvement_store">home improvement stores</a>.</p>]]></description>
							<icon>{'element':'i','class':'icon-home','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
						<category>
							<name>Cars</name>
							<introtext>A car is a wheeled, self-powered motor vehicle used for transportation.</introtext>
							<description>
								<![CDATA[<p>A <b>car</b> is a wheeled, self-powered <a title="Motor vehicle" href="https://en.wikipedia.org/wiki/Motor_vehicle">motor vehicle</a> used for <a class="mw-redirect" title="Transportation" href="https://en.wikipedia.org/wiki/Transportation">transportation</a>. Most definitions of the term specify that cars are designed to run primarily on roads, to have seating for one to eight people, to typically have four wheels, and to be constructed principally for the transport of people rather than goods.</p>]]></description>
							<icon>{'element':'i','class':'icon-truck','font':'font-awesome-3'}</icon>
							<showIcon>2</showIcon>
							<showIntrotext>2</showIntrotext>
							<parseDesc>0</parseDesc>
							<fields/>
						</category>
					</childs>
				</category>
			</categories>
		</section>
	</install>
</template>