1 | <?php |
||
11 | final class SRFUtils { |
||
12 | |||
13 | /** |
||
14 | * Helper function that generates a html element, representing a |
||
15 | * processing/loading image as long as jquery is inactive |
||
16 | * |
||
17 | * @param boolean $isHtml |
||
18 | * |
||
19 | * @since 1.8 |
||
20 | */ |
||
21 | 2 | public static function htmlProcessingElement( $isHtml = true ) { |
|
|
|||
22 | 2 | SMWOutputs::requireResource( 'ext.srf' ); |
|
23 | |||
24 | 2 | return Html::rawElement( |
|
25 | 2 | 'div', |
|
26 | 2 | [ 'class' => 'srf-spinner mw-small-spinner' ], |
|
27 | 2 | Html::element( |
|
28 | 2 | 'span', |
|
29 | 2 | [ 'class' => 'srf-processing-text' ], |
|
30 | 2 | wfMessage( 'srf-module-loading' )->inContentLanguage()->text() |
|
31 | ) |
||
32 | ); |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * Add JavaScript variables to the output |
||
37 | * |
||
38 | * @since 1.8 |
||
39 | */ |
||
40 | 1 | public static function addGlobalJSVariables(){ |
|
49 | |||
50 | /** |
||
51 | * @brief Returns semantic search link for the current query |
||
52 | * |
||
53 | * Generate a link to access the current ask query |
||
54 | * |
||
55 | * @since 1.8 |
||
56 | * |
||
57 | * @param string $link |
||
58 | * |
||
59 | * @return $link |
||
60 | */ |
||
61 | public static function htmlQueryResultLink( $link ) { |
||
73 | |||
74 | /** |
||
75 | * @since 3.2.0 |
||
76 | * |
||
77 | * @param array $data |
||
78 | * |
||
79 | * @param string|null|bool $nonce |
||
80 | * |
||
81 | * @return string|WrappedString HTML |
||
82 | */ |
||
83 | 2 | public static function makeVariablesScript( $data, $nonce = null ) { |
|
88 | |||
89 | } |
||
90 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.