<?php
/**
* AUTOLOADER EXAMPLE CLASS FOR PTCHM-EX.PHP FILE
*/
class HmTestClass
{
public function __construct( )
{
$dir = PtcHandyMan::getDirs( 'directories' );
echo 'Class "' . __CLASS__ . '" autoloaded from directory:<br> ' . $dir[1] . ' - ' . basename( __FILE__ ) . '<br><br>';
}
}
|