LazyLoadPlugin::getName PHP Method

getName() public method

See also: Plugin::getName()
public getName ( )
    function getName()
    {
        // Lazy load enabled plug-ins always use the plugin's class name
        // as plug-in name. Legacy plug-ins will override this method so
        // this implementation is backwards compatible.
        // NB: strtolower was required for PHP4 compatibility.
        return strtolower_codesafe(get_class($this));
    }