Index: trunk/extensions/SemanticResultFormats/README |
— | — | @@ -9,14 +9,14 @@ |
10 | 10 | extracting an installation package. In order to include all available |
11 | 11 | result formats, you can simply add the following line to your code: |
12 | 12 | |
13 | | -require_once( 'path/to/extension/SemanticResultFormat.php' ); |
| 13 | +require_once( 'path/to/extension/SRF_Settings.php' ); |
14 | 14 | |
15 | 15 | If you want to enable only some of the available formats, you have to declare |
16 | 16 | an array with all activated formats before including the file, e.g. |
17 | 17 | |
18 | 18 | global $srfgFormats; |
19 | 19 | $srfgFormats = array('graph', 'googlebar'); |
20 | | -require_once( 'path/to/extension/SemanticResultFormat.php' ); |
| 20 | +require_once( 'path/to/extension/SRF_Settings.php' ); |
21 | 21 | |
22 | 22 | This will activate the graph and the google bar char format. The keywords |
23 | 23 | for the formats are given below. |