1*b82f24afSAndreas Gohr<?php 2*b82f24afSAndreas Gohr 3*b82f24afSAndreas Gohr/** 4*b82f24afSAndreas Gohr * DokuWiki Plugin vshare (Helper Component) 5*b82f24afSAndreas Gohr * 6*b82f24afSAndreas Gohr * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html 7*b82f24afSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 8*b82f24afSAndreas Gohr */ 9*b82f24afSAndreas Gohrclass helper_plugin_vshare extends \dokuwiki\Extension\Plugin 10*b82f24afSAndreas Gohr{ 11*b82f24afSAndreas Gohr /** 12*b82f24afSAndreas Gohr * Loads the configures sites and their data 13*b82f24afSAndreas Gohr * 14*b82f24afSAndreas Gohr * @return array 15*b82f24afSAndreas Gohr */ 16*b82f24afSAndreas Gohr public static function loadSites() 17*b82f24afSAndreas Gohr { 18*b82f24afSAndreas Gohr return parse_ini_file(__DIR__ . '/sites.ini', true, INI_SCANNER_RAW); 19*b82f24afSAndreas Gohr } 20*b82f24afSAndreas Gohr} 21*b82f24afSAndreas Gohr 22