Welcome Guest, Not a member yet? Register   Sign In
[Deprecated] DMZ 1.5.4 (DataMapper OverZealous Edition)
#64

[eluser]OverZealous[/eluser]
[quote author="introvert" date="1256588941"]
I'm trying to join 2 tables with DM OZ edition, where field 'domain' is the same.

Entry model:
id
last_updated
domain

Filter model:
id
domain
priority[/quote]

Hi, introvert,

DMZ will only work with the integer-based id fields for relationships.

You didn't mention if this was a One-to-One, One-to-Many, or Many-to-Many relationship, but if it is a One-to-XXX relationship, then I recommend only storing the domain on one side of the relationship. You'll need to add a standard relationship column to the other object. Then you can query and access the domain using normal relationship methods.

For example, let's assume that each Entry has One Filter, and each Filter has Many Entries.

First, add a column filter_id to Entry. Remove the domain column from Entry, as well. Then you can access and query Entry like so:

Code:
$e = new Entry();
// Get entries by Domain
$e->where_related('filter', 'domain', $domain_value)->get();

// Get all entries, and include the domain in the results.
// The last argument (FALSE) is to prevent the prefix from being appended.
// See Get (Advanced) in the manual for include_related.
$e->include_related('filter', 'domain', FALSE)->get();


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



Theme © iAndrew 2016 - Forum software by © MyBB