Home
last modified time | relevance | path

Searched refs:StructException (Results 1 – 25 of 69) sorted by relevance

123

/plugin/struct/
H A Dhelper.php15 use dokuwiki\plugin\struct\meta\StructException; alias
46 * @throws StructException
89 * @throws StructException
100 …if (!page_exists($page)) throw new StructException("Page does not exist. You can not attach struct…
105 throw new StructException("Validation failed:\n%s", implode("\n", $errors));
129 throw new StructException('lookup save error: no permission for schema');
133 … throw new StructException("Validation failed:\n%s", implode("\n", $validator->getErrors()));
136 throw new StructException('No data saved');
165 * @throws StructException
189 * @throws StructException
[all …]
H A Dremote.php17 use dokuwiki\plugin\struct\meta\StructException; alias
56 } catch (StructException $e) {
88 } catch (StructException $e) {
124 } catch (StructException $e) {
166 } catch (StructException $e) {
/plugin/struct/action/
H A Dajax.php14 use dokuwiki\plugin\struct\meta\StructException; alias
44 } catch (StructException $e) {
61 * @throws StructException
68 if (blank($col)) throw new StructException('No column provided');
70 if (blank($schema) || blank($colname)) throw new StructException('Column format is wrong');
73 if (!$schema->getId()) throw new StructException('Unknown Schema');
76 if ($column === false) throw new StructException('Column not found');
H A Dinline.php17 use dokuwiki\plugin\struct\meta\StructException; alias
68 } catch (StructException $e) {
125 throw new StructException('inline save error: init');
133 throw new StructException('inline save error: schema not assigned to page');
137 throw new StructException('inline save error: no permission for schema');
144 throw new StructException(implode("\n", $validator->getErrors()));
161 throw new StructException('saving failed');
230 } catch (StructException $ignore) {
247 * @throws StructException when check fails
252 throw new StructException('inline save error: no such page');
[all …]
H A Daggregationeditor.php19 use dokuwiki\plugin\struct\meta\StructException; alias
87 } catch (StructException $e) {
102 throw new StructException('No schema given');
112 throw new StructException('lookup delete error: no permission for schema');
255 throw new StructException('No row id given');
/plugin/swarmwebhook/
Dhelper.php4 use dokuwiki\plugin\struct\meta\StructException; alias
51 throw new StructException('lookup save error: no permission for schema');
55 … throw new StructException("Validation failed:\n%s", implode("\n", $validator->getErrors()));
58 throw new StructException('No data saved');
87 throw new StructException('lookup delete error: no permission for schema');
/plugin/struct/meta/
H A DQueryBuilder.php47 throw new StructException('Table Alias does not exist');
74 * @throws StructException when the alias does not exist
79 throw new StructException('No such select alias');
95 throw new StructException('Table Alias exists');
113 throw new StructException('Table Alias does not exist');
116 throw new StructException('Table Alias already exists');
154 throw new StructException('Table Alias does not exist');
H A DCSVImporter.php55 if (!$this->schema->getId()) throw new StructException('Schema does not exist');
65 * @throws StructException
87 throw new StructException('Failed to open CSV file for reading');
109 if (!$header) throw new StructException('Failed to read CSV');
133 … throw new StructException('None of the CSV headers matched any of the schema\'s fields');
184 … if (!isset($line[$i])) throw new StructException('Missing field at CSV line %d', $this->line);
H A DSearch.php91 throw new StructException('schema missing', $table);
209 throw new StructException("Bad comperator. Use " . implode(',', self::$COMPARATORS));
211 throw new StructException('Bad filter type . Only AND or OR allowed');
279 throw new StructException('invalid row value syntax');
472 if ($res === false) throw new StructException("SQL execution failed for\n\n$sql");
493 if (!$this->columns) throw new StructException('nocolname');
572 if (!$this->schemas) throw new StructException('noschemas');
584 if (!$colname) throw new StructException('nocolname');
597 if (!$this->schemas) throw new StructException('noschemas');
H A DQueryBuilderWhere.php84 * @throws StructException when this is not a sub clause
89 … throw new StructException('This WHERE is not a sub clause and can not have additional clauses');
92 throw new StructException('Bad logical operator');
H A DSummaryColumn.php25 … if ($type->isMulti()) throw new StructException('SummaryColumns can not be multi value types!');
32 throw new StructException('Accessing the colref of a SummaryColumn makes no sense');
H A DUserColumn.php26 … if ($type->isMulti()) throw new StructException('UserColumns can not be multi value types!');
33 throw new StructException('Accessing the colref of a UserColumn makes no sense');
H A DRevisionColumn.php25 … if ($type->isMulti()) throw new StructException('RevisionColumns can not be multi value types!');
32 throw new StructException('Accessing the colref of a RevisionColumn makes no sense');
H A DPageColumn.php25 … if ($type->isMulti()) throw new StructException('PageColumns can not be multi value types!');
31 throw new StructException('Accessing the colref of a PageColumn makes no sense');
/plugin/struct/_test/
H A DQueryBuilderFromTest.php6 use dokuwiki\plugin\struct\meta\StructException; alias
41 $this->expectException(StructException::class);
50 $this->expectException(StructException::class);
59 $this->expectException(StructException::class);
H A DSchemaTest.php6 use dokuwiki\plugin\struct\meta\StructException; alias
70 $this->expectException(StructException::class);
/plugin/struct/syntax/
H A Dtable.php15 use dokuwiki\plugin\struct\meta\StructException; alias
81 } catch (StructException $e) {
122 … throw new StructException('Aggregation class does not inherit Aggregation: ' . $this->tableclass);
133 } catch (StructException $e) {
173 throw new StructException('illegal option', $illegalOption);
H A Dvalue.php15 use dokuwiki\plugin\struct\meta\StructException; alias
73 } catch (StructException $e) {
115 } catch (StructException $e) {
H A Dcloud.php14 use dokuwiki\plugin\struct\meta\StructException; alias
72 } catch (StructException $e) {
102 } catch (StructException $e) {
/plugin/struct/helper/
H A Dconfig.php4 use dokuwiki\plugin\struct\meta\StructException; alias
51 * @throws StructException
63 throw new StructException('Invalid search filter %s', hsc($val));
/plugin/structat/syntax/
Dtable.php12 use dokuwiki\plugin\struct\meta\StructException; alias
83 } catch (StructException $e) {
120 } catch (StructException $e) {
/plugin/struct/admin/
H A Dassignments.php13 use dokuwiki\plugin\struct\meta\StructException; alias
54 } catch (StructException $e) {
96 } catch (StructException $e) {
/plugin/structsection/
Dsyntax.php12 use dokuwiki\plugin\struct\meta\StructException; alias
102 } catch (StructException $e) {
121 } catch (StructException $ignored) {
/plugin/structjoin/types/
DJoin.php6 use dokuwiki\plugin\struct\meta\StructException; alias
103 throw new StructException("Select Lookup column to use Join.");
164 throw new StructException("Select Lookup column to use Join.");
189 throw new StructException("Select Lookup column to use Join.");
/plugin/struct/types/
H A DAbstractBaseType.php9 use dokuwiki\plugin\struct\meta\StructException; alias
201 * @throws StructException
206 throw new StructException(
529 * @throws StructException when something goes wrong
533 throw new StructException('not implemented');

123