Lines Matching defs:schema
38 * @param string $schema The schema to use empty for all
40 * @return array ('schema' => ( 'fieldlabel' => 'value', ...))
44 public function getData($page, $schema, $time)
52 if (!$schema) $schema = null;
55 return $this->hlp->getData($page, $schema, $time);
70 * @param array $data ('schema' => ( 'fieldlabel' => 'value', ...))
98 * @param string $schema the schema to query, empty for all
103 public function getSchema($schema = null)
106 throw new AccessDeniedException('you need to be manager to access schema info');
111 $schemas = $this->hlp::getSchema($schema ?: null);
112 foreach ($schemas as $name => $schema) {
114 foreach ($schema->getColumns(false) as $column) {
132 * @param array $schemas array of strings with the schema-names
142 $schemaLine = 'schema: ' . implode(', ', $schemas);