PHP Classes

File: SetsConfig.php

Recommend this page to a friend!
  Classes of Bogdan   Simple Tags   SetsConfig.php   Download  
File: SetsConfig.php
Role: Configuration script
Content type: text/plain
Description: file for the directory path
Class: Simple Tags
Template engine that replaces tags within brackets
Author: By
Last change: 0
Date: 14 years ago
Size: 228 bytes
 

Contents

Class file image Download
<?php

class SetsConfig {
    public function
setsSystemPath() {
        return
set_include_path(get_include_path()
                .
PATH_SEPARATOR . dirname(__FILE__));
    }
}

$setting = new SetsConfig();
$setting->setsSystemPath();
?>