Wire::className() method

Return this object’s class name

By default, this method returns the class name without namespace. To include the namespace, call it with boolean true as the first argument.

Example

echo $page->className(); // outputs: Page
echo $page->className(true); // outputs: ProcessWire\Page

Usage

// basic usage
$string = $wire->className();

// usage with all arguments
$string = $wire->className($options = null);

Arguments

NameType(s)Description
options (optional)array, bool, null

Specify boolean true to return class name with namespace, or specify an array of one or more options:

  • lowercase (bool): Specify true to make it return hyphenated lowercase version of class name (default=false).
  • namespace (bool): Specify true to include namespace from returned class name (default=false).
  • Note: The lowercase and namespace options may not both be true at the same time.

Return value

string

String with class name


Wire methods and properties

API reference based on ProcessWire core version 3.0.236

Latest news

  • ProcessWire Weekly #550
    In the 550th issue of ProcessWire Weekly we're going to check out the latest core updates, introduce a new third party module called PagefileMetadata, and more. Read on!
    Weekly.pw / 23 November 2024
  • Custom Fields Module
    This week we look at a new ProFields module named Custom Fields. This module provides a way to rapidly build out ProcessWire fields that contain any number of subfields/properties within them.
    Blog / 30 August 2024
  • Subscribe to weekly ProcessWire news

“To Drupal, or to ProcessWire? The million dollar choice. We decided to make an early switch to PW. And in retrospect, ProcessWire was probably the best decision we made. Thanks are due to ProcessWire and the amazing system and set of modules that are in place.” —Unni Krishnan, Founder of PigtailPundits