1
0
Fork 0
mirror of https://github.com/Oreolek/kohana-migrations.git synced 2024-04-30 08:09:22 +03:00
kohana-migrations/config/userguide.php

23 lines
755 B
PHP
Executable file
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php defined('SYSPATH') OR die('No direct script access.');
return array(
// Leave this alone
'modules' => array(
// This should be the path to this modules userguide pages, without the 'guide/'. Ex: '/guide/modulename/' would be 'modulename'
'minion-migrations' => array(
// Whether this modules userguide pages should be shown
'enabled' => TRUE,
// The name that should show up on the userguide index page
'name' => 'Minion Migrations',
// A short description of this module, shown on the index page
'description' => "Migration tasks for Kohana's Minion CLI framework.",
// Copyright message, shown in the footer for this module
'copyright' => '&copy; 20082012 Kohana Team',
)
)
);