From 6d29c834de55ade93f05f9f3e187e7257467c237 Mon Sep 17 00:00:00 2001
From: zYne <zYne@625475ce-881a-0410-a577-b389adb331d8>
Date: Wed, 27 Jun 2007 16:22:41 +0000
Subject: [PATCH] deprecated countRelated()

---
 lib/Doctrine/Record.php | 30 +++---------------------------
 1 file changed, 3 insertions(+), 27 deletions(-)

diff --git a/lib/Doctrine/Record.php b/lib/Doctrine/Record.php
index 7d271825c..2a3ff2d7f 100644
--- a/lib/Doctrine/Record.php
+++ b/lib/Doctrine/Record.php
@@ -1350,6 +1350,7 @@ abstract class Doctrine_Record extends Doctrine_Access implements Countable, Ite
     public function hasOne()
     {
         $this->_table->bind(func_get_args(), Doctrine_Relation::ONE_AGGREGATE);
+
         return $this;
     }
     /**
@@ -1364,6 +1365,7 @@ abstract class Doctrine_Record extends Doctrine_Access implements Countable, Ite
     public function hasMany()
     {
         $this->_table->bind(func_get_args(), Doctrine_Relation::MANY_AGGREGATE);
+
         return $this;
     }
     /**
@@ -1382,35 +1384,9 @@ abstract class Doctrine_Record extends Doctrine_Access implements Countable, Ite
     }
     public function hasColumns(array $definitions)
     {
-        foreach ($definitions as $name => $options) 
-        {
+        foreach ($definitions as $name => $options) {
             $this->hasColumn($name, $options['type'], $options['length'], $options);
         }
-    }
-    /**
-     * countRelated
-     *
-     * @param string $name      the name of the related component
-     * @return integer
-     */
-    public function countRelated($name)
-    {
-
-        $rel            = $this->_table->getRelation($name);
-        $componentName  = $rel->getTable()->getComponentName();
-        $query          = new Doctrine_Query();
-        /**
-        $query->select('COUNT(p.id)')
-              ->from($componentName)
-              ->where($componentName. '.' . $rel->getAlias()
-                      . '.' . $this->getTable()->getIdentifier(). ' = ?');
-           */
-        //$array = $query->execute(array($this->getIncremented()));
-
-        return 0;
-        //return $array[0]['COUNT(1)'];
-
-
     }
     /**
      * merge