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
<?php | |
include_once dirname(__FILE__) . '/../support/enviromment.php'; | |
/** | |
* @group models | |
*/ | |
class PersonTest extends CIUnit_TestCase { | |
public function setUp() { | |
$this->CI->load->spark('php-activerecord/0.0.1'); | |
parent::setUp(); |
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
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
class Welcome extends CI_Controller { | |
function __construct() { | |
parent::__construct(); | |
$this->load->spark('php-activerecord/0.0.1'); | |
} | |
public function 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
<?php | |
class Phone_carrier_model extends CI_Model { | |
function __construct() | |
{ | |
parent::__construct(); | |
} | |
public function getCarriers($attributes) | |
{ |
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
<?php | |
class Phone_carrier_model extends CI_Model { | |
function __construct() | |
{ | |
parent::__construct(); | |
} | |
public function getCarriers($attributes) | |
{ |
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
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
#$active_group = 'default'; | |
$enviroment = 'default'; | |
if (ENVIRONMENT === 'testing') $enviroment .= '_test'; | |
$active_group = $enviroment; | |
$active_record = TRUE; | |
// production enviromment |
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
CREATE TABLE `academico_test`.`phone_carrier` ( | |
`id` INT NOT NULL AUTO_INCREMENT, | |
`name` VARCHAR(150) , | |
`txt_address` VARCHAR(150) , | |
`txt_message_length` VARCHAR(150) , | |
PRIMARY KEY (`id`) | |
) | |
ENGINE = MyISAM; |
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
$:.unshift(File.expand_path('./lib', ENV['rvm_path'])) # Add RVM's lib directory to the load path. | |
require "rvm/capistrano" # Load RVM's capistrano plugin. | |
set :rvm_ruby_string, '1.9.2@rails3' # Or whatever env you want it to run in. | |
set :rvm_type, :user | |
# bundler bootstrap | |
require 'bundler/capistrano' | |
#ssh_options[:auth_methods] = %w(password keyboard-interactive) | |
#default_run_options[:pty] = true |
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
## conteúdo da view index.php | |
<h2>application::views::welcome::show</h2> | |
<h1>Rendering a partials with locals</h1> | |
<!-- inclui uma partial sem loop, apenas passando variaveis locais --> | |
<?= render_partial('people/_list_people.php', $locals_vars ); ?> | |
<h1>Rendering a collection of partials</h1> | |
<!-- passando uma collection o conteúdo da partial é inserida a cada linha do loop --> | |
<?= render_partial('people/_people.php', |
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
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
class People extends MY_Controller { | |
function __construct() { | |
parent::__construct(); | |
} | |
function 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
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); | |
function render_partial($partial, $locals = null, $collection = null, $ajax = NULL) { | |
$partial = APPPATH .'views/'. $partial; | |
$contents = ''; | |
foreach($locals AS $key => $value) { | |
${$key} = $value; |