imagecms/ImageCMS

View on GitHub
application/modules/template_manager/model/template_model.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 *
 *
 * @author
 */
class Template_model extends CI_Model
{

    /**
     *
     * @param integer $handlerId
     * @param string $paramName
     * @param string $paramValue
     */
    public function setParam($handlerId, $paramName, $paramValue) {

    }

    /**
     *
     * @param integer $handlerId
     * @param string $key
     */
    public function getParams($handlerId, $key = NULL) {

    }

    public function install() {

    }

}