本文整理汇总了PHP中Combination::create方法的典型用法代码示例。如果您正苦于以下问题:PHP Combination::create方法的具体用法?PHP Combination::create怎么用?PHP Combination::create使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Combination
的用法示例。
在下文中一共展示了Combination::create方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: add
function add()
{
if (!empty($this->data)) {
$this->Browser->create();
if ($this->Browser->save($this->data)) {
App::import('Model', 'Operatingsystem');
App::import('Model', 'Combination');
$os = new Operatingsystem();
$combination = new Combination();
$os->recursive = 0;
$all_os = $os->find('all');
foreach ($all_os as $value) {
$data = array();
$data['Combination']['operatingsystem_id'] = $value['Operatingsystem']['id'];
$data['Combination']['browser_id'] = $this->Browser->id;
$combination->create();
$combination->save($data);
}
$this->Session->setFlash(__('The Browser has been saved', true));
$this->redirect(array('action' => 'index'));
} else {
$this->Session->setFlash(__('The Browser could not be saved. Please, try again.', true));
}
}
}
示例2: add
function add()
{
if (!empty($this->data)) {
$this->Operatingsystem->create();
if ($this->Operatingsystem->save($this->data)) {
$browser = new Browser();
$combination = new Combination();
$browser->recursive = 0;
$all_browser = $browser->find('all');
foreach ($all_browser as $value) {
$data = array();
$data['Combination']['browser_id'] = $value['Browser']['id'];
$data['Combination']['operatingsystem_id'] = $this->Operatingsystem->id;
$combination->create();
$combination->save($data);
}
$this->Session->setFlash(__('The Operatingsystem has been saved', true));
$this->redirect(array('action' => 'index'));
} else {
$this->Session->setFlash(__('The Operatingsystem could not be saved. Please, try again.', true));
}
}
}