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 | |
| abstract class TypeObject | |
| { | |
| protected $type; | |
| protected $value; | |
| public function __construct($value) | |
| { |
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
| <html> | |
| <head> | |
| <title></title> | |
| <style type="text/css"> | |
| input[type="checkbox"]{ | |
| display: none; | |
| } | |
| .pretty-check{ |
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
| display: inline-block; | |
| *display: inline; | |
| zoom: 1; |
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 String | |
| { | |
| protected $value; | |
| public function __construct($value = '') | |
| { | |
| $this->setValue($value); | |
| } |
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
| ./modules | |
| ./moduleName | |
| ./Controller | |
| ./ControllerName.php | |
| ./Model | |
| Model.php | |
| ./modules | |
| {{ define modules }} | |
| ./assets | |
| ./views |
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
| return $.class({ | |
| extends: ['Path/To/ClassToExtend1', 'Path/To/ClassToExtend2'], | |
| implements: ['Path/To/ClassToImplement1'], | |
| fields: { | |
| id: { | |
| type: 'int', | |
| label: '#ID', | |
| }, | |
| images: { |
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
| <div class="wrapper"> | |
| <section class="breadcrumb"> | |
| <?php echo $breadcrumb; ?> | |
| </section> | |
| <div class="clear"></div> | |
| <section class="sidebar"> | |
| <h3><?php echo $pagina->titulo->valor; ?></h3> | |
| <?php if(count($categorias = $parent->childrens(1,1))){ ?> | |
| <ul> |
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 Produtos extends MY_Controller | |
| { | |
| public function __construct() | |
| { | |
| parent::__construct('main'); | |
| } | |
| /** |
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
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title></title> | |
| <style type="text/css"> | |
| .\#slider { | |
| background: red; | |
| height: 500px; | |
| } |
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 | |
| $common = new PagarMe_TransactionCommon; | |
| $common->setCardnumber(); | |
| $common->setCardCvv(); | |
| // -> setWathever(); | |
| // ... | |
| $card_hash = $common->generateCardHash(); |
OlderNewer