2010-08-21 04:43:03 +00:00
|
|
|
<?php defined('SYSPATH') or die('No direct script access.');
|
|
|
|
/**
|
|
|
|
* Class method documentation generator.
|
|
|
|
*
|
|
|
|
* @package Kohana/Userguide
|
|
|
|
* @category Base
|
|
|
|
* @author Kohana Team
|
|
|
|
* @copyright (c) 2009 Kohana Team
|
|
|
|
* @license http://kohanaphp.com/license
|
|
|
|
*/
|
|
|
|
class Kohana_Kodoc_Method extends Kodoc {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var ReflectionMethod The ReflectionMethod for this class
|
|
|
|
*/
|
|
|
|
public $method;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array array of Kodoc_Method_Param
|
|
|
|
*/
|
|
|
|
public $params;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array the things this function can return
|
|
|
|
*/
|
|
|
|
public $return = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string the source code for this function
|
|
|
|
*/
|
|
|
|
public $source;
|
|
|
|
|
|
|
|
public function __construct($class, $method)
|
|
|
|
{
|
|
|
|
$this->method = new ReflectionMethod($class, $method);
|
|
|
|
|
|
|
|
$this->class = $parent = $this->method->getDeclaringClass();
|
|
|
|
|
|
|
|
if ($modifiers = $this->method->getModifiers())
|
|
|
|
{
|
|
|
|
$this->modifiers = '<small>'.implode(' ', Reflection::getModifierNames($modifiers)).'</small> ';
|
|
|
|
}
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if ($parent->hasMethod($method) AND $comment = $parent->getMethod($method)->getDocComment())
|
|
|
|
{
|
|
|
|
// Found a description for this method
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while ($parent = $parent->getParentClass());
|
|
|
|
|
|
|
|
list($this->description, $tags) = Kodoc::parse($comment);
|
|
|
|
|
|
|
|
if ($file = $this->class->getFileName())
|
|
|
|
{
|
|
|
|
$this->source = Kodoc::source($file, $this->method->getStartLine(), $this->method->getEndLine());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($tags['param']))
|
|
|
|
{
|
|
|
|
$params = array();
|
|
|
|
|
|
|
|
foreach ($this->method->getParameters() as $i => $param)
|
|
|
|
{
|
2011-05-13 06:00:25 +00:00
|
|
|
$param = new Kodoc_Method_Param(array($this->method->class, $this->method->name),$i);
|
2010-08-21 04:43:03 +00:00
|
|
|
|
|
|
|
if (isset($tags['param'][$i]))
|
|
|
|
{
|
2012-11-09 12:18:50 +00:00
|
|
|
preg_match('/^(\S+)(?:\s*(?:\$'.$param->name.'\s*)?(.+))?$/s', $tags['param'][$i], $matches);
|
2010-08-21 04:43:03 +00:00
|
|
|
|
|
|
|
$param->type = $matches[1];
|
|
|
|
|
|
|
|
if (isset($matches[2]))
|
|
|
|
{
|
2011-05-13 06:00:25 +00:00
|
|
|
$param->description = ucfirst($matches[2]);
|
2010-08-21 04:43:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$params[] = $param;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->params = $params;
|
|
|
|
|
|
|
|
unset($tags['param']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($tags['return']))
|
|
|
|
{
|
|
|
|
foreach ($tags['return'] as $return)
|
|
|
|
{
|
|
|
|
if (preg_match('/^(\S*)(?:\s*(.+?))?$/', $return, $matches))
|
|
|
|
{
|
|
|
|
$this->return[] = array($matches[1], isset($matches[2]) ? $matches[2] : '');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unset($tags['return']);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->tags = $tags;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function params_short()
|
|
|
|
{
|
|
|
|
$out = '';
|
|
|
|
$required = TRUE;
|
|
|
|
$first = TRUE;
|
|
|
|
foreach ($this->params as $param)
|
|
|
|
{
|
|
|
|
if ($required AND $param->default AND $first)
|
|
|
|
{
|
|
|
|
$out .= '[ '.$param;
|
|
|
|
$required = FALSE;
|
|
|
|
$first = FALSE;
|
|
|
|
}
|
|
|
|
elseif ($required AND $param->default)
|
|
|
|
{
|
|
|
|
$out .= '[, '.$param;
|
|
|
|
$required = FALSE;
|
|
|
|
}
|
|
|
|
elseif ($first)
|
|
|
|
{
|
|
|
|
$out .= $param;
|
|
|
|
$first = FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$out .= ', '.$param;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! $required)
|
|
|
|
{
|
|
|
|
$out .= '] ';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
|
2012-11-09 12:18:50 +00:00
|
|
|
} // End Kodoc_Method
|