Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions config/matches.php
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
<?php

/**
* Configuration for Matches controller
*/
* Configuration for Matches controller
*/



/**
* Configure the templates directory
*/
$config['templates'] = 'views/matches_templates/';
* Configure the templates directory
*/
$config['templates'] = 'views' . DIRECTORY_SEPARATOR . 'matches_templates' . DIRECTORY_SEPARATOR;


/**
* Tell the Matches what controller to extend
*/
$config['c_extends'] = 'CI';
* Tell the Matches what controller to extend
*/
$config['controller_extends'] = 'CI';

/**
* Tell the Matches what model to extend
*/
$config['mo_extends'] = 'CI';
* Tell the Matches what model to extend
*/
$config['model_extends'] = 'CI';

/**
* Tell the Matches what Migration to extend
*/
$config['mi_extends'] = 'CI';
* Tell the Matches what Migration to extend
*/
$config['migration_extends'] = 'CI';
Loading