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

[eluser]Mirage[/eluser]
So I do have this right now:

Code:
class Plant extends DataMapper {
    var $has_one = array();
    var $has_many = array( 'image' );
Code:
class Image extends DataMapper {
    var $has_one = array();
    var $has_many = array();

I am assuming that I do not have to make a model for the plant_images relation.

Now in a synchronization loop for image resources I have the following:
Code:
foreach ($result as $key => $file)
{
    $info=pathinfo($key);
                
    if (!array_key_exists('extension',$info))
    {
        continue;
    }
    
    if (preg_match('/(_thumb|_small)$/', $info['filename']))
    {
        continue;
    }
    
    $image = new Image();
    $image->where('path', $key)
        ->limit(1)
        ->get();
    
    if (!$image->exists())
    {
        $image->name = $info['basename'];
        $image->path = $key;
    }
    
    // We expect that the plant record exists
    $plant = new plant();
    $plant->where('bailey_id', substr($info['basename'],0,4))
          ->limit(1)
          ->get();
    
    
    $image->trans_begin();
    
    // The image must be saved, no matter what
    log_message('debug', 'Saving Image');
    $image->save();
    
    if($image->trans_status===FALSE)
    {
        $image->trans_rollback();
        log_message('error', 'Transaction failed. Image did not save. '. $image->error->string);
        continue;
    }
    $image->trans_commit();
    log_message('debug', 'Image saved.');
    
    // If we do have a plant record, then we save it along with the image relation
    if (!$plant->exists())
    {
        log_message('error', 'No related plant record. Skip saving relation');
        continue;
    }
    
    // Save the relation
    log_message('debug', 'Saving Plant and image relation');
    $plant->save($image);

This will properly save/update the images. But there are two problems:

1. The plant model insists on the relation being called images_plants. Is there a way to customize this?
2. The call to $plant->save($image) will not create a relation to images_plants.

Pointers, please?

Thanks,
-m


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