Kriegt man die realen DB Table Definitionen über YORM? #45
Unanswered
christophboecker
asked this question in
Q&A
Replies: 1 comment
-
|
Die wirklich richtigen wird man wohl nur per SQL-Abfrage bekommen. Aber über die Klasse $table_name = \rex::getTable('mytable');
$table = \rex_yform_manager_table::get($table_name);
$columns = $table->getColumns();
$xyzColumn = $columns['xyz'];Mit einer Modell-Class, hier am Beispiel $table = Mapset::table();
$columns = $table->getColumns();
$layerCol = $columns['layer']; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
-
Original-Frage von @bitshiftersgmbh:
Beta Was this translation helpful? Give feedback.
All reactions