summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticFormsSelect/src/Output.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticFormsSelect/src/Output.php')
-rw-r--r--www/wiki/extensions/SemanticFormsSelect/src/Output.php47
1 files changed, 47 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticFormsSelect/src/Output.php b/www/wiki/extensions/SemanticFormsSelect/src/Output.php
new file mode 100644
index 00000000..578a0ab5
--- /dev/null
+++ b/www/wiki/extensions/SemanticFormsSelect/src/Output.php
@@ -0,0 +1,47 @@
+<?php
+
+/**
+ * @license GNU GPL v2+
+ * @since 1.3
+ *
+ * @author mwjames
+ * @author Alexander Gesinn
+ */
+
+namespace SFS;
+
+//use MWDebug;
+
+class Output {
+
+ /**
+ * @var array
+ */
+ private static $headItems = [];
+
+ /**
+ * Add an array of SF_Select field parameters as defined in Page Form's field tag.
+ *
+ * This will later be added to $wgOut so that JS can access it via mw.config.get
+ *
+ * @param array $data
+ */
+ public static function addToHeadItem( Array $data = [] ) {
+ return self::$headItems[] = $data;
+ }
+
+ /**
+ * Commit all SF_Select field parameters to Output
+ *
+ */
+ public static function commitToParserOutput() {
+ global $wgOut; # is there a better way to get $output/$parser without using a global? (testability!)
+
+ // to be used in JS like:
+ // var SFSelect_fobjs = $.parseJSON( mw.config.get( 'sf_select' ) );
+ $wgOut->addJsConfigVars('sf_select', json_encode( self::$headItems ));
+
+ //self::$resourceModules = array();
+ //self::$headItems = array();
+ }
+}