public static function DetailTabFactory($posting) { $detailTab = BusinessType::getPostingTabs($posting); $detailTab->setPosting($posting); $detailTab->setCategory(); return $detailTab; }
public function destroy($id) { if (Auth::user()->is_admin) { $count = 0; $business = BusinessType::find($id); $clients = Client::select('business_type_id')->get(); foreach ($clients as $key => $client) { $u = $client->business_type_id; $uarray = explode(',', $u); if (in_array($id, $uarray, true)) { $count = $count + 1; } } if ($count > 0) { $field = $count == 1 ? ' ' : 's'; $field2 = $count == 1 ? ' pertenece' : ' pertenecen'; $message = $count . " Cliente" . $field . $field2 . " al Tipo de Negocio " . $business->name; Session::flash('error', $message); return Redirect::to('negocios/' . $id); } else { $business->delete(); $message = "Tipo de Negocio Eliminado con éxito"; Session::flash('message', $message); return Redirect::to('negocios'); } } }
public function run() { $business_type = array("28" => "Airport Spa", "43" => "Barbershop", "46" => "Beauty Institute", "45" => "Beauty School", "16" => "Bootcamp", "47" => "Brow Bar", "4" => "Casino Spa", "20" => "Chiropody Clinic", "49" => "Chiropractic Clinic", "36" => "Cruise Ship Spa", "35" => "Dance Studio", "5" => "Day Spa", "7" => "Dental Spa", "2" => "Destination Spa", "12" => "Eye Clinic", "18" => "Fat Farm", "51" => "Fish Spa", "9" => "Fitness Centre", "24" => "Golf Course", "15" => "Gym", "21" => "Hair Salon", "41" => "Hammam", "59" => "Health Club", "29" => "Health Farm", "1" => "Hotel Spa", "53" => "Makeup Studio", "38" => "Martial Arts Centre", "48" => "Massage & Therapy Centre", "6" => "Medical Spa", "42" => "Mobile Beauty", "14" => "Mobile Fitness", "57" => "Mobile Massage", "8" => "Mobile Spa", "27" => "Nail Salon", "55" => "Nutrition Centre", "58" => "Online Retailer", "60" => "Photographic Studio", "22" => "Pilates Studio", "10" => "Salon", "50" => "Skin Clinic", "56" => "Surf School", "25" => "Swimming Pool", "37" => "Tanning Salon", "23" => "Tennis Court", "54" => "Treatment Room - Beauty", "26" => "Treatment Room - Spa", "44" => "Treatment Room - Wellness", "40" => "Waxing Salon", "52" => "Weight Loss Clinic", "11" => "Wellness Centre", "17" => "Yoga Retreat", "13" => "Yoga Studio"); foreach ($business_type as $type) { BusinessType::create(array('type' => $type)); } }
public function setCode($code) { if (is_null($code)) { $this->fv_error_message = $this->fv_error_message . '<br>- Código' . ERROR_NULL; return; } $codeZ = BusinessType::where('cod', $code)->select('cod')->first(); if (!empty($codeZ->cod)) { $this->fv_error_message = $this->fv_error_message . '<br>- Código ' . ERROR_DUPLICADO; return; } $this->cod = $code; return $this; }
/** * Job basic for seo. * show all the jobs in the city. * @return unknown_type */ function indexAction() { try { $this->view = $this->_setRequiredParamsToView($this->view); $this->view->business = BusinessType::getBusiness($this->view->posting->typeID); $this->view->form = BusinessType::getBusinessForm($this->view->posting->typeID, $this->view->business, $this->view->location); //print_r($this->view->form); $this->view->detailTab = DetailTab::DetailTabFactory($this->view->posting); if (!empty($this->view->formData)) { $this->view->detailTab->setFormData($this->view->formData); } //$detailTab->printTabs(); } catch (Exception $e) { logError("Posting data error: ", $e); echo $e; } }
function listAllCitiesInState($routerName, $value, $loc) { $retStr = ''; $currentCity = $value->city; $currentState = $value->state; $cities = $loc->getLocations(); $searchRule = $loc->getSearchRule(); if ($searchRule == 1 || $searchRule == 2) { $locid = $loc->getCityId(); } elseif ($searchRule == 3) { $locid = $loc->getStateId(); } foreach ($cities as $city) { if ($city["current"]) { $attributes = 'class="menu_on"'; } else { $attributes = ''; } if ($searchRule == 1 || $searchRule == 2) { $value->city = $city["location"]; } elseif ($searchRule == 3) { $value->city = $value->state = $city["location"]; } $value->locationid = $city['locationid']; if ($routerName == "posting") { $routerName = BusinessType::getbasicSearchRouter($value->category); logfire('posting cities router', $routerName); } $retStr .= '<li>' . Tag::link($routerName, $value, $city["location"], $attributes) . '</li>' . "\n"; } $value->city = $currentCity; $value->state = $currentState; //$value->city = strtolower($showRegion); $value->locationid = $locid; return $retStr; }
?> <p class="note">Fields with <span class="required">*</span> are required.</p> <?php echo $form->errorSummary($model); ?> <?php echo $form->textFieldRow($model, 'name', array('class' => 'span6', 'size' => 60, 'maxlength' => 100)); ?> <?php echo $form->textAreaRow($model, 'description', array('class' => 'span6', 'rows' => 5)); ?> <?php echo $form->dropDownListRow($model, 'type', CHtml::listData(BusinessType::model()->findAll(), 'id', 'name'), array('empty' => 'Select a type')); ?> <?php echo $form->textFieldRow($model, 'address', array('class' => 'span6', 'size' => 60, 'maxlength' => 255)); ?> <?php echo $form->textFieldRow($model, 'zipcode', array('class' => 'span6', 'size' => 60, 'maxlength' => 6)); ?> <?php echo $form->textFieldRow($model, 'phone', array('class' => 'span6', 'size' => 60, 'maxlength' => 8)); ?> <?php echo $form->dropDownListRow($model, 'price', CHtml::listData(PriceType::model()->findAll(), 'id', 'name'), array('empty' => 'Select a type')); ?> <?php echo $form->dropDownListRow($model, 'category', CHtml::listData(CategoryType::model()->findAll(), 'id', 'name'), array('empty' => 'Select a category'));
/** * Show the form for editing the specified resource. * * @param int $id * @return Response */ public function edit($id) { $client = Client::where('id', $id)->withTrashed()->with('contacts')->first(); $deptos = explode(',', DEPARTAMENTOS); $zones = Zone::orderBy('name', 'ASC')->get(); $groups = Group::get(); $businesses = BusinessType::get(); $dias = array(); $fec = str_split($client->frecuency); foreach ($fec as $d) { array_push($dias, $d == "1" ? true : false); } if ($client) { if ($client->deleted_at != null) { $client->restore(); } $contacts = $client->contacts; $contactos = array(); foreach ($contacts as $contact) { # code... $contactos[] = array('id' => $contact->id, 'nombres' => $contact->first_name, 'apellidos' => $contact->last_name, 'email' => $contact->email, 'phone' => $contact->phone); // } $data = ['client' => $client, 'contactos' => $contactos, 'url' => 'clientes/' . $id, 'title' => 'Editar Cliente', 'zonas' => $zones, 'deptos' => $deptos, 'grupos' => $groups, 'negocios' => $businesses, 'd' => $dias]; $account = Account::find(Auth::user()->account_id); //data = array_merge($data, self::getViewModel()); $data = array_merge($data, array('cuenta' => $account)); // return Response::json($data); return View::make('clientes.edit', $data); } Session::flash('error', 'No existe el usuario'); return Redirect::to('clientes'); }
public static function select_type() { return BusinessType::orderBy('type', 'asc')->lists('type', 'id'); }
public function getBusinessType() { $str = ''; if ($this->business_type_id) { $business = BusinessType::select('name')->where('id', '=', $this->business_type_id)->first(); $result = $business->name; $str .= '<b>' . $result . '</b><br/>'; } return $str; }
/** * @return string the type text display for the current business */ public function getTypeText() { $typeOptions = CHtml::listData(BusinessType::model()->findAll(), 'id', 'name'); return isset($typeOptions[$this->type]) ? $typeOptions[$this->type] : "-"; }
private static function getViewModel() { return ['industries' => Industry::remember(DEFAULT_QUERY_CACHE)->orderBy('name')->get(), 'business_types' => BusinessType::remember(DEFAULT_QUERY_CACHE)->orderBy('name')->get(), 'groups' => Group::orderBy('name')->get(), 'zones' => Zone::remember(DEFAULT_QUERY_CACHE)->orderBy('name')->get(), 'currencies' => Currency::remember(DEFAULT_QUERY_CACHE)->orderBy('name')->get(), 'countries' => Country::remember(DEFAULT_QUERY_CACHE)->orderBy('name')->get(), 'customLabel1' => Auth::user()->account->custom_client_label1, 'customLabel2' => Auth::user()->account->custom_client_label2]; }
public function run() { PriceType::create(array('name' => 'CIUDAD')); PriceType::create(array('name' => 'VIAJERO')); PriceType::create(array('name' => 'OTRO')); BusinessType::create(array('cod' => 'A', 'name' => 'AGENCIA')); BusinessType::create(array('cod' => 'B', 'name' => 'BANCO')); BusinessType::create(array('cod' => 'C', 'name' => 'COLEGIO')); BusinessType::create(array('cod' => 'CD', 'name' => 'CAMPO DEPORTIVO')); BusinessType::create(array('cod' => 'D', 'name' => 'DISCOTECA')); BusinessType::create(array('cod' => 'EE', 'name' => 'EMPRESA ESTATAL')); BusinessType::create(array('cod' => 'EP', 'name' => 'EMPRESA PRIVADA')); BusinessType::create(array('cod' => 'FA', 'name' => 'FARMACIA')); BusinessType::create(array('cod' => 'I', 'name' => 'INSTITUTO')); BusinessType::create(array('cod' => 'K', 'name' => 'KIOSCO')); BusinessType::create(array('cod' => 'L', 'name' => 'LICORERIA')); BusinessType::create(array('cod' => 'MM', 'name' => 'MICRO MARKET')); BusinessType::create(array('cod' => 'S', 'name' => 'SNACK')); BusinessType::create(array('cod' => 'P', 'name' => 'PENSION')); BusinessType::create(array('cod' => 'SM', 'name' => 'SUPER MERCADO')); BusinessType::create(array('cod' => 'PV', 'name' => 'PUESTO DE VENTA')); BusinessType::create(array('cod' => 'HO', 'name' => 'HOSPITAL')); BusinessType::create(array('cod' => 'H', 'name' => 'HOTEL')); BusinessType::create(array('cod' => 'CL', 'name' => 'CLINICA')); BusinessType::create(array('cod' => 'U', 'name' => 'UNIVERSIDAD')); BusinessType::create(array('cod' => 'T', 'name' => 'TERMINAL')); BusinessType::create(array('cod' => 'F', 'name' => 'FRIAL')); BusinessType::create(array('cod' => 'R', 'name' => 'RESTAURANT')); BusinessType::create(array('cod' => 'DP', 'name' => 'DOMICILIO PARTICULAR')); BusinessType::create(array('cod' => 'TI', 'name' => 'TIENDA')); BusinessType::create(array('cod' => 'IN', 'name' => 'INTERNET')); BusinessType::create(array('cod' => 'PS', 'name' => 'PELUQUERIA/SALON DE BELLEZA')); BusinessType::create(array('cod' => 'O', 'name' => 'OTROS')); InvoiceStatus::create(array('name' => 'Emitido')); InvoiceStatus::create(array('name' => 'Anulado')); Frequency::create(array('name' => 'Semanal')); Frequency::create(array('name' => 'Cada 2 Semanas')); Frequency::create(array('name' => 'Cada 4 Semanas')); Frequency::create(array('name' => 'Mensual')); Frequency::create(array('name' => 'Trimestral')); Frequency::create(array('name' => 'Semestral')); Frequency::create(array('name' => 'Anual')); Currency::create(array('name' => 'Bolivianos', 'code' => 'BS', 'symbol' => 'Bs', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.')); Currency::create(array('name' => 'Aux', 'code' => ' ', 'symbol' => ' ', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.')); DatetimeFormat::create(array('format' => 'd/M/Y g:i a', 'label' => '10/Mar/2013')); DatetimeFormat::create(array('format' => 'd-M-Yk g:i a', 'label' => '10-Mar-2013')); DatetimeFormat::create(array('format' => 'd/F/Y g:i a', 'label' => '10/March/2013')); DatetimeFormat::create(array('format' => 'd-F-Y g:i a', 'label' => '10-March-2013')); DatetimeFormat::create(array('format' => 'M j, Y g:i a', 'label' => 'Mar 10, 2013 6:15 pm')); DatetimeFormat::create(array('format' => 'F j, Y g:i a', 'label' => 'March 10, 2013 6:15 pm')); DatetimeFormat::create(array('format' => 'D M jS, Y g:ia', 'label' => 'Mon March 10th, 2013 6:15 pm')); DateFormat::create(array('format' => 'd/M/Y', 'picker_format' => 'dd/M/yyyy', 'label' => '10/Mar/2013')); DateFormat::create(array('format' => 'd-M-Y', 'picker_format' => 'dd-M-yyyy', 'label' => '10-Mar-2013')); DateFormat::create(array('format' => 'd/F/Y', 'picker_format' => 'dd/MM/yyyy', 'label' => '10/March/2013')); DateFormat::create(array('format' => 'd-F-Y', 'picker_format' => 'dd-MM-yyyy', 'label' => '10-March-2013')); DateFormat::create(array('format' => 'M j, Y', 'picker_format' => 'M d, yyyy', 'label' => 'Mar 10, 2013')); DateFormat::create(array('format' => 'F j, Y', 'picker_format' => 'MM d, yyyy', 'label' => 'March 10, 2013')); DateFormat::create(array('format' => 'D M j, Y', 'picker_format' => 'D MM d, yyyy', 'label' => 'Mon March 10, 2013')); /* d, dd: Numeric date, no leading zero and leading zero, respectively. Eg, 5, 05. D, DD: Abbreviated and full weekday names, respectively. Eg, Mon, Monday. m, mm: Numeric month, no leading zero and leading zero, respectively. Eg, 7, 07. M, MM: Abbreviated and full month names, respectively. Eg, Jan, January yy, yyyy: 2- and 4-digit years, respectively. Eg, 12, 2012.) */ $timezones = array('Pacific/Midway' => "(GMT-11:00) Midway Island", 'US/Samoa' => "(GMT-11:00) Samoa", 'US/Hawaii' => "(GMT-10:00) Hawaii", 'US/Alaska' => "(GMT-09:00) Alaska", 'US/Pacific' => "(GMT-08:00) Pacific Time (US & Canada)", 'America/Tijuana' => "(GMT-08:00) Tijuana", 'US/Arizona' => "(GMT-07:00) Arizona", 'US/Mountain' => "(GMT-07:00) Mountain Time (US & Canada)", 'America/Chihuahua' => "(GMT-07:00) Chihuahua", 'America/Mazatlan' => "(GMT-07:00) Mazatlan", 'America/Mexico_City' => "(GMT-06:00) Mexico City", 'America/Monterrey' => "(GMT-06:00) Monterrey", 'Canada/Saskatchewan' => "(GMT-06:00) Saskatchewan", 'US/Central' => "(GMT-06:00) Central Time (US & Canada)", 'US/Eastern' => "(GMT-05:00) Eastern Time (US & Canada)", 'US/East-Indiana' => "(GMT-05:00) Indiana (East)", 'America/Bogota' => "(GMT-05:00) Bogota", 'America/Lima' => "(GMT-05:00) Lima", 'America/Caracas' => "(GMT-04:30) Caracas", 'Canada/Atlantic' => "(GMT-04:00) Atlantic Time (Canada)", 'America/La_Paz' => "(GMT-04:00) La Paz", 'America/Santiago' => "(GMT-04:00) Santiago", 'Canada/Newfoundland' => "(GMT-03:30) Newfoundland", 'America/Buenos_Aires' => "(GMT-03:00) Buenos Aires", 'Greenland' => "(GMT-03:00) Greenland", 'Atlantic/Stanley' => "(GMT-02:00) Stanley", 'Atlantic/Azores' => "(GMT-01:00) Azores", 'Atlantic/Cape_Verde' => "(GMT-01:00) Cape Verde Is.", 'Africa/Casablanca' => "(GMT) Casablanca", 'Europe/Dublin' => "(GMT) Dublin", 'Europe/Lisbon' => "(GMT) Lisbon", 'Europe/London' => "(GMT) London", 'Africa/Monrovia' => "(GMT) Monrovia", 'Europe/Amsterdam' => "(GMT+01:00) Amsterdam", 'Europe/Belgrade' => "(GMT+01:00) Belgrade", 'Europe/Berlin' => "(GMT+01:00) Berlin", 'Europe/Bratislava' => "(GMT+01:00) Bratislava", 'Europe/Brussels' => "(GMT+01:00) Brussels", 'Europe/Budapest' => "(GMT+01:00) Budapest", 'Europe/Copenhagen' => "(GMT+01:00) Copenhagen", 'Europe/Ljubljana' => "(GMT+01:00) Ljubljana", 'Europe/Madrid' => "(GMT+01:00) Madrid", 'Europe/Paris' => "(GMT+01:00) Paris", 'Europe/Prague' => "(GMT+01:00) Prague", 'Europe/Rome' => "(GMT+01:00) Rome", 'Europe/Sarajevo' => "(GMT+01:00) Sarajevo", 'Europe/Skopje' => "(GMT+01:00) Skopje", 'Europe/Stockholm' => "(GMT+01:00) Stockholm", 'Europe/Vienna' => "(GMT+01:00) Vienna", 'Europe/Warsaw' => "(GMT+01:00) Warsaw", 'Europe/Zagreb' => "(GMT+01:00) Zagreb", 'Europe/Athens' => "(GMT+02:00) Athens", 'Europe/Bucharest' => "(GMT+02:00) Bucharest", 'Africa/Cairo' => "(GMT+02:00) Cairo", 'Africa/Harare' => "(GMT+02:00) Harare", 'Europe/Helsinki' => "(GMT+02:00) Helsinki", 'Europe/Istanbul' => "(GMT+02:00) Istanbul", 'Asia/Jerusalem' => "(GMT+02:00) Jerusalem", 'Europe/Kiev' => "(GMT+02:00) Kyiv", 'Europe/Minsk' => "(GMT+02:00) Minsk", 'Europe/Riga' => "(GMT+02:00) Riga", 'Europe/Sofia' => "(GMT+02:00) Sofia", 'Europe/Tallinn' => "(GMT+02:00) Tallinn", 'Europe/Vilnius' => "(GMT+02:00) Vilnius", 'Asia/Baghdad' => "(GMT+03:00) Baghdad", 'Asia/Kuwait' => "(GMT+03:00) Kuwait", 'Africa/Nairobi' => "(GMT+03:00) Nairobi", 'Asia/Riyadh' => "(GMT+03:00) Riyadh", 'Asia/Tehran' => "(GMT+03:30) Tehran", 'Europe/Moscow' => "(GMT+04:00) Moscow", 'Asia/Baku' => "(GMT+04:00) Baku", 'Europe/Volgograd' => "(GMT+04:00) Volgograd", 'Asia/Muscat' => "(GMT+04:00) Muscat", 'Asia/Tbilisi' => "(GMT+04:00) Tbilisi", 'Asia/Yerevan' => "(GMT+04:00) Yerevan", 'Asia/Kabul' => "(GMT+04:30) Kabul", 'Asia/Karachi' => "(GMT+05:00) Karachi", 'Asia/Tashkent' => "(GMT+05:00) Tashkent", 'Asia/Kolkata' => "(GMT+05:30) Kolkata", 'Asia/Kathmandu' => "(GMT+05:45) Kathmandu", 'Asia/Yekaterinburg' => "(GMT+06:00) Ekaterinburg", 'Asia/Almaty' => "(GMT+06:00) Almaty", 'Asia/Dhaka' => "(GMT+06:00) Dhaka", 'Asia/Novosibirsk' => "(GMT+07:00) Novosibirsk", 'Asia/Bangkok' => "(GMT+07:00) Bangkok", 'Asia/Jakarta' => "(GMT+07:00) Jakarta", 'Asia/Krasnoyarsk' => "(GMT+08:00) Krasnoyarsk", 'Asia/Chongqing' => "(GMT+08:00) Chongqing", 'Asia/Hong_Kong' => "(GMT+08:00) Hong Kong", 'Asia/Kuala_Lumpur' => "(GMT+08:00) Kuala Lumpur", 'Australia/Perth' => "(GMT+08:00) Perth", 'Asia/Singapore' => "(GMT+08:00) Singapore", 'Asia/Taipei' => "(GMT+08:00) Taipei", 'Asia/Ulaanbaatar' => "(GMT+08:00) Ulaan Bataar", 'Asia/Urumqi' => "(GMT+08:00) Urumqi", 'Asia/Irkutsk' => "(GMT+09:00) Irkutsk", 'Asia/Seoul' => "(GMT+09:00) Seoul", 'Asia/Tokyo' => "(GMT+09:00) Tokyo", 'Australia/Adelaide' => "(GMT+09:30) Adelaide", 'Australia/Darwin' => "(GMT+09:30) Darwin", 'Asia/Yakutsk' => "(GMT+10:00) Yakutsk", 'Australia/Brisbane' => "(GMT+10:00) Brisbane", 'Australia/Canberra' => "(GMT+10:00) Canberra", 'Pacific/Guam' => "(GMT+10:00) Guam", 'Australia/Hobart' => "(GMT+10:00) Hobart", 'Australia/Melbourne' => "(GMT+10:00) Melbourne", 'Pacific/Port_Moresby' => "(GMT+10:00) Port Moresby", 'Australia/Sydney' => "(GMT+10:00) Sydney", 'Asia/Vladivostok' => "(GMT+11:00) Vladivostok", 'Asia/Magadan' => "(GMT+12:00) Magadan", 'Pacific/Auckland' => "(GMT+12:00) Auckland", 'Pacific/Fiji' => "(GMT+12:00) Fiji"); foreach ($timezones as $name => $location) { Timezone::create(array('name' => $name, 'location' => $location)); } }