This file contains hidden or 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
Inner Join (Tabela1) | |
LOAD | |
Chave, | |
C | |
Resident Tabela2; |
This file contains hidden or 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
Right Join (Tabela1) | |
LOAD | |
Chave, | |
C | |
Resident Tabela2; |
This file contains hidden or 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
Left Join (Tabela1) | |
LOAD | |
Chave, | |
C | |
Resident Tabela2; |
This file contains hidden or 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
Outer Join (Tabela1) | |
LOAD | |
Chave, | |
C | |
Resident Tabela2; |
This file contains hidden or 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
Tabela1: | |
LOAD * INLINE [ | |
Chave, A | |
1, A1 | |
2, A2 | |
3, A3 | |
]; | |
Tabela2: | |
LOAD * INLINE [ |
This file contains hidden or 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 (function_exists('show_full_breadcrumb')) show_full_breadcrumb( | |
array( | |
'labels' => array( | |
'local' => __('Você está aqui:'), // set FALSE to hide | |
'home' => __('Início'), | |
'page' => __('Página'), | |
'tag' => __('Etiqueta'), | |
'search' => __('Buscando'), | |
'author' => __('Publicado por'), |
This file contains hidden or 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 (function_exists('show_full_breadcrumb')) show_full_breadcrumb( | |
array( | |
'labels' => array( | |
'local' => __('You are here:'), // set FALSE to hide | |
'home' => __('Home'), | |
'page' => __('Page'), | |
'tag' => __('Tag'), | |
'search' => __('Searching for'), | |
'author' => __('Published by'), |
This file contains hidden or 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 | |
show_full_breadcrumb( | |
array( | |
'separator' => array( | |
'content' => '»' | |
), | |
'home' => array( | |
'showLink' => false | |
) | |
) |
This file contains hidden or 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
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
Options +FollowSymlinks | |
RewriteBase / | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule ^(.*) /v2/$1 [QSA,L] | |
</IfModule> |
This file contains hidden or 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 PostsController extends AppController { | |
public function my_action() { | |
$this->render('custom_file'); | |
} | |
} | |
?> |