1*2e564e06SAndreas Gohr<?php 2*2e564e06SAndreas Gohr/** 3*2e564e06SAndreas Gohr * Options for the dbquery plugin 4*2e564e06SAndreas Gohr * 5*2e564e06SAndreas Gohr * @author Andreas Gohr <dokuwiki@cosmocode.de> 6*2e564e06SAndreas Gohr */ 7*2e564e06SAndreas Gohr 8*2e564e06SAndreas Gohr$meta['namespace'] = ['string']; 9*2e564e06SAndreas Gohr$meta['dsn'] = ['string']; 10*2e564e06SAndreas Gohr$meta['user'] = ['string']; 11*2e564e06SAndreas Gohr$meta['pass'] = ['password']; 12*2e564e06SAndreas Gohr 13*2e564e06SAndreas Gohr 14