base.class.php 66.5 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 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 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563
<?php
/* 
 * @author    ThemePunch <info@themepunch.com>
 * @link      http://www.themepunch.com/
 * @copyright 2024 ThemePunch
*/

if(!defined('ABSPATH')) exit();

class RsAddOnParticlesBase {
	
	const MINIMUM_VERSION = '6.7.1';
	
	protected function systemsCheck() {
		
		if(!class_exists('RevSliderFront')) {
		
			return 'add_notice_plugin';
		
		}
		else if(!version_compare(RevSliderGlobals::SLIDER_REVISION, RsAddOnParticlesBase::MINIMUM_VERSION, '>=')) {
		
			return 'add_notice_version';
		
		}
		else if(get_option('revslider-valid', 'false') == 'false') {
		
			 return 'add_notice_activation';
		
		}
		
		return false;
		
	}
	
	protected function loadClasses() {
		
		$isAdmin = is_admin();
		//require_once(static::$_PluginPath . 'shared/svg.class.php');
		
		if($isAdmin) {
			
			//handle update process, this uses the typical ThemePunch server process
			require_once(static::$_PluginPath . 'admin/includes/update.class.php');
			$update_admin = new RevAddOnParticlesUpdate(static::$_Version);

			add_filter('pre_set_site_transient_update_plugins', array($update_admin ,'set_update_transient'));
			add_filter('plugins_api', array($update_admin,'set_updates_api_results'), 10, 3);
			
			// admin CSS/JS, ajax
			add_action('admin_enqueue_scripts', array($this, 'enqueue_admin_scripts'));
			add_action( 'revslider_do_ajax', array($this, 'do_ajax'),10,2);	
			
		}

		//v7, load always as things are needed in overview page
		require_once(static::$_PluginPath . 'public/includes/front.class.php');
		new SrParticlesFront(static::$_PluginTitle);

		global $SR_GLOBALS;
		if(!isset($SR_GLOBALS['front_version']) || $SR_GLOBALS['front_version'] !== 7){
			// ADD HERE OLD FRONTEND REQUIRED Lists
			require_once(static::$_PluginPath . 'sr6/includes/slider.class.php');
			require_once(static::$_PluginPath . 'sr6/includes/slide.class.php');

			/* 
			frontend scripts always enqueued for admin previews
			*/

			new RsParticlesSliderFront(static::$_Version, static::$_PluginUrl, static::$_PluginTitle, $isAdmin);
			new RsParticlesSlideFront(static::$_PluginTitle);
		}
	}
	
	/**
	 * Load the textdomain
	 **/
	protected function _loadPluginTextDomain(){
		
		load_plugin_textdomain('rs_' . static::$_PluginTitle, false, static::$_PluginPath . 'languages/');
		
	}
	
	// AddOn's page slideout panel
	public function addons_page_content() {
		
		include_once(static::$_PluginPath . 'admin/views/admin-display.php');
		
	}
	
	// load admin scripts
	public function enqueue_admin_scripts($hook) {
		
		if($hook === 'toplevel_page_revslider') {
		
			if(!isset($_GET['page']) || !isset($_GET['view'])) return;
			
			$page = $_GET['page'];
			if($page !== 'revslider') return;
			
			$_handle = 'rs-' . static::$_PluginTitle . '-admin';
			$_base   = static::$_PluginUrl . 'admin/assets/';
			$_jsPathMin = file_exists(static::$_PluginPath . 'admin/assets/js/revslider-' . static::$_PluginTitle . '-addon-admin.dev.js') ? '.dev' : '';
										
			wp_enqueue_style($_handle, $_base . 'css/revslider-' . static::$_PluginTitle . '-addon-admin.css', array(), static::$_Version);
			wp_enqueue_script($_handle, $_base . 'js/revslider-' . static::$_PluginTitle . '-addon-admin' . $_jsPathMin . '.js', array('jquery', 'revbuilder-admin'), static::$_Version, true);
			wp_localize_script( $_handle, 'revslider_particles_addon', self::get_var() );
			
		}
		
	}

	/**
	 * Returns the global JS variable
	 *
	 * @since    2.0.0
	 */
	public static function get_var() {
		
		$_textDomain = 'revslider-particles-addon';
		return array(
		
			'custom_templates' => self::get_templates(),
			'bricks' => array(
				'active'  =>  __('Active',$_textDomain),
				'entertext' => __('enter text...',$_textDomain),
				'particles' => __('Particle Eff.',$_textDomain),
				'firstslide' => __('First',$_textDomain),
				'lastslide' => __('Last',$_textDomain),
				'general' => __('General Settings',$_textDomain),
				'settings' => __('Particle Settings',$_textDomain),
				'singparticles' => __('Particles',$_textDomain),
				'amount' => __('Number of Particles',$_textDomain),
				'size' => __('Particle Size',$_textDomain),
				'randomsize' => __('Random Sizes',$_textDomain),
				'minsize' => __('Minimum Size',$_textDomain),
				'style' => __('Style',$_textDomain),
				'partopa' => __('Opacity',$_textDomain),
				'randopa' => __('Random Opacity',$_textDomain),
				'minopa' => __('Minimum Opacity',$_textDomain),
				'borders' => __('Borders  & Strokes',$_textDomain),
				'borsize' => __('Border Size',$_textDomain),
				'boropa' => __('Border Opacity',$_textDomain),
				'conlin' => __('Connected Lines',$_textDomain),
				'linwidth' => __('Connected Line Width',$_textDomain),
				'linopa' => __('Connected Line Opacity',$_textDomain),
				'lindist' => __('Distance between Particles',$_textDomain),
				'zindex' => __('z-Index',$_textDomain),
				'movement' => __('Particle Movement',$_textDomain),
				'smovement' => __('Movement',$_textDomain),
				'interactivity' => __('Interactivity',$_textDomain),
				'pulse' => __('Pulse',$_textDomain),
				'speed' => __('Speed',$_textDomain),
				'vspeed' => __('Varying Speed',$_textDomain),
				'minspeed' => __('Min. Speed',$_textDomain),
				'direction' => __('Direction',$_textDomain),
				'top' => __('Top',$_textDomain),
				'bottom' => __('Bottom',$_textDomain),
				'left' => __('Left',$_textDomain),
				'right' => __('Right',$_textDomain),
				'topleft' => __('Top Left',$_textDomain),
				'topright' => __('Top Right',$_textDomain),
				'bottomleft' => __('Bottom Left',$_textDomain),
				'bottomright' => __('Bottom Right',$_textDomain),
				'static' => __('Static',$_textDomain),
				'random' => __('Random',$_textDomain),
				'vmovement' => __('Varying Movement',$_textDomain),
				'bounce' => __('Bounce',$_textDomain),
				'hovers'  => __( 'Mouse Hovers',$_textDomain),
				'clicks'  => __( 'Click Actions',$_textDomain),
				'grab' => __( 'Grab',$_textDomain),
				'bubble' => __('Bubble',$_textDomain),
				'repulse' => __( 'Repulse',$_textDomain),
				'bdist' => __('Bubble Distance',$_textDomain),
				'bsize' => __('Bubble Size',$_textDomain),
				'bop' => __('Bubble Opacity',$_textDomain),
				'gdist' => __('Grab Distance',$_textDomain),
				'gop' => __('Grab Opacity',$_textDomain),
				'rdist' => __('Repulse Distance',$_textDomain),
				'rease' => __('Repulse Easing',$_textDomain),
				'hmode' => __('Hover Mode',$_textDomain),
				'cmode' => __('Click Mode',$_textDomain),
				'nohover' => __('No Mouse Hover',$_textDomain),
				'noclick' => __('No Click Action',$_textDomain),
				'sync' => __('Synchronize',$_textDomain),
				'apsize' => __('Animate Particle Size',$_textDomain),
				'apopa' => __('Animate Particle Opacity',$_textDomain),
				'colorvariant' => __('Color Variant',$_textDomain),
				'particlecolor' => __('Particle Colors',$_textDomain),
				'bordercolor' => __('Border Colors',$_textDomain),
				'linescolor' => __('Connected Line Colors',$_textDomain),
				'pelib' => __('Particle Effects Library',$_textDomain),
				'parpres' => __('Default Presets',$_textDomain),
				'custompres' => __('Custom Presets',$_textDomain),
				'hideonmobile' => __('Disable on Mobile',$_textDomain),
				'objectlibrary' => __('SVG Library', $_textDomain),
				'originalcolor' => __('Custom SVG Original Color', $_textDomain),
				'bubblemessage' => __('Bubble clicking is not compatible with Hovers', $_textDomain),
				'responsive' => __('Responsive', $_textDomain),
				'forceback' => __('Force Back', $_textDomain),
				'physics' => __('Physics', $_textDomain),
				'gravity' => __('Gravity', $_textDomain),
				'minGravity' => __('Min. Gravity', $_textDomain),
				'gravityDir' => __('Gravity Direction', $_textDomain),
				'damping' => __('Damping', $_textDomain),
				'hDrift' => __('Horizontal Drift', $_textDomain),
				'vDrift' => __('Vertical Drift', $_textDomain),
				'attract' => __('Attract', $_textDomain),
				'adist' => __('Attraction Distance', $_textDomain),
				'attractionForce' => __('Attraction Force', $_textDomain),
				'maxLines' => __('Crawl Max Lines', $_textDomain),
				'crawl' => __('Crawl', $_textDomain),
				'vortex' => __('Vortex Random', $_textDomain),
				'vortexcw' => __('Vortex Clockwise', $_textDomain),
				'vortexccw' => __('Vortex Counter-Clockwise', $_textDomain),
				'vortexEffect' => __('Vortex Effect', $_textDomain),
				'none' => __('None', $_textDomain),
				'expand' => __('Expand', $_textDomain),
				'shrink' => __('Shrink', $_textDomain),
				
			)
		);
	
	}
	
	/**
	 * New function for ajax activation to include AddOn help definitions
	 *
	 * @since    2.0.0
	 */
	public static function get_data($var='',$slug='revslider-particles-addon') {
		
		if($slug === 'revslider-particles-addon'){
			
			$obj = self::get_var();
			$obj['help'] = self::get_definitions();
			return $obj;
			
		}
		
		return $var;
	
	}
	
	/**
	 * Called via php filter.  Merges AddOn definitions with core revslider definitions
	 *
	 * @since    2.0.0
	 */
	public static function get_help($definitions) {
		
		if(empty($definitions) || !isset($definitions['editor_settings'])) return $definitions;
		$help = self::get_definitions();
		
		if(isset($definitions['editor_settings']['slide_settings']) && isset($definitions['editor_settings']['slide_settings']['addons'])) {
			$definitions['editor_settings']['slide_settings']['addons']['particles_addon'] = $help['slide'];
		}
		
		return $definitions;
	
	}

	/**
	 * Handle Ajax Calls from RevSlider core
	 *
	 * @since    2.0.0
	 */
	public function do_ajax($return = "",$action ="") {
		switch ($action) {
			case 'delete_custom_templates_revslider-particles-addon':
				$return = $this->delete_template($_REQUEST["data"]);
				if($return){
					return  __('Particle Template deleted', 'revslider-particles-addon');
				}
				else{
					return  __('Particle Template could not be deleted', 'revslider-particles-addon');
				}
				break;
			case 'save_custom_templates_revslider-particles-addon':
				$return = $this->save_template($_REQUEST["data"]);
				if(empty($return) || !$return){
					return  __('Particle Template could not be saved', 'revslider-particles-addon');
				} 
				else {
					return  array( 'message' => __('Particle Template saved', 'revslider-particles-addon'),
								   'data'	=> array("id" => $return)
					);	
				}
				break;
			default:
				return $return;
				break;
		}
	}

	/**
	 * Read Custom Templates from WP option, false if not set
	 *
	 * @since    2.0.0
	 */
	private static function get_templates(){
		//load WP option
		$custom = get_option('revslider_addon_particles_templates',false);

		//check for templates saved before 6.0
		if(!isset($custom[1]["title"])){
			$custom = self::fallback_templates($custom);
			//save new array into WP option
			update_option('revslider_addon_particles_templates',$custom);
		}

		return $custom;
	}

	/**
	 * Prepare old templates (before 6.0) to be readable/translateable for 6.x
	 *
	 * @since    2.0.0
	 */
	private static function fallback_templates($templates){
		$template_count = 1;
		$custom = array();
		/*
		//run through templates and build compatible array
		foreach($templates as $template_title => $template_presets){
			$custom[$template_count]["title"] = $template_title;
			$custom[$template_count]["preset"] = $template_presets;
		}
		*/
		return $custom;
	}

	/**
	 * Save Custom Template
	 *
	 * @since    2.0.0
	 */
	private function save_template($template){		
		//load already saved templates
		$custom = $this->get_templates();
		
		//empty custom templates?
		if(!$custom && !is_array($custom)){
			$custom = array();
			$new_id = 1;
		}
		else{
			//custom templates exist
			if(isset($template["id"]) && is_numeric($template["id"]) ){
				//id exists , overwrite
				$new_id = $template["id"];
			}
			else{
				//id does not exist , new template
				$new_id = max(array_keys($custom))+1;
			}
		}
		
		//update or insert template
		$custom[$new_id]["title"] = $template["obj"]["title"];
		$custom[$new_id]["preset"] = $template["obj"]["preset"];
		if(update_option( 'revslider_addon_particles_templates', $custom )){
			//return the ID the template was saved with
			return $new_id;	
		}
		else {
			//updating failed, blank result set
			return "";
		}
	
	}

	/**
	 * Delete Custom Template
	 *
	 * @since    2.0.0
	 */
	private function delete_template($template){
		//load templates array
		$custom = $this->get_templates();
		
		//custom template exist
		if(isset($template["id"]) && is_numeric($template["id"]) ){
			//delete given ID
			$delete_id = $template["id"];
			unset($custom[$delete_id]);
			//save the resulting templates array again
			if(update_option( 'revslider_addon_particles_templates', $custom )){
				return true;	
			}
			else {
				return false;
			}
		}
	}
	
	/**
	 * Returns the addon help definitions
	 *
	 * @since    2.0.0
	 */
	private static function get_definitions() {
		
		$_textdomain = 'revslider-particles-addon';
		return array(
		
			'slide' => array(
				
				'enable' => array(
						
					'dependency_id' => 'particles_enable',
					'buttonTitle' => __('Enable Particles', $_textdomain), 
					'title' => __('Enable', $_textdomain),
					'helpPath' => 'addOns.revslider-particles-addon.enable', 
					'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'enable particles', 'activate particles'), 
					'description' => __('Enable the Particles AddOn for this Slide', $_textdomain), 
					'helpStyle' => 'normal', 
					'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
					'video' => false,
					'section' => 'Slide Settings -> Particles',
					'highlight' => array(
					
						'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon", 
						'scrollTo' => '#form_slidegeneral_revslider-particles-addon', 
						'focus' => "#particles_enable"
						
					)
					
				),
				
				'particles' => array(
					
					'svg' => array(
					
						'buttonTitle' => __('Particles Icon', $_textdomain), 
						'title' => __('Icon', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.particles.shape', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles icon', 'particles svg', 'icon', 'svg'),
						'description' => __("Select one or more icons to display in the effect.", $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable')),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-1 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => ".particles-icon.selected"
							
						)
						
					),
					
					'num_particles' => array(
						
						'buttonTitle' => __('Number of Particles', $_textdomain), 
						'title' => __('Total Particles', $_textdomain),
						'helpPath' => 'addOns.revslider-particles-addon.particles.number', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'total particles', 'number of particles'), 
						'description' => __('The maximum number of particles to display at any given time.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable')),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-1 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "#particles_amount"
							
						)
						
					),
					
					'particles_size' => array(
						
						'buttonTitle' => __('Particle Size', $_textdomain), 
						'title' => __('Size', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.particles.size', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles size', 'particle size'), 
						'description' => __('The default size of each particle in pixels.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable')),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-1 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "#particles_size"
							
						)
						
					),
					
					'particles_random_size' => array(
						
						'dependency_id' => 'particles_random_size',
						'title' => __('Randomize Size', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.particles.random', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles size', 'particle size', 'random size'), 
						'description' => __('Randomize the particle sizes.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable')),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-1 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "*[data-r='addOns.revslider-particles-addon.particles.random']"
							
						)
						
					),
					
					'particles_min_size' => array(
						
						'title' => __('Minimum Size', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.particles.sizeMin', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles size', 'particle size', 'random size', 'minimum size'), 
						'description' => __('The minimum size for randomized sizes.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(
							
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.particles.random', 'value' => true, 'option' => 'particles_random_size')
								
							),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-1 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "#particles_minsize"
							
						)
						
					),
					
					'particles_disable_mobile' => array(
						
						'title' => __('Disable on Mobile', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.hideOnMobile', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'mobile', 'disable mobile'), 
						'description' => __('Disable the Particles effect on mobile devices.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable')),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-1 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "*[data-r='addOns.revslider-particles-addon.hideOnMobile']"
							
						)
						
					),

					'particles_force_back' => array(
						
						'title' => __('Force Back', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.fback', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'force back', 'behind layers'), 
						'description' => __('Enable this option to force particles effect behind layers in you want to use Sensibility option over layers but want to still display particles behind layers.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable')),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-1 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "*[data-r='addOns.revslider-particles-addon.fback']"
							
						)
						
					)
					
				),
				
				'style' => array(
				
					'particles_zindex' => array(
						
						'buttonTitle' => __('Particles zIndex', $_textdomain), 
						'title' => __('zIndex', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.styles.particle.zIndex', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'zindex', 'particles zindex'), 
						'description' => __('Set a custom <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/z-index">CSS z-index</a> for the particles HTML Canvas element.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable')),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-2 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "*[data-r='addOns.revslider-particles-addon.styles.particle.zIndex']"
							
						)
						
					),
					
					'particles_colors' => array(
						
						'buttonTitle' => __('Particle Color', $_textdomain), 
						'title' => __('Color', $_textdomain), 
						'helpPath' => 'particles-particle-color', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles color', 'color'), 
						'description' => __('Select one or multiple colors for the particles.  Multiple colors will be alternated between particles.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable')),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-2 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "#particle_particle_colors_wrap .rev-colorbox"
							
						)
						
					),
					
					'particles_opacity' => array(
						
						'buttonTitle' => __('Particle Opacity', $_textdomain),
						'title' => __('Opacity', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.styles.particle.opacity', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles opacity', 'opacity'), 
						'description' => __('The transparency level of the particles (0-100).', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable')),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-2 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "#particles_opacity"
							
						)
						
					),
					
					'particles_random_opacity' => array(
						
						'dependency_id' => 'particles_random_opacity',
						'title' => __('Random Opacity', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.styles.particle.opacityRandom', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles opacity', 'opacity', 'random opacity'), 
						'description' => __('Randomize the transparency for each particle.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable')),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-2 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "*[data-r='addOns.revslider-particles-addon.styles.particle.opacityRandom']"
							
						)
						
					),
					
					'particles_min_opacity' => array(
						
						'title' => __('Minimum Opacity', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.styles.particle.opacityMin', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles opacity', 'opacity', 'random opacity', 'minimum opacity'), 
						'description' => __('The minimum opacity to apply when the opacity is randomized.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(
							
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.styles.particle.opacityRandom', 'value' => true, 'option' => 'particles_random_opacity')
								
							),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-2 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "#particles_min_opacity"
							
						)
						
					),
					
					'borders_and_strokes' => array(
					
						'enable_border' => array(
							
							'dependency_id' => 'particles_border',
							'buttonTitle' => __('Enable Border/Stroke', $_textdomain), 
							'title' => __('Enable', $_textdomain), 
							'helpPath' => 'addOns.revslider-particles-addon.styles.border.enable', 
							'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'border', 'stroke', 'particles border'), 
							'description' => __('Add borders and strokes to the particle SVGs.', $_textdomain), 
							'helpStyle' => 'normal', 
							'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
							'video' => false,
							'section' => 'Slide Settings -> Particles',
							'highlight' => array(
								
								'dependencies' => array(array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable')),
								'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-2 > div", 
								'scrollTo' => '#particle_settings_wrap', 
								'focus' => "*[data-r='addOns.revslider-particles-addon.styles.border.enable']"
								
							)
							
						),
						
						'border_color' => array(
							
							'buttonTitle' => __('Border/Stroke Color', $_textdomain), 
							'title' => __('Color', $_textdomain), 
							'helpPath' => 'particles-border-color', 
							'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles border', 'particles stroke', 'border', 'stroke', 'color'), 
							'description' => __('Choose one or more colors for the border/stroke.  Multiple colors will be alternated between particles.', $_textdomain), 
							'helpStyle' => 'normal', 
							'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
							'video' => false,
							'section' => 'Slide Settings -> Particles',
							'highlight' => array(
								
								'dependencies' => array(
							
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.styles.border.enable', 'value' => true, 'option' => 'particles_border')
									
								),
								'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-2 > div", 
								'scrollTo' => '#particle_settings_wrap', 
								'focus' => "#particle_border_colors_wrap .rev-colorbox"
								
							)
							
						),
						
						'border_size' => array(
							
							'buttonTitle' => __('Border/Stroke Size', $_textdomain), 
							'title' => __('Size', $_textdomain), 
							'helpPath' => 'addOns.revslider-particles-addon.styles.border.size', 
							'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles border', 'particles stroke', 'border', 'stroke', 'size'), 
							'description' => __('The "stroke-width" for the particle SVGs.', $_textdomain), 
							'helpStyle' => 'normal', 
							'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
							'video' => false,
							'section' => 'Slide Settings -> Particles',
							'highlight' => array(
								
								'dependencies' => array(
							
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.styles.border.enable', 'value' => true, 'option' => 'particles_border')
									
								),
								'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-2 > div", 
								'scrollTo' => '#particle_settings_wrap', 
								'focus' => "#particles_border_size"
								
							)
							
						),
						
						'border_opacity' => array(
							
							'buttonTitle' => __('Border/Stroke Opacity', $_textdomain), 
							'title' => __('Opacity', $_textdomain), 
							'helpPath' => 'addOns.revslider-particles-addon.styles.border.opacity', 
							'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles border', 'particles stroke', 'border', 'stroke', 'opacity'), 
							'description' => __('A transparency level for the SVG border (0-100).', $_textdomain), 
							'helpStyle' => 'normal', 
							'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
							'video' => false,
							'section' => 'Slide Settings -> Particles',
							'highlight' => array(
								
								'dependencies' => array(
							
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.styles.border.enable', 'value' => true, 'option' => 'particles_border')
									
								),
								'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-2 > div", 
								'scrollTo' => '#particle_settings_wrap', 
								'focus' => "#particles_border_opacity"
								
							)
							
						)
						
					),
					
					'connected_lines' => array(
						
						'enable_lines' => array(
							
							'dependency_id' => 'particles_connected_lines',
							'buttonTitle' => __('Enable Connected Lines', $_textdomain), 
							'title' => __('Enable', $_textdomain), 
							'helpPath' => 'addOns.revslider-particles-addon.styles.lines.enable', 
							'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'lines', 'connected lines'), 
							'description' => __('Connect each particle with lines, creating a spider-web type visual.', $_textdomain), 
							'helpStyle' => 'normal', 
							'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
							'video' => false,
							'section' => 'Slide Settings -> Particles',
							'highlight' => array(
								
								'dependencies' => array(array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable')),
								'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-2 > div", 
								'scrollTo' => '#particle_settings_wrap', 
								'focus' => "*[data-r='addOns.revslider-particles-addon.styles.lines.enable']"
								
							)
							
						),
						
						'lines_color' => array(
							
							'buttonTitle' => __('Connected Lines Color', $_textdomain),
							'title' => __('Color', $_textdomain), 
							'helpPath' => 'particles-lines-color', 
							'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'lines', 'connected lines', 'color'), 
							'description' => __('Choose one or more colors for the connected lines.  Multiple colors will be alternated between particles.', $_textdomain), 
							'helpStyle' => 'normal', 
							'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
							'video' => false,
							'section' => 'Slide Settings -> Particles',
							'highlight' => array(
								
								'dependencies' => array(
							
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.styles.lines.enable', 'value' => true, 'option' => 'particles_connected_lines')
									
								),
								'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-2 > div", 
								'scrollTo' => '#particle_settings_wrap', 
								'focus' => "#particle_lines_colors_wrap .rev-colorbox"
								
							)
							
						),
						
						'lines_size' => array(
							
							'buttonTitle' => __('Connected Lines Size', $_textdomain), 
							'title' => __('Size', $_textdomain), 
							'helpPath' => 'addOns.revslider-particles-addon.styles.lines.width', 
							'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'lines', 'connected lines', 'size'), 
							'description' => __('The width of the connected lines in pixels.', $_textdomain), 
							'helpStyle' => 'normal', 
							'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
							'video' => false,
							'section' => 'Slide Settings -> Particles',
							'highlight' => array(
								
								'dependencies' => array(
							
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.styles.lines.enable', 'value' => true, 'option' => 'particles_connected_lines')
									
								),
								'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-2 > div", 
								'scrollTo' => '#particle_settings_wrap', 
								'focus' => "#particles_lines_size"
								
							)
							
						),
						
						'lines_opacity' => array(
							
							'buttonTitle' => __('Connected Lines Opacity', $_textdomain), 
							'title' => __('Opacity', $_textdomain), 
							'helpPath' => 'addOns.revslider-particles-addon.styles.lines.opacity', 
							'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'lines', 'connected lines', 'opacity'), 
							'description' => __('The transparency level of the connected lines (0-100).', $_textdomain), 
							'helpStyle' => 'normal', 
							'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
							'video' => false,
							'section' => 'Slide Settings -> Particles',
							'highlight' => array(
								
								'dependencies' => array(
							
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.styles.lines.enable', 'value' => true, 'option' => 'particles_connected_lines')
									
								),
								'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-2 > div", 
								'scrollTo' => '#particle_settings_wrap', 
								'focus' => "#particles_lines_opacity"
								
							)
							
						),
						
						'lines_distance' => array(
							
							'buttonTitle' => __('Connected Lines Distance', $_textdomain), 
							'title' => __('Distance', $_textdomain), 
							'helpPath' => 'addOns.revslider-particles-addon.styles.lines.distance', 
							'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'lines', 'connected lines', 'distance'), 
							'description' => __('The amount of space that needs to exist before a two particles are connected with lines.', $_textdomain), 
							'helpStyle' => 'normal', 
							'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
							'video' => false,
							'section' => 'Slide Settings -> Particles',
							'highlight' => array(
								
								'dependencies' => array(
							
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.styles.lines.enable', 'value' => true, 'option' => 'particles_connected_lines')
									
								),
								'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-2 > div", 
								'scrollTo' => '#particle_settings_wrap', 
								'focus' => "#particles_lines_distance"
								
							)
							
						)
						
					)
					
				),
					
				'movement' => array(
				
					'enable_movement' => array(
						
						'dependency_id' => 'particles_movement',
						'buttonTitle' => __('Particles Movement', $_textdomain), 
						'title' => __('Enable', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.movement.enable', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles movement', 'movement'), 
						'description' => __('Most of the time you will want your particles to move for the effect, but they can also appear as a static image if this option is disabled.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable')),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-3 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "*[data-r='addOns.revslider-particles-addon.movement.enable']"
							
						)
						
					),
					
					'movement_speed' => array(
						
						'buttonTitle' => __('Particles Speed', $_textdomain), 
						'title' => __('Speed', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.movement.speed', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles speed', 'speed'), 
						'description' => __('The speed at which the particles move.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(
						
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.movement.enable', 'value' => true, 'option' => 'particles_movement')
								
							),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-3 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "#particles_mov_speed"
							
						)
						
					),
					
					'varying_speed' => array(
						
						'dependency_id' => 'particles_varying_speed',
						'title' => __('Varying Speed', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.movement.randomSpeed', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles speed', 'speed', 'random speed', 'varying speed'), 
						'description' => __('Randomize the speed at which the particles move.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(
						
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.movement.enable', 'value' => true, 'option' => 'particles_movement')
								
							),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-3 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "*[data-r='addOns.revslider-particles-addon.movement.randomSpeed']"
							
						)
						
					),
					
					'min_speed' => array(
						
						'title' => __('Minimum Speed', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.movement.speedMin', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles speed', 'speed', 'random speed', 'varying speed', 'min speed', 'minimum speed'), 
						'description' => __('The minimum speed the particles will move if the movement is randomized.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(
						
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.movement.enable', 'value' => true, 'option' => 'particles_movement'),
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.movement.randomSpeed', 'value' => true, 'option' => 'particles_varying_speed')
								
							),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-3 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "#particles_mov_min_speed"
							
						)
						
					),
					
					'movement_bounce' => array(
						
						'title' => __('Bouncing', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.movement.bounce', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles bounce', 'bounce', 'bouncing'), 
						'description' => __('Choose if the particles should disappear when they reach the module bounding box, or if they should "bounce" off the walls and continue to move in another direction.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(
						
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.movement.enable', 'value' => true, 'option' => 'particles_movement')
								
							),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-3 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "*[data-r='addOns.revslider-particles-addon.movement.bounce']"
							
						)
						
					),
					
					'movement_direction' => array(
						
						'title' => __('Direction', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.movement.direction', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles direction', 'direction'), 
						'description' => __('Particles can move in a linear direction (up, down, top-right, etc.) or move in a random direction.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(
						
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.movement.enable', 'value' => true, 'option' => 'particles_movement')
								
							),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-3 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "#particles_mov_direction"
							
						)
						
					)
				
				),
				
				'interactivity' => array(
				
					'hover_mode' => array(
						
						'dependency_id' => 'particles_hover',
						'title' => __('Hover Mode', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.interactivity.hoverMode', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles hover', 'hover', 'hover mode'), 
						'description' => __('Display a special effect when the user hovers their mouse over the Slide', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(array('path' => '#slide#.slide.addOns.revslider-particles-addon.movement.enable', 'value' => true, 'option' => 'particles_enable')),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-4 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "*[data-r='addOns.revslider-particles-addon.interactivity.hoverMode']"
							
						)
						
					),
					
					'click_mode' => array(
						
						'title' => __('Click Mode', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.interactivity.clickMode', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles click', 'click', 'click mode'), 
						'description' => __('Display a special effect when the user clicks anywhere in the Slide', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable')),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-4 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "*[data-r='addOns.revslider-particles-addon.interactivity.clickMode']"
							
						)
						
					),
					
					'repulse_distance' => array(
						
						'title' => __('Repulse Distance', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.interactivity.repulse.distance', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles repulse', 'repulse', 'repulse distance'), 
						'description' => __('The distance at which the particles will jump to in random directions away from the mouse.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(
							
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.interactivity.hoverMode', 'value' => 'repulse', 'option' => 'particles_hover')
								
							),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-4 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "*[data-r='addOns.revslider-particles-addon.interactivity.repulse.distance']"
							
						)
						
					),
					
					'repulse_easing' => array(
						
						'title' => __('Repulse Easing', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.interactivity.repulse.easing', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles repulse', 'repulse', 'repulse easing', 'easing'), 
						'description' => __('The strength at which the particles will move.  For example, if "100" is entered, particles will start to move at a speed of "100" and then the speed will gradually be reduced to zero as the repulse effect takes place.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(
							
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.interactivity.hoverMode', 'value' => 'repulse', 'option' => 'particles_hover')
								
							),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-4 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "*[data-r='addOns.revslider-particles-addon.interactivity.repulse.easing']"
							
						)
						
					),
					
					'grab_distance' => array(
						
						'title' => __('Grab Distance', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.interactivity.grab.distance', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles grab', 'grab', 'grab distance', 'distance'), 
						'description' => __('The maximum distance the particles need to be from the mouse before the connected lines are drawn.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(
							
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.interactivity.hoverMode', 'value' => 'grab', 'option' => 'particles_hover')
								
							),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-4 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "*[data-r='addOns.revslider-particles-addon.interactivity.grab.distance']"
							
						)
						
					),
					
					'grab_opacity' => array(
						
						'title' => __('Grab Opacity', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.interactivity.grab.opacity', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles grab', 'grab', 'grab opacity', 'opacity'), 
						'description' => __('The opacity level for the connected lines when the grab effect takes place.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(
							
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.interactivity.hoverMode', 'value' => 'grab', 'option' => 'particles_hover')
								
							),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-4 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "*[data-r='addOns.revslider-particles-addon.interactivity.grab.opacity']"
							
						)
						
					),
					
					'bubble_distance' => array(
						
						'title' => __('Bubble Distance', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.interactivity.bubble.distance', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles bubble', 'bubble', 'bubble distance', 'distance'), 
						'description' => __('The maximum distance the particles need to be from the mouse before the particles are scaled.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(
							
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.interactivity.hoverMode', 'value' => 'bubble', 'option' => 'particles_hover')
								
							),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-4 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "*[data-r='addOns.revslider-particles-addon.interactivity.bubble.distance']"
							
						)
						
					),
					
					'bubble_size' => array(
						
						'title' => __('Bubble Size', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.interactivity.bubble.size', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles bubble', 'bubble', 'bubble size', 'size'), 
						'description' => __('The maximum size in pixels the particles will scale to.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(
							
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.interactivity.hoverMode', 'value' => 'bubble', 'option' => 'particles_hover')
								
							),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-4 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "*[data-r='addOns.revslider-particles-addon.interactivity.bubble.size']"
							
						)
						
					),
					
					'bubble_opacity' => array(
						
						'title' => __('Bubble Opacity', $_textdomain), 
						'helpPath' => 'addOns.revslider-particles-addon.interactivity.bubble.opacity', 
						'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles bubble', 'bubble', 'bubble opacity', 'opacity'), 
						'description' => __('The transparency level of the scaled particles.', $_textdomain), 
						'helpStyle' => 'normal', 
						'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
						'video' => false,
						'section' => 'Slide Settings -> Particles',
						'highlight' => array(
							
							'dependencies' => array(
							
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
								array('path' => '#slide#.slide.addOns.revslider-particles-addon.interactivity.hoverMode', 'value' => 'bubble', 'option' => 'particles_hover')
								
							),
							'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-4 > div", 
							'scrollTo' => '#particle_settings_wrap', 
							'focus' => "*[data-r='addOns.revslider-particles-addon.interactivity.bubble.opacity']"
							
						)
						
					)
				
				),
				
				'pulse' => array(
				
					'animate_size' => array(
					
						'enable_animation' => array(
						
							'dependency_id' => 'particles_animate_size',
							'buttonTitle' => __('Animate Size', $_textdomain), 
							'title' => __('Enable', $_textdomain), 
							'helpPath' => 'addOns.revslider-particles-addon.pulse.size.enable', 
							'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles animate', 'animate', 'animate size'), 
							'description' => __('Choose to continuously animate the particles size.', $_textdomain), 
							'helpStyle' => 'normal', 
							'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
							'video' => false,
							'section' => 'Slide Settings -> Particles',
							'highlight' => array(
								
								'dependencies' => array(array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable')),
								'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-5 > div", 
								'scrollTo' => '#particle_settings_wrap', 
								'focus' => "*[data-r='addOns.revslider-particles-addon.pulse.size.enable']"
								
							)
							
						),
						
						'speed' => array(
						
							'title' => __('Animation Speed', $_textdomain), 
							'helpPath' => 'addOns.revslider-particles-addon.pulse.size.speed', 
							'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles animate', 'animate', 'animate size', 'speed'), 
							'description' => __('The speed in milliseconds the particle’s size will animate.', $_textdomain), 
							'helpStyle' => 'normal', 
							'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
							'video' => false,
							'section' => 'Slide Settings -> Particles',
							'highlight' => array(
								
								'dependencies' => array(
								
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.pulse.size.enable', 'value' => true, 'option' => 'particles_animate_size')
									
								),
								'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-5 > div", 
								'scrollTo' => '#particle_settings_wrap', 
								'focus' => "*[data-r='addOns.revslider-particles-addon.pulse.size.speed']"
								
							)
							
						),
						
						'min_size' => array(
						
							'title' => __('Minimum Size', $_textdomain), 
							'helpPath' => 'addOns.revslider-particles-addon.pulse.size.min', 
							'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles animate', 'animate', 'animate size', 'min size', 'minimum size'), 
							'description' => __('The smallest size in pixels the particles will animate to.', $_textdomain), 
							'helpStyle' => 'normal', 
							'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
							'video' => false,
							'section' => 'Slide Settings -> Particles',
							'highlight' => array(
								
								'dependencies' => array(
								
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.pulse.size.enable', 'value' => true, 'option' => 'particles_animate_size')
									
								),
								'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-5 > div", 
								'scrollTo' => '#particle_settings_wrap', 
								'focus' => "*[data-r='addOns.revslider-particles-addon.pulse.size.min']"
								
							)
							
						),
						
						'synchronize' => array(
						
							'title' => __('Synchronize Animation', $_textdomain), 
							'helpPath' => 'addOns.revslider-particles-addon.pulse.size.sync', 
							'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles animate', 'animate', 'animate size', 'size', 'sync', 'synchronize'), 
							'description' => __('Enable this option to animate all particles size at the same time (otherwise they will animate randomly).', $_textdomain), 
							'helpStyle' => 'normal', 
							'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
							'video' => false,
							'section' => 'Slide Settings -> Particles',
							'highlight' => array(
								
								'dependencies' => array(
								
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.pulse.size.enable', 'value' => true, 'option' => 'particles_animate_size')
									
								),
								'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-5 > div", 
								'scrollTo' => '#particle_settings_wrap', 
								'focus' => "*[data-r='addOns.revslider-particles-addon.pulse.size.sync']"
								
							)
							
						)
						
					),
					
					'animate_opacity' => array(
					
						'enable_animation' => array(
						
							'dependency_id' => 'particles_animate_opacity',
							'buttonTitle' => __('Animate Opacity', $_textdomain), 
							'title' => __('Enable', $_textdomain), 
							'helpPath' => 'addOns.revslider-particles-addon.pulse.opacity.enable', 
							'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles animate', 'animate', 'animate opacity'), 
							'description' => __('Choose to continuously animate the particles transparency levels.', $_textdomain), 
							'helpStyle' => 'normal', 
							'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
							'video' => false,
							'section' => 'Slide Settings -> Particles',
							'highlight' => array(
								
								'dependencies' => array(array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable')),
								'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-5 > div", 
								'scrollTo' => '#particle_settings_wrap', 
								'focus' => "*[data-r='addOns.revslider-particles-addon.pulse.opacity.enable']"
								
							)
							
						),
						
						'speed' => array(
						
							'title' => __('Animation Speed', $_textdomain), 
							'helpPath' => 'addOns.revslider-particles-addon.pulse.opacity.speed', 
							'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles animate', 'animate', 'animate size', 'speed'), 
							'description' => __('The speed in milliseconds the particles opacity will animate.', $_textdomain), 
							'helpStyle' => 'normal', 
							'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
							'video' => false,
							'section' => 'Slide Settings -> Particles',
							'highlight' => array(
								
								'dependencies' => array(
								
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.pulse.opacity.enable', 'value' => true, 'option' => 'particles_animate_opacity')
									
								),
								'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-5 > div", 
								'scrollTo' => '#particle_settings_wrap', 
								'focus' => "*[data-r='addOns.revslider-particles-addon.pulse.opacity.speed']"
								
							)
							
						),
						
						'min_opacity' => array(
						
							'title' => __('Minimum Opacity', $_textdomain), 
							'helpPath' => 'addOns.revslider-particles-addon.pulse.opacity.min', 
							'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles animate', 'animate', 'animate size', 'min opacity', 'minimum opacity'), 
							'description' => __('The lowest opacity level the particles will animate to.', $_textdomain), 
							'helpStyle' => 'normal', 
							'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
							'video' => false,
							'section' => 'Slide Settings -> Particles',
							'highlight' => array(
								
								'dependencies' => array(
								
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.pulse.opacity.enable', 'value' => true, 'option' => 'particles_animate_opacity')
									
								),
								'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-5 > div", 
								'scrollTo' => '#particle_settings_wrap', 
								'focus' => "*[data-r='addOns.revslider-particles-addon.pulse.opacity.min']"
								
							)
							
						),
						
						'synchronize' => array(
						
							'title' => __('Synchronize Animation', $_textdomain), 
							'helpPath' => 'addOns.revslider-particles-addon.pulse.opacity.sync', 
							'keywords' => array('addon', 'addons', 'particles', 'particles addon', 'particles animate', 'animate', 'animate size', 'size', 'sync', 'synchronize'), 
							'description' => __('Enable this option to animate the opacity level of all particles at the same time (otherwise they will animate randomly).', $_textdomain), 
							'helpStyle' => 'normal', 
							'article' => 'http://docs.themepunch.com/slider-revolution/particles-addon/', 
							'video' => false,
							'section' => 'Slide Settings -> Particles',
							'highlight' => array(
								
								'dependencies' => array(
								
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.enable', 'value' => true, 'option' => 'particles_enable'),
									array('path' => '#slide#.slide.addOns.revslider-particles-addon.pulse.opacity.enable', 'value' => true, 'option' => 'particles_animate_opacity')
									
								),
								'menu' => "#module_slide_trigger, #gst_slide_revslider-particles-addon, #particles-tab-5 > div", 
								'scrollTo' => '#particle_settings_wrap', 
								'focus' => "*[data-r='addOns.revslider-particles-addon.pulse.opacity.sync']"
								
							)
							
						)
						
					)
				
				)
			
			)
			
		);
		
	}

}
	
?>