pnd8_rasp/app/engine/admin/modules/auto_title.php

15 lines
169 B
PHP

<?php
class auto_title extends module {
var $_loc_vars = array( 'templ' );
function _on_() {
global $cat;
return implode(" / ", $cat->path_name);
}
}
?>