本文整理汇总了PHP中x2base::index方法的典型用法代码示例。如果您正苦于以下问题:PHP x2base::index方法的具体用法?PHP x2base::index怎么用?PHP x2base::index使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类x2base
的用法示例。
在下文中一共展示了x2base::index方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionViewGroup
public function actionViewGroup()
{
$model = new Actions('search');
$name = 'Actions';
parent::index($model, $name);
}
示例2: actionIndex
/**
* Lists all models.
*/
public function actionIndex()
{
$model = new Product('search');
$name = 'Product';
parent::index($model, $name);
}
示例3: actionIndex
/**
* Lists all models.
*/
public function actionIndex()
{
$model = new Quote('search');
$name = 'Quote';
parent::index($model, $name);
}
示例4: actionIndex
/**
* Lists all models.
*/
public function actionIndex()
{
$model = new Sales('search');
$name = 'Sales';
parent::index($model, $name);
}
示例5: actionIndex
/**
* Lists all models.
*/
public function actionIndex()
{
$model = new ProjectChild('search');
$name = 'ProjectChild';
parent::index($model, $name);
}
示例6: actionIndex
/**
* Lists all models.
*/
public function actionIndex()
{
$model = new MarketingChild('search');
$name = 'MarketingChild';
parent::index($model, $name);
}
示例7: actionIndex
/**
* Lists all models.
*/
public function actionIndex()
{
$model = new CaseChild('search');
$name = 'CaseChild';
parent::index($model, $name);
}
示例8: actionList
public function actionList()
{
$model = new X2Calendar('search');
$name = 'Calendar';
parent::index($model, $name);
}
示例9: actionIndex
public function actionIndex()
{
$model = new Contacts('search');
$name = 'Contacts';
parent::index($model, $name);
}
示例10: actionIndex
/**
* Lists all models.
*/
public function actionIndex()
{
$model = new Accounts('search');
$name = 'Accounts';
parent::index($model, $name);
}
示例11: actionIndex
/**
* Lists all models.
*/
public function actionIndex()
{
$model = new Campaign('search');
//hack until mass assignment problem solved
$model->active = null;
$model->complete = null;
$model->launched = null;
$name = 'Campaign';
parent::index($model, $name);
}