本文整理匯總了PHP中customer::exists方法的典型用法代碼示例。如果您正苦於以下問題:PHP customer::exists方法的具體用法?PHP customer::exists怎麽用?PHP customer::exists使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類customer
的用法示例。
在下文中一共展示了customer::exists方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: mailActive
function mailActive()
{
$code = $this->uri->segment(2);
$customer = new customer();
$customer->get_by_emailActiveCode($code);
$msg = "";
if ($customer->exists()) {
if ($customer->isEmailActive == 0) {
$customer->isEmailActive = 1;
$customer->save();
$this->_loginUser($customer);
$msg = "Chúc mừng " . $customer->name . " đã kích hoạt thành công tài khoản.";
$msg .= "<br />Click vào đây để về trang chủ:<a href='" . base_url() . "' >Về trang chủ</a>";
} else {
$msg = "Tài khoản của bạn đã được kích hoạt từ trước. Liên kết này không có hiệu lực nữa.";
}
} else {
$msg = "Tài khoản của bạn không tồn tại trong hệ thống.";
}
$dis['customer'] = $customer;
$dis['base_url'] = base_url();
$dis['view'] = 'user/activeEmail';
//$dis['step'] = $step;
$dis['msg'] = $msg;
$this->viewfront($dis);
}
示例2: call
//required includes at start
require_once 'inc/top.php';
//others required includes only here
require_once 'inc/session.php';
require_once 'inc/functions/time.php';
require_once 'inc/classes/call.php';
require_once 'inc/classes/customer.php';
require_once 'inc/classes/web.php';
require_once 'inc/classes/subject.php';
require_once 'inc/classes/country.php';
if (isset($_POST['create'])) {
$call = new call();
$customer = new customer();
$duration = $_POST['minutes'] * 60 + $_POST['seconds'];
if ($customer->exists($_POST['mail'], false)) {
$call->create($_SESSION['users']['id'], $_POST['type'], $_POST['web'], $_POST['subject'], $duration, $_POST['comments'], $customer->MailToId($_POST['mail']));
} else {
$customer->create($_POST['name'], $_POST['mail'], $_POST['city'], $_POST['country'], $_POST['phone']);
$call->create($_SESSION['users']['id'], $_POST['type'], $_POST['web'], $_POST['subject'], $duration, $_POST['comments'], $customer->MailToId($_POST['mail']));
}
$msg = $call->printNiceLog(false);
}
$html['title'] = 'Create';
$html['head'] = '<script src="themes/' . THEME . '/js/jquery.js" type="text/javascript"></script>';
//theme header
include_once 'themes/' . THEME . '/header.php';
?>
<div class="title">
<h2>Create</h2>
<p><small>Here you can create new calls.</small></p>
示例3: customer
<?php
//required includes at start
require_once 'inc/top.php';
//others required includes only here
require_once 'inc/session.php';
require_once 'inc/classes/customer.php';
$customer = new customer();
$customer->exists($_POST['mail']);
//required includes at end
require_once 'inc/bottom.php';