How can I get the className of my table in cakephp 3?

anghazi ghermezi

In my AcosTable.php I have

$this->hasMany('ChildAcos', [
    'alias' => 'ChildAcos',
    'className' => 'Acos',
    'foreignKey' => 'parent_id'
]);

I need table name(className property) in appController. In my appController I have

$associations = $this->{$this->modelClass}->associations();
foreach ($associations->type('HasMany') as $item) {
    $options['name'] = $item->name();             //ChildAcos
    $options['foreignKey'] = $item->foreignKey(); //parent_id
    //$options['className'] = $item->?();         //Acos
    $hasMany[] = $options;
}

How can I retrieve className?

ndm

As opposed to all the other association options, there seems to be no way to get hold of the value of Association::$_className, you may want to report this over at GitHub, I think it wouldn't hurt to make this accessible too (at least readable).

For now it seems that all you can do is figure it from the target tables full classname, something like:

$fqn = get_class($item->target());
$parts = namespaceSplit($fqn);
$className = substr(end($parts), 0, -5);

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can i get assocation table colums name? cakephp 3.x

From Dev

React - how can I get updated data to show in my table?

From Dev

How can I get rid of these extra entries in my lookup table?

From Dev

How can I get element by ClassName with starts with a certain string?

From Dev

How can I get element by ClassName with starts with a certain string?

From Dev

In CakePHP 3.x how can I count the number of rows in a MySql table?

From Dev

How do I get the table schema/columns from an entity object in cakephp 3?

From Dev

How can I get the Bluetooth working on my Lenovo Yoga 3?

From Dev

Can I set the default order on the Table class on cakephp3

From Dev

I can't get my table responsive

From Dev

How can I get rid of duplicates so I can change my table PK?

From Dev

How can I use my own external class in CakePHP 3.0?

From Dev

How can I get this D3.js HTML element in my AngularJS so that I can manipulate it?

From Dev

How can I link my Junction table to my main table

From Dev

How I can get values of headers of my table when I select a cell?

From Dev

How can I "treefy" my table?

From Dev

How can I "treefy" my table?

From Dev

How can I get a list of all CakePHP routes?

From Dev

how can i get the nodes that dont have children in CakePHP?

From Dev

How can i write this query in cakephp-3 way?

From Dev

How can I join two tables on multiple columns in CakePHP 3?

From Dev

How can I resolve this SQLSTATE error in the context of cakephp 3?

From Dev

How can I override FormHelper in CakePHP 3.X?

From Dev

How can I create cakephp 3 custom template

From Dev

How can I add and get all my database table values (numbers) and displaying the total amount? C#

From Dev

How can I add and get all my database table values (numbers) and displaying the total amount? C#

From Dev

How can I get the number of register on my grid that using table and not repeater using protractor?

From Dev

How can I get the coordinates of my mouse?

From Dev

How can I get a RobotState of my robot?

Related Related

  1. 1

    How can i get assocation table colums name? cakephp 3.x

  2. 2

    React - how can I get updated data to show in my table?

  3. 3

    How can I get rid of these extra entries in my lookup table?

  4. 4

    How can I get element by ClassName with starts with a certain string?

  5. 5

    How can I get element by ClassName with starts with a certain string?

  6. 6

    In CakePHP 3.x how can I count the number of rows in a MySql table?

  7. 7

    How do I get the table schema/columns from an entity object in cakephp 3?

  8. 8

    How can I get the Bluetooth working on my Lenovo Yoga 3?

  9. 9

    Can I set the default order on the Table class on cakephp3

  10. 10

    I can't get my table responsive

  11. 11

    How can I get rid of duplicates so I can change my table PK?

  12. 12

    How can I use my own external class in CakePHP 3.0?

  13. 13

    How can I get this D3.js HTML element in my AngularJS so that I can manipulate it?

  14. 14

    How can I link my Junction table to my main table

  15. 15

    How I can get values of headers of my table when I select a cell?

  16. 16

    How can I "treefy" my table?

  17. 17

    How can I "treefy" my table?

  18. 18

    How can I get a list of all CakePHP routes?

  19. 19

    how can i get the nodes that dont have children in CakePHP?

  20. 20

    How can i write this query in cakephp-3 way?

  21. 21

    How can I join two tables on multiple columns in CakePHP 3?

  22. 22

    How can I resolve this SQLSTATE error in the context of cakephp 3?

  23. 23

    How can I override FormHelper in CakePHP 3.X?

  24. 24

    How can I create cakephp 3 custom template

  25. 25

    How can I add and get all my database table values (numbers) and displaying the total amount? C#

  26. 26

    How can I add and get all my database table values (numbers) and displaying the total amount? C#

  27. 27

    How can I get the number of register on my grid that using table and not repeater using protractor?

  28. 28

    How can I get the coordinates of my mouse?

  29. 29

    How can I get a RobotState of my robot?

HotTag

Archive