Sloppy Words Cleaner

Capitalise City text - Sloppy Words Cleaner

Capitalise City text

by 14Steve14 » Mon Jun 17, 2024 3:39 pm

Bit of a silly one this and really just checking that the latest version works the same way as the older version.

Is it just a case of replacing

Code: Select all

if (isset($customer_details['city'])) $customer_details['city'] = $this->RemoveShouting($customer_details['city']);


with

Code: Select all

if (isset($customer_details['city'])) $customer_details['city'] = strtoupper($customer_details['city']);


to make the City text entered all capitals.
14Steve14
Senior Contributor
Posts: 922
Joined: Fri Oct 25, 2019 7:01 pm
Phoenix Version: v1.0.9.1
Contact:

Re: Capitalise City text

by raiwa » Mon Jun 17, 2024 5:52 pm

You should better use the built in conv_to_upper method:

Code: Select all

        if (isset($customer_details['city'])) $customer_details['city'] = $this->conv_to_upper($customer_details['city']);
This ensures correct conversion of special characters.
Public Phoenix Change Log Cheat Set on Google Sheets
https://docs.google.com/spreadsheets/d/ ... sp=sharing

Need Help?viewtopic.php?f=10&t=27
raiwa
Certified Developer
Posts: 1640
Joined: Sat Dec 21, 2019 8:08 am
Phoenix Version: 1.1.0.6
Contact: