perldoc > User::Identity::Location

📛 NAME

User::Identity::Location - physical location of a person

🚀 Quick Reference

Use CaseCommandDescription
🧑‍💻 Create a new location User::Identity::Location->new( [$name], %options ) Create a new location object with optional name and options
➕ Add location to identity $me->add(location => ...) Add a location to a User::Identity object
📬 Get full mailing address $obj->fullAddress() Return a formatted postal address (country-dependent)
📞 Get phone numbers $obj->phone() Return one or more phone numbers (international notation)
📇 Get organization $obj->organization() Return the organization associated with this location
📍 Set country $obj->country('United States') Set the country (auto-looks up code via Geography::Countries)

🧬 INHERITANCE

📋 SYNOPSIS

use User::Identity;
use User::Identity::Location;
my $me   = User::Identity->new(...);
my $addr = User::Identity::Location->new(...);
$me->add(location => $addr);

# Simpler

use User::Identity;
my $me   = User::Identity->new(...);
my $addr = $me->add(location => ...);

📝 DESCRIPTION

The User::Identity::Location object contains the description of a physical location of a person: home, work, travel. The locations are collected by a User::Identity::Collection::Locations object.

Nearly all methods can return undef. Some methods produce language or country specific output.

Extends "DESCRIPTION" in User::Identity::Item.

⚙️ METHODS

Extends "METHODS" in User::Identity::Item.

🏗️ Constructors

Extends "Constructors" in User::Identity::Item.

User::Identity::Location->new( [$name], %options )

Create a new location. You can specify a name as first argument, or in the OPTION list. Without a specific name, the organization is used as name.

OptionDefined inDefault
countryundef
country_codeundef
descriptionUser::Identity::Itemundef
faxundef
nameUser::Identity::Item<required>
organizationundef
parentUser::Identity::Itemundef
pcundef
phoneundef
poboxundef
pobox_pcundef
postal_code<value of option pc>
stateundef
streetundef

Options:

📇 Attributes

Extends "Attributes" in User::Identity::Item.

$obj->city()🏙️ The city where the address is located. $obj->country()🌍 The country where the address is located. If the name of the country is not known but a country code is defined, the name will be looked-up using Geography::Countries (if installed). $obj->countryCode()🌐 Each country has an ISO standard abbreviation. Specify the country or the country code, and the other will be filled in automatically. $obj->description()📝 Inherited, see "Attributes" in User::Identity::Item $obj->fax()📠 One or more fax numbers, like phone(). $obj->fullAddress()📬 Create an address to put on a postal mailing, in the format as normal in the country where it must go to. To be able to achieve that, the country code must be known. If the city is not specified or no street or pobox is given, undef will be returned: an incomplete address.

Example:

print $uil->fullAddress;
print $user->find(location => 'home')->fullAddress;
$obj->name( [$newname] )🏷️ Inherited, see "Attributes" in User::Identity::Item $obj->organization()🏢 The organization (for instance company) which is related to this location. $obj->phone()📞 One or more phone numbers. Please use the international notation, which starts with '+', for instance "+31-26-12131". In scalar context, only the first number is produced. In list context, all numbers are presented. $obj->pobox()📦 Post Office mail box specification. Use "P.O.Box 314", not simple 314. $obj->poboxPostalCode()📮 The postal code related to the Post-Office mail box. Defined by new() option "pobox_pc". $obj->postalCode()📮 The postal code is very country dependent. Also, the location of the code within the formatted string is country dependent. $obj->state()🗺️ The state, which is important for some countries but certainly not for the smaller ones. Only set this value when you state has to appear on printed addresses. $obj->street()🏘️ Returns the address of this location. Since Perl 5.7.3, you can use unicode in strings, so why not format the address nicely?

📂 Collections

Extends "Collections" in User::Identity::Item.

🔍 Searching

Extends "Searching" in User::Identity::Item.

⚠️ DIAGNOSTICS

📚 SEE ALSO

This module is part of User-Identity distribution version 1.01, built on February 11, 2022. Website: http://perl.overmeer.net/CPAN/

📄 LICENSE

Copyrights 2003-2022 by [Mark Overmeer <markov AT cpan.org>]. For other contributors see ChangeLog.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://dev.perl.org/licenses/

User::Identity::Location
📛 NAME 🚀 Quick Reference 🧬 INHERITANCE 📋 SYNOPSIS 📝 DESCRIPTION ⚙️ METHODS
🏗️ Constructors 📇 Attributes 📂 Collections 🔍 Searching
⚠️ DIAGNOSTICS 📚 SEE ALSO 📄 LICENSE

Generated by phpman v4.9.26-1-g511901d · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-08-07 17:18 @2600:1f28:365:80b0:18ab:df6:7e48:ac07
CrawledBy CCBot/2.0 (https://commoncrawl.org/faq/)
Valid XHTML 1.0 Transitional!Valid CSS!
Enhanced by LLM: deepseek-v4-flash / taotoken.net / www.chedong.com - original format

^_top_^