/plugin/struct/ |
H A D | helper.php | 14 use dokuwiki\plugin\struct\meta\StructException; alias 45 * @throws StructException 88 * @throws StructException 104 throw new StructException("Validation failed:\n%s", join("\n", $errors)); 128 throw new StructException('lookup save error: no permission for schema'); 132 … throw new StructException("Validation failed:\n%s", implode("\n", $validator->getErrors())); 135 throw new StructException('No data saved'); 164 * @throws StructException 188 * @throws StructException 202 * @throws StructException [all …]
|
H A D | remote.php | 13 use dokuwiki\plugin\struct\meta\StructException; alias 53 } catch (StructException $e) { 85 } catch (StructException $e) { 120 } catch (StructException $e) { 161 } catch (StructException $e) {
|
/plugin/struct/action/ |
H A D | ajax.php | 11 use dokuwiki\plugin\struct\meta\StructException; alias 41 } catch (StructException $e) { 58 * @throws StructException 65 if (blank($col)) throw new StructException('No column provided'); 67 if (blank($schema) || blank($colname)) throw new StructException('Column format is wrong'); 70 if (!$schema->getId()) throw new StructException('Unknown Schema'); 73 if ($column === false) throw new StructException('Column not found');
|
H A D | inline.php | 14 use dokuwiki\plugin\struct\meta\StructException; alias 65 } catch (StructException $e) { 122 throw new StructException('inline save error: init'); 158 throw new StructException('saving failed'); 227 } catch (StructException $ignore) { 244 * @throws StructException when check fails 249 throw new StructException('inline save error: no such page'); 252 throw new StructException('inline save error: acl'); 255 throw new StructException('inline save error: lock'); 262 * @throws StructException when check fails [all …]
|
H A D | aggregationeditor.php | 16 use dokuwiki\plugin\struct\meta\StructException; alias 84 } catch (StructException $e) { 99 throw new StructException('No schema given'); 109 throw new StructException('lookup delete error: no permission for schema'); 252 throw new StructException('No row id given');
|
/plugin/struct/meta/ |
H A D | QueryBuilder.php | 47 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'); 263 throw new StructException('Placeholder not found');
|
H A D | CSVImporter.php | 55 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 D | Search.php | 89 throw new StructException('schema missing', $table); 168 throw new StructException("Bad comperator. Use " . join(',', self::$COMPARATORS)); 170 throw new StructException('Bad filter type . Only AND or OR allowed'); 238 throw new StructException('invalid row value syntax'); 337 throw new StructException('PIDs are only accessible after executing the search'); 351 throw new StructException('rids are only accessible after executing the search'); 385 if ($res === false) throw new StructException("SQL execution failed for\n\n$sql"); 436 if (!$this->columns) throw new StructException('nocolname'); 612 if (!$this->schemas) throw new StructException('noschemas'); 624 if (!$colname) throw new StructException('nocolname'); [all …]
|
H A D | QueryBuilderWhere.php | 84 * @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 D | SummaryColumn.php | 25 … 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 D | UserColumn.php | 26 … 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 D | RevisionColumn.php | 25 … 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');
|
/plugin/swarmwebhook/ |
H A D | helper.php | 4 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/_test/ |
H A D | QueryBuilderFrom.test.php | 6 use dokuwiki\plugin\struct\meta\StructException; alias 37 $this->expectException(StructException::class); 46 $this->expectException(StructException::class); 55 $this->expectException(StructException::class);
|
H A D | Schema.test.php | 6 use dokuwiki\plugin\struct\meta\StructException; alias 71 $this->expectException(StructException::class);
|
/plugin/struct/syntax/ |
H A D | list.php | 13 use dokuwiki\plugin\struct\meta\StructException; alias 75 } catch (StructException $e) { 92 throw new StructException('illegal option', $illegalOption); 123 } catch (StructException $e) {
|
H A D | value.php | 15 use dokuwiki\plugin\struct\meta\StructException; alias 73 } catch (StructException $e) { 113 } catch (StructException $e) {
|
H A D | cloud.php | 13 use dokuwiki\plugin\struct\meta\StructException; alias 71 } catch (StructException $e) { 102 } catch (StructException $e) {
|
H A D | table.php | 13 use dokuwiki\plugin\struct\meta\StructException; alias 75 } catch (StructException $e) { 121 } catch (StructException $e) {
|
/plugin/structat/syntax/ |
H A D | table.php | 12 use dokuwiki\plugin\struct\meta\StructException; alias 83 } catch (StructException $e) { 120 } catch (StructException $e) {
|
/plugin/struct/helper/ |
H A D | field.php | 5 use dokuwiki\plugin\struct\meta\StructException; alias 34 } catch (StructException $e) { 166 * @throws StructException 172 throw new StructException('Field \'%s\' not given in schema.field form', $colname);
|
/plugin/struct/admin/ |
H A D | assignments.php | 13 use dokuwiki\plugin\struct\meta\StructException; alias 54 } catch (StructException $e) { 96 } catch (StructException $e) {
|
/plugin/structsection/ |
H A D | syntax.php | 12 use dokuwiki\plugin\struct\meta\StructException; alias 103 } catch (StructException $e) { 122 } catch (StructException $ignored) {
|
/plugin/structjoin/types/ |
H A D | Join.php | 6 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/structpublish/action/ |
H A D | save.php | 3 use dokuwiki\plugin\struct\meta\StructException; alias 44 } catch(StructException $e) {
|