OphTrOperationbooking_Admission_Letter_Warning_Rule::model PHP 메소드

model() 공개 정적인 메소드

Returns the static model of the specified AR class.
public static model ( $className = __CLASS__ ) : the
리턴 the static model class
    public static function model($className = __CLASS__)
    {
        return parent::model($className);
    }

Usage Example

예제 #1
0
		<div class="row field-row">
			<div class="large-<?php 
    echo $form->layoutColumns['label'];
    ?>
 column">
				<div class="field-label">
					Descendants:
				</div>
			</div>
			<div class="large-<?php 
    echo 12 - $form->layoutColumns['label'];
    ?>
 column">
				<div class="panel" style="margin:0">
					<?php 
    $this->widget('CTreeView', array('data' => OphTrOperationbooking_Admission_Letter_Warning_Rule::model()->findAllAsTree($rule, true, 'textPlain')));
    ?>
				</div>
			</div>
		</div>
	<?php 
}
?>
	<?php 
echo $form->errorSummary($rule);
?>
	<?php 
echo $form->formActions(array('delete' => $rule->id ? 'Delete' : false));
?>
	<?php 
$this->endWidget();
All Usage Examples Of OphTrOperationbooking_Admission_Letter_Warning_Rule::model