예제 #1
0
 public function getValidTypes()
 {
     if (!isset($this->_validTypes)) {
         $this->_validTypes = X2Model::getModelTypes(true, function ($elem) {
             return X2Model::model($elem)->asa('X2LinkableBehavior');
         });
     }
     return $this->_validTypes;
 }
예제 #2
0
파일: X2Flow.php 프로젝트: tymiles003/X2CRM
 public static function getModelTypes($assoc = false)
 {
     return array_diff_key(X2Model::getModelTypes($assoc), array_flip(array('Fingerprint', 'Charts', 'EmailInboxes')));
 }
예제 #3
0
            </div>
            <?php 
echo '<div class="alternation-text">-&nbsp;' . CHtml::encode(Yii::t('app', 'OR')) . '&nbsp;-</div>';
?>
            <div class='record-specification-container choice-container<?php 
echo $model->getSelection() !== 'topLinkUrl' ? ' selected-choice' : '';
?>
'>
            <?php 
echo CHtml::tag('h3', array(), CHtml::encode(Yii::t('admin', 'Select a record:')));
echo $form->label($model, 'recordName');
if (!isset($model->recordType)) {
    $model->recordType = 'Contacts';
}
echo $form->multiTypeAutocomplete($model, 'recordType', 'recordId', X2Model::getModelTypes(true, function ($elem) {
    return X2Model::model($elem)->asa('X2LinkableBehavior');
}), array('autocompleteName' => 'recordName', 'autocompleteValue' => $model->recordName, 'htmlOptions' => array('class' => 'all-form-input-style')));
?>
            </div>
            <div class='extra-options-container'>
            <?php 
echo $form->checkBox($model, 'openInNewTab');
echo $form->label($model, 'openInNewTab', array('style' => 'display: inline;'));
?>
            </div>
        </div>
        <?php 
echo CHtml::submitButton(Yii::t('admin', "Create"), array('class' => 'x2-button', 'id' => 'create-top-bar-link'));
$this->endWidget();
?>
</div>