Home
last modified time | relevance | path

Searched refs:customer (Results 1 – 25 of 5361) sorted by relevance

12345678910>>...215

/dports/sysutils/froxlor/froxlor-0.9.38.7_4/froxlor/templates/Sparkle/admin/settings/
H A Dupdatecounters_row_customer.tpl3customer['name'] != '' && $customer['firstname'] != ''>{$customer['name']}, {$customer['firstname'…
6customer']['subdomains']}: <span <if $customer['subdomains_used'] == $customer['subdomains_used_ne…
7customer']['mysqls']}: <span <if $customer['mysqls_used'] == $customer['mysqls_used_new']>class="g…
8customer']['emails']}: <span <if $customer['emails_used'] == $customer['emails_used_new']>class="g…
9customer']['accounts']}: <span <if $customer['email_accounts_used'] == $customer['email_accounts_u…
12customer']['forwarders']}: <span <if $customer['email_forwarders_used'] == $customer['email_forwar…
14customer']['email_quota']}: <span <if $customer['email_quota_used'] == $customer['email_quota_used…
16customer']['ftps']}: <span <if $customer['ftps_used'] == $customer['ftps_used_new']>class="green"<…
18customer']['tickets']}: <span <if $customer['tickets_used'] == $customer['tickets_used_new']>class…
/dports/www/phalcon4/cphalcon-4.1.1/tests/database/Mvc/Model/
H A DUnderscoreSetCest.php52 $customer->cst_id = 999;
56 $customer->cst_id
76 $customer->cst_data
106 $customer->id = 999;
110 $customer->cst_id
195 $customer = $invoice->customer;
199 $customer
235 $customer = $invoice->customer;
239 $customer
299 $customer = $invoice->customer;
[all …]
H A DSaveCest.php79 $customer->save()
85 $customer->save()
106 $customer->save()
122 $customer->save()
286 $customer = $invoice->customer;
298 $customer->save()
351 $customer->save()
389 $customer->save()
446 $invoice->customer = $customer;
454 $customer->save()
[all …]
/dports/finance/prestashop/prestashop/classes/form/
H A DCustomerPersister.php56 if ($customer->id) {
67 $customer->passwd,
81 if (!$customer->is_guest) {
90 if ($customer->id != $this->context->customer->id) {
114 $customer->is_guest = false;
134 if ($customer->email != $this->context->customer->email) {
138 $ok = $customer->save();
177 $customer->is_guest = true;
195 $ok = $customer->save();
228 $customer->email,
[all …]
/dports/finance/gnucash/gnucash-4.9/libgnucash/engine/test/
H A Dtest-customer.c59 GncCustomer *customer; in test_customer() local
71 gncCustomerDestroy (customer); in test_customer()
148 gncCustomerBeginEdit (customer); in test_string_fcn()
149 set (customer, str); in test_string_fcn()
152 gncCustomerCommitEdit (customer); in test_string_fcn()
173 gncCustomerBeginEdit (customer); in test_numeric_fcn()
174 set (customer, num); in test_numeric_fcn()
198 gncCustomerBeginEdit (customer); in test_bool_fcn()
199 set (customer, FALSE); in test_bool_fcn()
200 set (customer, TRUE); in test_bool_fcn()
[all …]
/dports/finance/prestashop/prestashop/src/Adapter/Customer/QueryHandler/
H A DGetCustomerForViewingHandler.php134 Context::getContext()->customer = $customer;
154 * @param Customer $customer
161 $customer->note,
167 * @param Customer $customer
178 if ($customer->birthday && '0000-00-00' !== $customer->birthday) {
204 $customer->lastname,
205 $customer->email,
247 * @param Customer $customer
299 * @param Customer $customer
332 * @param Customer $customer
[all …]
H A DGetCustomerForEditingHandler.php65 (int) $customer->id_gender,
68 new Email($customer->email),
70 (bool) $customer->active,
71 (bool) $customer->optin,
72 (bool) $customer->newsletter,
73 $customer->getGroups(),
75 (string) $customer->company,
76 (string) $customer->siret,
77 (string) $customer->ape,
78 (string) $customer->website,
[all …]
/dports/finance/prestashop/prestashop/controllers/front/
H A DPasswordController.php68 $customer = new Customer();
69 $customer->getByEmail($email);
70 if (null === $customer->email) {
81 } elseif (!$customer->active) {
88 $customer->update();
108 $customer->email,
109 $customer->firstname . ' ' . $customer->lastname
130 $customer = new Customer();
131 $customer->getByEmail($email);
135 } elseif (!$customer->active) {
[all …]
/dports/www/thirtybees/thirtybees-1.1.0/controllers/front/
H A DPasswordController.php61 $customer = new Customer();
62 $customer->getByemail($email);
63 if (!Validate::isLoadedObject($customer)) {
65 } elseif (!$customer->active) {
71 '{email}' => $customer->email,
76 …l::l('Password query confirmation'), $mailParams, $customer->email, $customer->firstname.' '.$cust…
92 $customer = new Customer();
93 $customer->getByemail($email);
96 } elseif (!$customer->active) {
103 if ($customer->update()) {
[all …]
/dports/finance/gnucash/gnucash-4.9/libgnucash/engine/
H A DgncCustomer.h84 void gncCustomerDestroy (GncCustomer *customer);
85 void gncCustomerBeginEdit (GncCustomer *customer);
86 void gncCustomerCommitEdit (GncCustomer *customer);
92 void gncCustomerSetID (GncCustomer *customer, const char *id);
105 void gncCustomerAddJob (GncCustomer *customer, GncJob *job);
106 void gncCustomerRemoveJob (GncCustomer *customer, GncJob *job);
123 const char * gncCustomerGetID (const GncCustomer *customer);
124 const char * gncCustomerGetName (const GncCustomer *customer);
125 GncAddress * gncCustomerGetAddr (const GncCustomer *customer);
130 gboolean gncCustomerGetActive (const GncCustomer *customer);
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Data.Linq/src/DbLinq/Test/Providers/
H A DReadTests_EntitySet.cs47 var customer = new Customer(); in SimpleMemberAccess01()
48 var orders = customer.Orders; in SimpleMemberAccess01()
126 customer.Orders.Load(); in InvalidSourceChange3()
247 customer.Orders.Remove(customer.Orders.First()); in ListChangedEvent()
271 customer.Orders.Clear(); in ListChangedEvent()
287 customer.Orders.RemoveAt(0); in ListChangedEvent()
313 customer.Orders.Load(); in DeferedExecution()
340 customer.Orders.Add(order); in Add()
366 customer.Orders.Clear(); in Clear()
398 Assert.IsTrue(customer.Orders.Remove(customer.Orders.First())); in Remove()
[all …]
/dports/net-mgmt/phpipam/phpipam-a14bc06/app/tools/customers/customer/
H A Ddetails.php36 …print " <td>$customer->address<br>$customer->postcode<br>$customer->city <br>$customer->state</td>…
57 if(strlen($customer->contact_person)>0)
58 print $customer->contact_person."<br>";
62 if(strlen($customer->contact_mail)>0)
63 print $customer->contact_mail."<br>";
67 if(strlen($customer->contact_phone)>0)
68 print $customer->contact_phone."<br>";
85 if($customer->{$field['name']}=="0") { $customer->{$field['name']} = "false"; }
86 elseif($customer->{$field['name']}=="1") { $customer->{$field['name']} = "true"; }
91 $customer->{$field['name']} = $Result->create_links ($customer->{$field['name']});
[all …]
H A Dmap.php20 if (strlen($customer->long)==0 && strlen($customer->lat)==0 && strlen($customer->address)>0) {
21 $latlng = $Tools->get_latlng_from_address ($customer->address);
25 $customer->lat = $latlng['lat'];
26 $customer->long = $latlng['lng'];
34 if( (strlen($customer->long)>0 && strlen($customer->lat))) {
37 …$customer->note = strlen($customer->note)>0 ? "<span class=\'text-muted\'>".escape_input($customer
38 $customer->note = str_replace(array("\r\n","\n","\r"), "<br>", $customer->note );
47 lat: '<?php print escape_input($customer->lat); ?>',
48 lng: '<?php print escape_input($customer->long); ?>'
53 lat: '<?php print escape_input($customer->lat); ?>',
[all …]
/dports/finance/prestashop/prestashop/src/Adapter/Customer/CommandHandler/
H A DEditCustomerHandler.php72 $customer = new Customer($customerId->getValue());
100 if (false === $customer->validateFields(false)) {
104 if (false === $customer->update()) {
110 * @param Customer $customer
137 $customer->passwd = $hashedPassword;
145 $customer->active = $command->isEnabled();
168 * @param Customer $customer
178 $customer->siret = $command->getSiretCode();
198 $customer->id_risk = $command->getRiskId();
203 * @param Customer $customer
[all …]
H A DAddCustomerHandler.php72 $customer = new Customer();
89 $customer->add();
91 return new CustomerId((int) $customer->id);
99 $customer = new Customer();
100 $customer->getByEmail($email->getValue());
102 if ($customer->id) {
108 * @param Customer $customer
125 $customer->passwd = $hashedPassword;
129 $customer->active = $command->isEnabled();
132 $customer->id_shop = $command->getShopId();
[all …]
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/
H A DDirectory.php432 'path' => 'customer/{customer}/domainaliases',
442 'path' => 'customer/{customer}/domainaliases',
496 'path' => 'customer/{customer}/domains',
506 'path' => 'customer/{customer}/domains',
906 'path' => 'customer/{customer}/notifications',
1513 'path' => 'customer/{customer}/roles/{roleId}',
1528 'path' => 'customer/{customer}/roles/{roleId}',
1543 'path' => 'customer/{customer}/roles',
1553 'path' => 'customer/{customer}/roles',
1571 'path' => 'customer/{customer}/roles/{roleId}',
[all …]
/dports/sysutils/froxlor/froxlor-0.9.38.7_4/froxlor/lib/functions/froxlor/
H A Dfunction.updateCounters.php44 while ($customer = $customers_stmt->fetch(PDO::FETCH_ASSOC)) {
46 $cur_adm = $customer['adminid'];
91 $customer['email_accounts_used_new'] = $customer_email_accounts;
122 "mysqls_used" => $customer['mysqls_used_new'],
123 "emails_used" => $customer['emails_used_new'],
126 "email_quota_used" => $customer['email_quota_used_new'],
127 "ftps_used" => $customer['ftps_used_new'],
128 "tickets_used" => $customer['tickets_used_new'],
129 "subdomains_used" => $customer['subdomains_used_new'],
130 "cid" => $customer['customerid']
[all …]
/dports/net/p5-Net-Whois-ARIN/Net-Whois-ARIN-0.12/t/
H A D04-customer.t20 open CUSTOMER, "< t/whois/customer.txt" or die "Can't open t/whois/customer.txt: $!";
28 my @customer = $w->customer('Some Company');
29 is scalar @customer, 1;
30 my $customer = pop @customer;
35 is $customer->City, "North Andover";
36 is $customer->StateProv, "MA";
37 is $customer->PostalCode, "01845";
38 is $customer->Country, "US";
39 is $customer->RegDate, "2003-05-07";
43 is $customer->CIDR, "10.0.0.0/24";
[all …]
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/Directory/Resource/
H A DResourcesFeatures.php31 * @param string $customer The unique ID for the customer's Google Workspace
37 public function delete($customer, $featureKey, $optParams = array()) argument
39 $params = array('customer' => $customer, 'featureKey' => $featureKey);
46 * @param string $customer The unique ID for the customer's Google Workspace
53 public function get($customer, $featureKey, $optParams = array()) argument
55 $params = array('customer' => $customer, 'featureKey' => $featureKey);
62 * @param string $customer The unique ID for the customer's Google Workspace
71 $params = array('customer' => $customer, 'postBody' => $postBody);
78 * @param string $customer The unique ID for the customer's Google Workspace
87 public function listResourcesFeatures($customer, $optParams = array()) argument
[all …]
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/Directory/Resource/
H A DResourcesFeatures.php31 * @param string $customer The unique ID for the customer's G Suite account. As
37 public function delete($customer, $featureKey, $optParams = array()) argument
39 $params = array('customer' => $customer, 'featureKey' => $featureKey);
46 * @param string $customer The unique ID for the customer's G Suite account. As
53 public function get($customer, $featureKey, $optParams = array()) argument
55 $params = array('customer' => $customer, 'featureKey' => $featureKey);
62 * @param string $customer The unique ID for the customer's G Suite account. As
71 $params = array('customer' => $customer, 'postBody' => $postBody);
78 * @param string $customer The unique ID for the customer's G Suite account. As
87 public function listResourcesFeatures($customer, $optParams = array()) argument
[all …]
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/core/triggers/
H A Dinterface_80_modStripe_Stripe.class.php94 if ($customer) {
133 $customer->name = $namecleaned;
134 $customer->description = $desccleaned;
145 $customer->createTaxId($customer->id, array('type'=>'eu_vat', 'value'=>$vatcleaned));
148 $taxids = $customer->allTaxIds($customer->id);
151 $customer->deleteTaxId($customer->id, $taxidobj->id);
158 $customer->save();
176 if ($customer) {
178 $customer->delete();
209 if ($customer) {
[all …]
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/core/triggers/
H A Dinterface_80_modStripe_Stripe.class.php96 if ($customer) {
122 if ($namecleaned != $customer->name) {
148 $customer->name = $namecleaned;
160 $customer->createTaxId($customer->id, array('type'=>'eu_vat', 'value'=>$vatcleaned));
163 $taxids = $customer->allTaxIds($customer->id);
166 $customer->deleteTaxId($customer->id, $taxidobj->id);
173 $customer->save();
191 if ($customer) {
193 $customer->delete();
224 if ($customer) {
[all …]
/dports/databases/pear-XML_Query2XML/XML_Query2XML-1.7.2/tests/XML_Query2XML/AllDBLayers/getXML/
H A DdynamicRowTag_callback.phpt39 <customer>
42 </customer>
43 <customer>
46 </customer>
47 <customer>
51 <customer>
55 <customer>
59 <customer>
63 <customer>
67 <customer>
[all …]
H A DdynamicRowTag_columnName.phpt34 <customer>
37 </customer>
38 <customer>
41 </customer>
42 <customer>
46 <customer>
50 <customer>
54 <customer>
58 <customer>
62 <customer>
[all …]
H A DdynamicRowTag_staticString.phpt34 <customer>
37 </customer>
38 <customer>
41 </customer>
42 <customer>
46 <customer>
50 <customer>
54 <customer>
58 <customer>
62 <customer>
[all …]

12345678910>>...215