1<?php
2/**
3 * Options for the simplemysqlclient plugin
4 *
5 * @author Heiko Heinz <heiko.heinz@soft2c.de>
6 */
7
8$meta['dbtype']  = array('multichoice','_choices' => array('mysql','postgresql')); //,'oracle'
9$meta['dbName'] = array('string');
10$meta['serverName'] = array('string');
11$meta['userName'] = array('string');
12$meta['passWord'] = array('string');
13$meta['allowedUserGroups'] = array('string');
14
15