Welcome Guest, Not a member yet? Register   Sign In
CodeExtinguisher Release Candidate 11

[eluser]GDmac - expocom[/eluser]
i begin to grasp yml, but 4 spaces wrong and and a param has gone one level down
suddenly i feel old, takes me some time to dive into code again.
on a side-note: spyc / yaml needs tab-support drastically
--
jTaby here is a small edit for the OneToMany plugin, where you can now
set which column for the other table that has this table's primary keys.
Local_table.'id' was hardcoded, i added remote_key to yml parsing. YML
Code:
other_table:
    class: OneToMany
    params:
        display_field: name
        table_fields: name, description
        primary_key: primary_from_other_table
        remote_key: other_table_column_pointing_here

in the plugin i replaced all hardcoded $this->local_table.'_id' with $this->remote_key
and added $remote_key to the vars. In the constructor added:
Code:
if(isset($this->params['remote_key'])){
            $this->remote_key = $this->params['remote_key'];
         }else{
            $this->remote_key = $this->local_table.'_id';
         }

Also: currently the constructor checks primary_key as a first-level param. if you want primary_key to be a param for OneToMany (and under params as in the yml-example above) then in the constructor:
Code:
$this->primary_key = (isset($params['primary_key']))? $params['primary_key'] : 'id';
should be:
$this->primary_key = (isset($params['params']['primary_key']))? $params['params']['primary_key'] : 'id';


Messages In This Thread
CodeExtinguisher Release Candidate 11 - by El Forum - 03-31-2008, 04:38 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-31-2008, 07:10 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-31-2008, 07:15 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-31-2008, 08:47 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-31-2008, 08:47 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-31-2008, 09:22 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-31-2008, 10:06 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 03:37 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 07:18 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 04:59 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 05:34 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 06:24 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 07:52 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 08:43 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 08:50 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 08:59 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 08:59 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 09:14 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:00 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:30 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:35 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:51 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 10:33 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 04:28 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 05:21 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 08:31 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 08:34 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 08:36 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 08:46 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:06 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:07 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:09 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:12 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:13 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:16 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:20 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:22 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:26 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:28 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:30 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:32 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:35 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:37 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:38 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 10:09 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 12:00 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 01:01 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 01:04 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 01:22 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 01:27 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 01:41 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 08:21 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 08:25 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 08:39 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 09:01 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 09:51 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 09:56 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 10:07 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 10:35 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 10:44 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 11:52 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-04-2008, 12:04 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-04-2008, 03:17 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-04-2008, 05:43 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-05-2008, 02:44 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-06-2008, 05:38 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-06-2008, 06:29 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-07-2008, 07:57 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-07-2008, 08:03 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-07-2008, 10:25 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-07-2008, 07:28 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-08-2008, 02:02 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-08-2008, 04:37 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 02:01 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 07:01 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 11:12 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 11:16 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 04:53 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 08:29 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 08:32 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 08:43 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 11:27 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 11:28 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 02:44 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 02:50 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 02:53 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 04:03 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 11:49 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 04:08 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 04:32 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 05:50 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 05:58 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 06:24 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 09:40 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 12:00 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 12:02 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 06:41 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 06:46 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:12 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:15 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:17 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:18 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:18 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:36 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:38 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:14 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:17 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:20 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:23 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:42 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:42 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:42 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:56 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:56 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 02:59 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 03:21 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 03:28 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 03:45 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 03:56 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 03:57 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 05:23 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 05:38 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 05:45 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:44 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-17-2008, 07:24 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-17-2008, 07:26 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-17-2008, 07:42 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-17-2008, 07:44 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-17-2008, 07:57 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-18-2008, 01:51 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 03:04 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 03:07 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 03:08 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 03:27 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 03:30 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 03:36 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 04:40 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 05:26 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 05:39 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 12:03 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 12:11 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 07:02 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 09:09 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 10:02 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 11:11 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 11:13 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 12:01 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 03:58 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 05:42 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 07:04 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 08:37 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-22-2008, 03:48 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-22-2008, 06:26 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-22-2008, 06:32 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-22-2008, 06:34 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-23-2008, 04:02 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-23-2008, 09:06 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-23-2008, 11:21 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-25-2008, 03:06 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-27-2008, 06:45 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-27-2008, 09:24 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-27-2008, 09:46 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 08:57 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 08:59 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 09:15 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 09:16 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 09:17 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 07:42 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 10:37 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 11:27 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-29-2008, 09:31 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 06:41 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 08:20 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 08:22 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 09:26 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 09:57 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 12:21 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 12:23 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 12:56 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 12:58 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 05:25 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 09:11 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 10:52 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 11:14 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 11:23 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 11:27 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 11:35 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 11:36 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 11:38 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 11:54 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 07-21-2008, 12:00 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-30-2009, 03:33 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-30-2009, 09:04 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-30-2009, 09:22 PM



Theme © iAndrew 2016 - Forum software by © MyBB