-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Primeiro commit, criando um pequeno exemplo de um blog usando kohana
- Loading branch information
0 parents
commit 947397d
Showing
588 changed files
with
62,847 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Kohana License Agreement | ||
|
||
This license is a legal agreement between you and the Kohana Team for the use of Kohana Framework (the "Software"). By obtaining the Software you agree to comply with the terms and conditions of this license. | ||
|
||
Copyright (c) 2007-2010 Kohana Team | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | ||
|
||
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | ||
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | ||
* Neither the name of the Kohana nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Kohana PHP Framework, version 3.2 (development) | ||
|
||
This is the current development version of [Kohana](http://kohanaframework.org/). | ||
|
||
For the most current release, see the 3.1/master branch. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
<?php defined('SYSPATH') or die('No direct script access.'); | ||
|
||
// -- Environment setup -------------------------------------------------------- | ||
|
||
// Load the core Kohana class | ||
require SYSPATH.'classes/kohana/core'.EXT; | ||
|
||
if (is_file(APPPATH.'classes/kohana'.EXT)) | ||
{ | ||
// Application extends the core | ||
require APPPATH.'classes/kohana'.EXT; | ||
} | ||
else | ||
{ | ||
// Load empty core extension | ||
require SYSPATH.'classes/kohana'.EXT; | ||
} | ||
|
||
/** | ||
* Set the default time zone. | ||
* | ||
* @see http://kohanaframework.org/guide/using.configuration | ||
* @see http://php.net/timezones | ||
*/ | ||
date_default_timezone_set('America/Chicago'); | ||
|
||
/** | ||
* Set the default locale. | ||
* | ||
* @see http://kohanaframework.org/guide/using.configuration | ||
* @see http://php.net/setlocale | ||
*/ | ||
setlocale(LC_ALL, 'en_US.utf-8'); | ||
|
||
/** | ||
* Enable the Kohana auto-loader. | ||
* | ||
* @see http://kohanaframework.org/guide/using.autoloading | ||
* @see http://php.net/spl_autoload_register | ||
*/ | ||
spl_autoload_register(array('Kohana', 'auto_load')); | ||
|
||
/** | ||
* Enable the Kohana auto-loader for unserialization. | ||
* | ||
* @see http://php.net/spl_autoload_call | ||
* @see http://php.net/manual/var.configuration.php#unserialize-callback-func | ||
*/ | ||
ini_set('unserialize_callback_func', 'spl_autoload_call'); | ||
|
||
// -- Configuration and initialization ----------------------------------------- | ||
|
||
/** | ||
* Set the default language | ||
*/ | ||
I18n::lang('en-us'); | ||
|
||
/** | ||
* Set Kohana::$environment if a 'KOHANA_ENV' environment variable has been supplied. | ||
* | ||
* Note: If you supply an invalid environment name, a PHP warning will be thrown | ||
* saying "Couldn't find constant Kohana::<INVALID_ENV_NAME>" | ||
*/ | ||
if (isset($_SERVER['KOHANA_ENV'])) | ||
{ | ||
Kohana::$environment = constant('Kohana::'.strtoupper($_SERVER['KOHANA_ENV'])); | ||
} | ||
|
||
/** | ||
* Initialize Kohana, setting the default options. | ||
* | ||
* The following options are available: | ||
* | ||
* - string base_url path, and optionally domain, of your application NULL | ||
* - string index_file name of your index file, usually "index.php" index.php | ||
* - string charset internal character set used for input and output utf-8 | ||
* - string cache_dir set the internal cache directory APPPATH/cache | ||
* - boolean errors enable or disable error handling TRUE | ||
* - boolean profile enable or disable internal profiling TRUE | ||
* - boolean caching enable or disable internal caching FALSE | ||
*/ | ||
Kohana::init(array( | ||
'base_url' => '/', | ||
)); | ||
|
||
/** | ||
* Attach the file write to logging. Multiple writers are supported. | ||
*/ | ||
Kohana::$log->attach(new Log_File(APPPATH.'logs')); | ||
|
||
/** | ||
* Attach a file reader to config. Multiple readers are supported. | ||
*/ | ||
Kohana::$config->attach(new Config_File); | ||
|
||
/** | ||
* Enable modules. Modules are referenced by a relative or absolute path. | ||
*/ | ||
Kohana::modules(array( | ||
// 'auth' => MODPATH.'auth', // Basic authentication | ||
// 'cache' => MODPATH.'cache', // Caching with multiple backends | ||
// 'codebench' => MODPATH.'codebench', // Benchmarking tool | ||
// 'database' => MODPATH.'database', // Database access | ||
// 'image' => MODPATH.'image', // Image manipulation | ||
// 'orm' => MODPATH.'orm', // Object Relationship Mapping | ||
// 'unittest' => MODPATH.'unittest', // Unit testing | ||
// 'userguide' => MODPATH.'userguide', // User guide and API documentation | ||
)); | ||
|
||
/** | ||
* Set the routes. Each route must have a minimum of a name, a URI and a set of | ||
* defaults for the URI. | ||
*/ | ||
Route::set('default', '(<controller>(/<action>(/<id>)))') | ||
->defaults(array( | ||
'controller' => 'welcome', | ||
'action' => 'index', | ||
)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php defined('SYSPATH') or die('No direct script access.'); | ||
|
||
class Controller_Welcome extends Controller { | ||
|
||
public function action_index() | ||
{ | ||
$this->response->body('hello, world!'); | ||
} | ||
|
||
} // End Welcome |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Turn on URL rewriting | ||
RewriteEngine On | ||
|
||
# Installation directory | ||
RewriteBase / | ||
|
||
# Protect hidden files from being viewed | ||
<Files .*> | ||
Order Deny,Allow | ||
Deny From All | ||
</Files> | ||
|
||
# Protect application and system files from being viewed | ||
RewriteRule ^(?:application|modules|system)\b.* index.php/$0 [L] | ||
|
||
# Allow any files or directories that exist to be displayed directly | ||
RewriteCond %{REQUEST_FILENAME} !-f | ||
RewriteCond %{REQUEST_FILENAME} !-d | ||
|
||
# Rewrite all other URLs to index.php/URL | ||
RewriteRule .* index.php/$0 [PT] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
<?php | ||
|
||
/** | ||
* The directory in which your application specific resources are located. | ||
* The application directory must contain the bootstrap.php file. | ||
* | ||
* @see http://kohanaframework.org/guide/about.install#application | ||
*/ | ||
$application = 'application'; | ||
|
||
/** | ||
* The directory in which your modules are located. | ||
* | ||
* @see http://kohanaframework.org/guide/about.install#modules | ||
*/ | ||
$modules = 'modules'; | ||
|
||
/** | ||
* The directory in which the Kohana resources are located. The system | ||
* directory must contain the classes/kohana.php file. | ||
* | ||
* @see http://kohanaframework.org/guide/about.install#system | ||
*/ | ||
$system = 'system'; | ||
|
||
/** | ||
* The default extension of resource files. If you change this, all resources | ||
* must be renamed to use the new extension. | ||
* | ||
* @see http://kohanaframework.org/guide/about.install#ext | ||
*/ | ||
define('EXT', '.php'); | ||
|
||
/** | ||
* Set the PHP error reporting level. If you set this in php.ini, you remove this. | ||
* @see http://php.net/error_reporting | ||
* | ||
* When developing your application, it is highly recommended to enable notices | ||
* and strict warnings. Enable them by using: E_ALL | E_STRICT | ||
* | ||
* In a production environment, it is safe to ignore notices and strict warnings. | ||
* Disable them by using: E_ALL ^ E_NOTICE | ||
* | ||
* When using a legacy application with PHP >= 5.3, it is recommended to disable | ||
* deprecated notices. Disable with: E_ALL & ~E_DEPRECATED | ||
*/ | ||
error_reporting(E_ALL | E_STRICT); | ||
|
||
/** | ||
* End of standard configuration! Changing any of the code below should only be | ||
* attempted by those with a working knowledge of Kohana internals. | ||
* | ||
* @see http://kohanaframework.org/guide/using.configuration | ||
*/ | ||
|
||
// Set the full path to the docroot | ||
define('DOCROOT', realpath(dirname(__FILE__)).DIRECTORY_SEPARATOR); | ||
|
||
// Make the application relative to the docroot, for symlink'd index.php | ||
if ( ! is_dir($application) AND is_dir(DOCROOT.$application)) | ||
$application = DOCROOT.$application; | ||
|
||
// Make the modules relative to the docroot, for symlink'd index.php | ||
if ( ! is_dir($modules) AND is_dir(DOCROOT.$modules)) | ||
$modules = DOCROOT.$modules; | ||
|
||
// Make the system relative to the docroot, for symlink'd index.php | ||
if ( ! is_dir($system) AND is_dir(DOCROOT.$system)) | ||
$system = DOCROOT.$system; | ||
|
||
// Define the absolute paths for configured directories | ||
define('APPPATH', realpath($application).DIRECTORY_SEPARATOR); | ||
define('MODPATH', realpath($modules).DIRECTORY_SEPARATOR); | ||
define('SYSPATH', realpath($system).DIRECTORY_SEPARATOR); | ||
|
||
// Clean up the configuration vars | ||
unset($application, $modules, $system); | ||
|
||
if (file_exists('install'.EXT)) | ||
{ | ||
// Load the installation check | ||
return include 'install'.EXT; | ||
} | ||
|
||
/** | ||
* Define the start time of the application, used for profiling. | ||
*/ | ||
if ( ! defined('KOHANA_START_TIME')) | ||
{ | ||
define('KOHANA_START_TIME', microtime(TRUE)); | ||
} | ||
|
||
/** | ||
* Define the memory usage at the start of the application, used for profiling. | ||
*/ | ||
if ( ! defined('KOHANA_START_MEMORY')) | ||
{ | ||
define('KOHANA_START_MEMORY', memory_get_usage()); | ||
} | ||
|
||
// Bootstrap the application | ||
require APPPATH.'bootstrap'.EXT; | ||
|
||
/** | ||
* Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. | ||
* If no source is specified, the URI will be automatically detected. | ||
*/ | ||
echo Request::factory() | ||
->execute() | ||
->send_headers() | ||
->body(); |
Oops, something went wrong.