Adding auto detection of intermediate table names.

Signed-off-by: Taylor Otwell <taylorotwell@gmail.com>
This commit is contained in:
Taylor Otwell 2012-03-16 13:01:48 -05:00
parent c3d95122e4
commit dc92dd264d
3 changed files with 33 additions and 2 deletions

View File

@ -264,7 +264,7 @@ public function belongs_to($model, $foreign = null)
* @param string $other
* @return Relationship
*/
public function has_many_and_belongs_to($model, $table, $foreign = null, $other = null)
public function has_many_and_belongs_to($model, $table = null, $foreign = null, $other = null)
{
return new Has_Many_And_Belongs_To($this, $model, $table, $foreign, $other);
}

View File

@ -39,11 +39,27 @@ public function __construct($model, $associated, $table, $foreign, $other)
{
$this->other = $other;
$this->joining = $table;
$this->joining = $table ?: $this->joining($model, $associated);
parent::__construct($model, $associated, $foreign);
}
/**
* Determine the joining table name for the relationship.
*
* By default, the name is the models sorted and concatenated with an underscore.
*
* @return string
*/
protected function joining($model, $associated)
{
$models = array(class_basename($model), class_basename($associated));
sort($models);
return strtolower($models[0].'_'.$models[1]);
}
/**
* Get the properly hydrated results for the relationship.
*

View File

@ -376,6 +376,21 @@ function root_namespace($class, $separator = '\\')
}
}
/**
* Get the "class basename" of a class or object.
*
* The basename is considered the name of the class minus all namespaces.
*
* @param object|string $class
* @return string
*/
function class_basename($class)
{
if (is_object($class)) $class = get_class($class);
return basename($class);
}
/**
* Return the value of the given item.
*