本文整理汇总了PHP中CommonModel::insertNewRecord方法的典型用法代码示例。如果您正苦于以下问题:PHP CommonModel::insertNewRecord方法的具体用法?PHP CommonModel::insertNewRecord怎么用?PHP CommonModel::insertNewRecord使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CommonModel
的用法示例。
在下文中一共展示了CommonModel::insertNewRecord方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: view_addNewCsTpl
public function view_addNewCsTpl()
{
$name = isset($_POST['title']) ? trim($_POST['title']) : '';
$subject = isset($_POST['topic']) ? trim($_POST['topic']) : '';
$content = isset($_POST['content']) ? trim($_POST['content']) : '';
$countries = isset($_POST['country']) ? $_POST['country'] : false;
$ectm_obj = new EbayCsTplManageModel();
if (empty($name) || empty($subject) || empty($content)) {
$msgdata = array('data' => array('数据不完整!'), 'link' => 'index.php?mod=messageTemplate&act=showEbayTplList');
goErrMsgPage($msgdata);
exit;
}
foreach ($countries as $country) {
//国家代码必须存在 并且该国家还没有关联模板
if (!$ectm_obj->checkCountryCodeExists($country) || !$ectm_obj->checkAllowSet($country)) {
$msgdata = array('data' => array('不合法的国家代码!'), 'link' => 'index.php?mod=messageTemplate&act=showEbayTplList');
goErrMsgPage($msgdata);
exit;
}
}
$tplmodel = new CommonModel('msg_ebaycstpl');
$name = htmlentities($name);
$subject = htmlentities($subject);
$content = htmlentities($content);
$insertData = array('name' => $name, 'subject' => $subject, 'content' => $content, 'updateTime' => time(), 'is_delete' => 0);
$insertId = $tplmodel->insertNewRecord($insertData);
if (FALSE === $insertId) {
$msgdata = array('data' => array('插入数据失败!'), 'link' => 'index.php?mod=messageTemplate&act=showEbayTplList');
goErrMsgPage($msgdata);
exit;
}
$countryRel = new CommonModel('msg_ebaycsrel');
$update = array('tplId' => $insertId);
$countries = CommonModel::transSafetySql($countries);
foreach ($countries as $ccode) {
$countryRel->updateData($update, " where countryCode='{$ccode}'");
}
$msgdata = array('data' => array('操作成功!'), 'link' => 'index.php?mod=messageTemplate&act=showEbayTplList');
goOkMsgPage($msgdata);
exit;
}