本文整理汇总了PHP中Country::find_all方法的典型用法代码示例。如果您正苦于以下问题:PHP Country::find_all方法的具体用法?PHP Country::find_all怎么用?PHP Country::find_all使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Country
的用法示例。
在下文中一共展示了Country::find_all方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: all
function all()
{
$this->is_loggedin();
$this->title = "Countries";
$this->message = "BeBuntu Countries";
$all_countries = new Country();
pass_var('all_countries', $all_countries->find_all());
pass_var('title', $this->title);
pass_var('message', $this->message);
}
示例2: getData
/**
* load initail data for employee form needed during
* creating and editing employee
* data
*/
public function getData()
{
global $database;
$depts = Department::find_all();
$role = Roles::find_all();
$country = Country::find_all();
$employee = Employee::find_all();
$zone = Zone::find_by_sql("SELECT * FROM zone WHERE country_id=156");
$startups = array("departs" => $depts, "country" => $country, "state" => $zone, "employee" => $employee, "role" => $role);
return $startups;
}
示例3: getData
/**
* load initail data for employee form needed during
* creating and editing employee
* data
*/
public function getData()
{
global $database;
$depts = Department::find_all();
$role = Roles::find_all();
$country = Country::find_all();
$vendors = Vendor::find_all();
$zone = Zone::find_by_sql("SELECT * FROM zone");
$startups = array("departs" => $depts, "country" => $country, "zone" => $zone, "vendors" => $vendors, "role" => $role);
return $startups;
}
示例4: getData
public function getData()
{
global $database;
$depts = Department::find_all();
$role = Roles::find_all();
$country = Country::find_all();
$vendors = Vendor::find_all();
$countAcc = count(Cproduct::find_by_client($_SESSION["client_ident"]));
$schedule = Cproduct::getNextSchedule($_SESSION["client_ident"]);
$countTic = count(Ticket::find_by_client($_SESSION['client_ident']));
$zone = Zone::find_by_sql("SELECT * FROM zone");
$startups = array("departs" => $depts, "country" => $country, "zone" => $zone, "vendors" => $vendors, "role" => $role, "countProd" => $countAcc, "countTick" => $countTic, "Schel" => $schedule);
return $startups;
}
示例5: getData
public function getData()
{
global $database;
$depts = Department::find_all();
$role = Roles::find_all();
$country = Country::find_all();
$vendors = Vendor::find_all();
$area = Area::find_all();
$issues = Issue::find_all();
$zone = Zone::find_by_sql("SELECT * FROM zone");
$techEmp = Employee::find_by_sql("SELECT * FROM employee WHERE emp_dept='5'");
$startups = array("departs" => $depts, "country" => $country, "zone" => $zone, "vendors" => $vendors, "role" => $role, "techemp" => $techEmp, "area" => $area, "issues" => $issues);
return $startups;
}
示例6: add
function add()
{
$this->is_loggedin();
$this->title = "Add new teams";
$this->message = "Add a new team";
if ($_POST['action'] == 'newteam') {
if ($this->newteam($_POST)) {
$this->message = "Team added.";
}
}
$all_countries = new Country();
pass_var('countries', $all_countries->find_all());
pass_var('title', $this->title);
pass_var('message', $this->message);
}
示例7: getData
public function getData()
{
global $database;
$depts = Department::find_all();
$role = Roles::find_all();
$country = Country::find_all();
$vendors = Vendor::find_all();
$countAcc = count(Cproduct::find_by_client($_SESSION["client_ident"]));
$schedule = Cproduct::getNextSchedule($_SESSION["client_ident"]);
$OnSchedule = Schedule::find_by_sql("SELECT * FROM schedule WHERE client_id='" . $_SESSION['client_ident'] . "' AND maint_type !='Activation' AND (status='Open' OR status='In Progress') ORDER BY id DESC LIMIT 10");
$OnScheduleAct = Schedule::find_by_sql("SELECT * FROM schedule WHERE client_id='" . $_SESSION['client_ident'] . "' AND maint_type='Activation' AND (status='Open' OR status='In Progress') ORDER BY id DESC LIMIT 10");
$countTicketOpen = count(Ticket::find_by_sql("SELECT * FROM support_ticket WHERE client_id ='" . $_SESSION['client_ident'] . "' AND status ='Open'"));
$countTicketClose = count(Ticket::find_by_sql("SELECT * FROM support_ticket WHERE client_id ='" . $_SESSION['client_ident'] . "' AND status ='Closed'"));
$countTicketPending = count(Ticket::find_by_sql("SELECT * FROM support_ticket WHERE client_id ='" . $_SESSION['client_ident'] . "' AND (status ='Admin Reply' OR status='Customer Reply')"));
$countTic = count(Ticket::find_by_client($_SESSION['client_ident']));
$countuser = count(Clientuser::find_by_client($_SESSION['client_ident']));
$zone = Zone::find_by_sql("SELECT * FROM zone");
$startups = array("cschedule" => $OnSchedule, "departs" => $depts, "country" => $country, "zone" => $zone, "vendors" => $vendors, "role" => $role, "countProd" => $countAcc, "countTick" => $countTic, "Schel" => $schedule, "SchelAct" => $OnScheduleAct, "CountPending" => $countTicketPending, "CountOpent" => $countTicketOpen, "CountClosed" => $countTicketClose, "CountUsers" => $countuser);
return $startups;
}
示例8: getData
/**
* load initail data for support ticket form needed during
* creating and editing support ticket
* data
*/
public function getData()
{
global $database;
$depts = Department::find_all();
$role = Roles::find_all();
$country = Country::find_all();
$vendors = Vendor::find_all();
$myproducts = Cproduct::find_all();
/**
* issues may arise that when database
* is cleared emp_dept may not be 5
*/
$techEmployee = Employee::find_by_sql("SELECT * FROM employee WHERE emp_dept = 5");
$zone = Zone::find_by_sql("SELECT * FROM zone");
$startups = array("departs" => $depts, "country" => $country, "zone" => $zone, "vendors" => $vendors, "role" => $role, "myproducts" => $myproducts, "techstaff" => $techEmployee);
return $startups;
}
示例9: getData
/**
* load initail data for support ticket form needed during
* creating and editing support ticket
* data
*/
public function getData()
{
global $database;
$depts = Department::find_all();
$role = Roles::find_all();
$country = Country::find_all();
$vendors = Vendor::find_all();
$myproducts = Cproduct::find_all();
$lastSignoff = array_shift($database->fetch_assoc($database->db_query("SELECT MAX(id) as lastID, prod_id FROM sign_off_form ")));
$lastWorkSheet = array_shift($database->fetch_assoc($database->db_query("SELECT MAX(id) as lastID, prod_id FROM work_sheet_form ")));
/**
* issues may arise that when database
* is cleared emp_dept may not be 5
*/
$clients = Client::find_all();
// print_r($clients);
$techEmployee = Employee::find_by_sql("SELECT * FROM employee WHERE emp_dept = 5");
$zone = Zone::find_by_sql("SELECT * FROM zone");
$startups = array("clients" => $clients, "departs" => $depts, "country" => $country, "zone" => $zone, "vendors" => $vendors, "role" => $role, "myproducts" => $myproducts, "techstaff" => $techEmployee, "lastsf" => $lastSignoff, "lastws" => $lastWorkSheet);
return $startups;
}
示例10: getData
/**
* load initail data for employee form needed during
* creating and editing employee
* data
*/
public function getData()
{
global $database;
$depts = Department::find_all();
$role = Roles::find_all();
$country = Country::find_all();
$vendors = Vendor::find_all();
$products = Product::find_all();
$myproducts = Cproduct::find_by_client($_SESSION['client_ident']);
$zone = Zone::find_by_sql("SELECT * FROM zone");
$issues = Issue::find_all();
$startups = array("departs" => $depts, "country" => $country, "zone" => $zone, "vendors" => $vendors, "role" => $role, "myproducts" => $myproducts, "issues" => $issues, "products" => $products);
return $startups;
}
示例11: edit
public function edit($nickname = null)
{
$user = $this->load_user($nickname);
$this->assign("permalink", $user->permalink());
if ($this->post) {
$user->nickname = $this->PostData('nickname');
$user->email = $this->PostData('email');
$user->clan = $this->PostData('clan');
$user->firstname = $this->PostData('firstname');
$user->surname = $this->PostData('surname');
$user->address1 = $this->PostData('address1');
$user->address2 = $this->PostData('address2');
$user->towncity = $this->PostData('towncity');
$user->county = $this->PostData('county');
$user->country_id = $this->PostData('country_id');
$user->postcode = $this->PostData('postcode');
$user->phone = $this->PostData('phone');
$user->set_dateofbirth($this->PostData('dateofbirth'));
$user->terms = $this->PostData('terms');
$user->allow_emails = $this->PostData('allow_emails');
$user->suspended = $this->PostData('suspended');
$user->activated = $this->PostData('activated');
if ($user->save()) {
Site::flash("notice", "User has been updated");
Redirect("admin/users/" . $user->permalink());
}
}
$countries = Utils::FormOptions(Country::find_all("", "countries.name ASC"));
$this->assign('countries', $countries);
$this->assign("user", $user);
$this->title = "Edit User";
$this->render("user/edit.tpl");
}
示例12: edit
public function edit()
{
global $site;
$user = Site::CurrentUser();
$profile = $user->profile;
if (isset($site['flash']['forceContactInfo']) && $site['flash']['forceContactInfo']) {
Site::Flash('forceContactInfo', true);
$user->requiresContactData = true;
}
$this->assign('requireContactData', $user->requiresContactData);
if ($this->post and !$this->csrf) {
$site['flash']['error'] = "Invalid form submission";
} elseif ($this->post) {
$user->clan = $this->PostData('clan');
$user->address1 = $this->PostData('address1');
$user->address2 = $this->PostData('address2');
$user->towncity = $this->PostData('towncity');
$user->county = $this->PostData('county');
$user->country_id = $this->PostData('country_id');
$user->postcode = $this->PostData('postcode');
$user->phone = $this->PostData('phone');
$user->allow_emails = $this->PostData('allow_emails');
$profile->website = $this->PostData('website');
$profile->windows_live = $this->PostData('windows_live');
$profile->facebook = $this->PostData('facebook');
$profile->twitter = $this->PostData('twitter');
$profile->xfire = $this->PostData('xfire');
$profile->xbox_live = $this->PostData('xbox_live');
$profile->ps_network = $this->PostData('ps_network');
$profile->occupation = $this->PostData('occupation');
$profile->nationality = $this->PostData('nationality');
$profile->gender = $this->PostData('gender');
$profile->gaming_style = $this->PostData('gaming_style');
$profile->hobbies_and_interests = $this->PostData('hobbies_and_interests');
$profile->rig_manufacturer = $this->PostData('rig_manufacturer');
$profile->rig_processor = $this->PostData('rig_processor');
$profile->rig_memory = $this->PostData('rig_memory');
$profile->rig_hdd = $this->PostData('rig_hdd');
$profile->rig_gfx = $this->PostData('rig_gfx');
$profile->rig_monitor = $this->PostData('rig_monitor');
$profile->rig_sound_card = $this->PostData('rig_sound_card');
$profile->rig_speaker_headphone = $this->PostData('rig_speaker_headphone');
$profile->rig_keyboard = $this->PostData('rig_keyboard');
$profile->rig_mouse = $this->PostData('rig_mouse');
$profile->rig_mouse_surface = $this->PostData('rig_mouse_surface');
$profile->rig_os = $this->PostData('rig_os');
$profile->rig_mobo = $this->PostData('rig_mobo');
$profile->rig_case = $this->PostData('rig_case');
if ($user->save() && $profile->save()) {
Site::flash("notice", "Your account has been updated");
Redirect("account");
}
}
$countries = Utils::FormOptions(Country::find_all("", "countries.name ASC"));
$this->assign('countries', $countries);
$this->assign("user", $user);
$this->assign("profile", $profile);
$this->assign("site", $site);
$this->title = "My Account";
$this->render("user/edit.tpl");
}