nemmo\attachments\Module::getShortClass PHP Method

getShortClass() public method

public getShortClass ( $obj )
    public function getShortClass($obj)
    {
        $className = get_class($obj);
        if (preg_match('@\\\\([\\w]+)$@', $className, $matches)) {
            $className = $matches[1];
        }
        return $className;
    }