Line 105 in /www/htdocs/w01c2aa5/stage/konzepthoch3/vendor/silverstripe/framework/src/Dev/DebugView.php
96 ], 97 E_CORE_WARNING => [ 98 'title' => 'Core Warning', 99 'class' => 'warning' 100 ], 101 E_USER_WARNING => [ 102 'title' => 'User Warning', 103 'class' => 'warning' 104 ], 105 E_STRICT => [ 106 'title' => 'Strict Notice', 107 'class' => 'notice' 108 ], 109 E_RECOVERABLE_ERROR => [ 110 'title' => 'Recoverable Error', 111 'class' => 'warning'
Line 441 in /www/htdocs/w01c2aa5/stage/konzepthoch3/vendor/silverstripe/framework/src/ORM/DataList.php
432 } 433 // $columnName is a param that is passed by reference so is essentially as a return type 434 // it will be returned in quoted SQL "TableName"."ColumnName" notation 435 // if it's equal to $col however it means that it WAS orginally raw sql, which is disallowed for sort() 436 // 437 // applyRelation() will also throw an InvalidArgumentException if $column is not raw sql but 438 // the Relation.FieldName is not a valid model relationship 439 $this->applyRelation($col, $columnName, true); 440 if ($col === $columnName) { 441 throw new InvalidArgumentException("Invalid sort column $column"); 442 } 443 } 444 445 private function validateSortDirection(string $direction): void 446 { 447 $dir = strtolower($direction);