Completed
Pull Request — master (#8)
by None
91:27 queued 71:32
created
SemanticFormsSelect.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -7,41 +7,41 @@  discard block
 block discarded – undo
7 7
  * @defgroup SFS SemanticFormsSelect
8 8
  */
9 9
 
10
-if ( version_compare( $GLOBALS[ 'wgVersion' ], '1.23', 'lt' ) ) {
11
-	die( '<b>Error:</b> This version of <a href="https://github.com/SemanticMediaWiki/SemanticFormsSelect/">SemanticFormsSelect</a> is only compatible with MediaWiki 1.23 or above. You need to upgrade MediaWiki first.' );
10
+if (version_compare($GLOBALS['wgVersion'], '1.23', 'lt')) {
11
+	die('<b>Error:</b> This version of <a href="https://github.com/SemanticMediaWiki/SemanticFormsSelect/">SemanticFormsSelect</a> is only compatible with MediaWiki 1.23 or above. You need to upgrade MediaWiki first.');
12 12
 }
13 13
 
14
-if ( isset( $GLOBALS['wgWikimediaJenkinsCI'] ) && $GLOBALS['wgWikimediaJenkinsCI'] == true ) {
15
-	if ( is_readable( __DIR__ . '/../../vendor/autoload.php' ) ) {
14
+if (isset($GLOBALS['wgWikimediaJenkinsCI']) && $GLOBALS['wgWikimediaJenkinsCI'] == true) {
15
+	if (is_readable(__DIR__ . '/../../vendor/autoload.php')) {
16 16
 		require_once __DIR__ . '/../../vendor/autoload.php';
17 17
 	}
18
-} elseif ( is_readable( __DIR__ . '/vendor/autoload.php' ) ) {
18
+} elseif (is_readable(__DIR__ . '/vendor/autoload.php')) {
19 19
 	require_once __DIR__ . '/vendor/autoload.php';
20 20
 }
21 21
 
22 22
 $GLOBALS['wgExtensionFunctions'][] = function() {
23
-	if ( version_compare( $GLOBALS['wgVersion'], '1.23', '<' ) ) {
24
-		if ( !defined( 'SF_VERSION' ) || version_compare( 'SF_VERSION', '2.8', 'lt' ) ) {
25
-			die( '<b>Error:</b> This version of <a href="https://github.com/SemanticMediaWiki/SemanticFormsSelect/">SemanticFormsSelect</a> is only compatible with Semantic Forms 2.8 or above. You need to upgrade <a href="https://www.mediawiki.org/wiki/Extension:Semantic_Forms">Semantic Forms</a> first.' );
23
+	if (version_compare($GLOBALS['wgVersion'], '1.23', '<')) {
24
+		if (!defined('SF_VERSION') || version_compare('SF_VERSION', '2.8', 'lt')) {
25
+			die('<b>Error:</b> This version of <a href="https://github.com/SemanticMediaWiki/SemanticFormsSelect/">SemanticFormsSelect</a> is only compatible with Semantic Forms 2.8 or above. You need to upgrade <a href="https://www.mediawiki.org/wiki/Extension:Semantic_Forms">Semantic Forms</a> first.');
26 26
 		}
27 27
 	}
28 28
 
29
-	if ( version_compare( $GLOBALS['wgVersion'], '1.25', '>' ) ) {
30
-		if ( !\ExtensionRegistry::getInstance()->isLoaded( 'SemanticForms' ) ) {
31
-			die( '<b>Error:</b> <a href="https://www.mediawiki.org/wiki/Extension:SemanticFormsSelect">Semantic Forms Selects</a> is a Semantic Forms extension. You need to install <a href="https://www.mediawiki.org/wiki/Extension:Semantic_Forms">Semantic Forms</a> first.' );
29
+	if (version_compare($GLOBALS['wgVersion'], '1.25', '>')) {
30
+		if (!\ExtensionRegistry::getInstance()->isLoaded('SemanticForms')) {
31
+			die('<b>Error:</b> <a href="https://www.mediawiki.org/wiki/Extension:SemanticFormsSelect">Semantic Forms Selects</a> is a Semantic Forms extension. You need to install <a href="https://www.mediawiki.org/wiki/Extension:Semantic_Forms">Semantic Forms</a> first.');
32 32
 		}
33 33
 	}
34 34
 };
35 35
 
36 36
 // Do not initialize more than once.
37
-if ( defined( 'SFS_VERSION' ) ) {
37
+if (defined('SFS_VERSION')) {
38 38
 	return 1;
39 39
 }
40 40
 
41
-define( 'SFS_VERSION', '1.3.0' );
41
+define('SFS_VERSION', '1.3.0');
42 42
 
43
-if ( function_exists( 'wfLoadExtension' ) ) {
44
-	wfLoadExtension( 'SemanticFormsSelect' );
43
+if (function_exists('wfLoadExtension')) {
44
+	wfLoadExtension('SemanticFormsSelect');
45 45
 	// Keep i18n globals so mergeMessageFileList.php doesn't break
46 46
 	$GLOBALS['wgMessagesDirs']['SemanticFormsSelect'] = __DIR__ . '/i18n';
47 47
 	/* wfWarn(
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 $GLOBALS['wgExtensionCredits']['semantic'][] = array(
59 59
 	'path' => __FILE__,
60 60
 	'name' => 'Semantic Forms Select',
61
-	'author' =>array( 'Jason Zhang', 'Toni Hermoso Pulido', '...' ),
61
+	'author' =>array('Jason Zhang', 'Toni Hermoso Pulido', '...'),
62 62
 	'url' => 'https://www.mediawiki.org/wiki/Extension:SemanticFormsSelect',
63 63
 	'descriptionmsg' => 'semanticformsselect-desc',
64 64
 	'version'  => SFS_VERSION,
@@ -74,18 +74,18 @@  discard block
 block discarded – undo
74 74
 $GLOBALS['wgSF_Select_debug'] = 0;
75 75
 
76 76
 // Register resource files
77
-$extensionPathParts = explode( DIRECTORY_SEPARATOR . 'extensions' . DIRECTORY_SEPARATOR , __DIR__, 2 );
77
+$extensionPathParts = explode(DIRECTORY_SEPARATOR . 'extensions' . DIRECTORY_SEPARATOR, __DIR__, 2);
78 78
 
79 79
 $GLOBALS['wgResourceModules']['ext.sf_select.scriptselect'] = array(
80
-	'localBasePath' => __DIR__ ,
81
-	'remoteExtPath' => end( $extensionPathParts ),
80
+	'localBasePath' => __DIR__,
81
+	'remoteExtPath' => end($extensionPathParts),
82 82
 	'position' => 'bottom',
83
-	'scripts' => array( 'res/scriptSelect.js' ),
83
+	'scripts' => array('res/scriptSelect.js'),
84 84
 	'dependencies' => array(
85 85
 		'ext.semanticforms.main'
86 86
 	)
87 87
 );
88 88
 
89 89
 $GLOBALS['wgExtensionFunctions'][] = function() {
90
-	$GLOBALS['sfgFormPrinter']->setInputTypeHook( 'SF_Select', '\SFS\SemanticFormsSelect::init', array() );
90
+	$GLOBALS['sfgFormPrinter']->setInputTypeHook('SF_Select', '\SFS\SemanticFormsSelect::init', array());
91 91
 };
Please login to merge, or discard this patch.