You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					40 lines
				
				1.2 KiB
			
		
		
			
		
	
	
					40 lines
				
				1.2 KiB
			| 
											12 years ago
										 | <?php
 | ||
|  | 
 | ||
|  | use yii\apidoc\models\ClassDoc;
 | ||
|  | use yii\apidoc\models\InterfaceDoc;
 | ||
|  | use yii\apidoc\models\TraitDoc;
 | ||
|  | /**
 | ||
| 
											12 years ago
										 |  * @var ClassDoc|InterfaceDoc|TraitDoc $type
 | ||
| 
											12 years ago
										 |  * @var boolean $protected
 | ||
|  |  * @var yii\web\View $this
 | ||
|  |  */
 | ||
|  | 
 | ||
| 
											12 years ago
										 | if ($protected && count($type->getProtectedMethods()) == 0 || !$protected && count($type->getPublicMethods()) == 0) {
 | ||
| 
											12 years ago
										 | 	return;
 | ||
|  | } ?>
 | ||
|  | 
 | ||
|  | <div class="summary docMethod">
 | ||
|  | <h2><?= $protected ? 'Protected Methods' : 'Public Methods' ?></h2>
 | ||
|  | 
 | ||
|  | <p><a href="#" class="toggle">Hide inherited methods</a></p>
 | ||
|  | 
 | ||
|  | <table class="summaryTable">
 | ||
|  | <colgroup>
 | ||
|  | 	<col class="col-method" />
 | ||
|  | 	<col class="col-description" />
 | ||
|  | 	<col class="col-defined" />
 | ||
|  | </colgroup>
 | ||
|  | <tr>
 | ||
|  |   <th>Method</th><th>Description</th><th>Defined By</th>
 | ||
|  | </tr>
 | ||
| 
											12 years ago
										 | <?php foreach($type->methods as $method): ?>
 | ||
| 
											12 years ago
										 | <?php if($protected && $method->visibility == 'protected' || !$protected && $method->visibility != 'protected'): ?>
 | ||
| 
											12 years ago
										 | <tr<?= $method->definedBy != $type->name ? ' class="inherited"' : '' ?> id="<?= $method->name ?>()">
 | ||
| 
											12 years ago
										 |   <td><?= $this->context->subjectLink($method, $method->name.'()') ?></td>
 | ||
|  |   <td><?= $method->shortDescription ?></td>
 | ||
|  |   <td><?= $this->context->typeLink($method->definedBy) ?></td>
 | ||
|  | </tr>
 | ||
|  | <?php endif; ?>
 | ||
|  | <?php endforeach; ?>
 | ||
|  | </table>
 | ||
|  | </div>
 |