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 | |
/** | |
* @todo Por validacao de igualdade para validar se é >= ou so > | |
* @example | |
* $this->getElement('rdm_emissao') | |
* ->addValidator(new CORE_Validate_DataMaxima(array( | |
* 'data_maxima' => $data['rdm_data_entrada'], | |
* 'formato' => 'YYYY-MM-dd' | |
* ))); |
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
// | |
// Uso: | |
// $('#campo').typeahead({ | |
// ajax: { | |
// url: 'url', | |
// triggerLength: 1 | |
// }, | |
// mode: 'multiple', | |
// val: 'codigo', | |
// field_put_input: 'value' // value OR text |
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 | |
/** | |
* Implementação de adapter de autenticação de dica do Erick Tedescki http://www.slideshare.net/erickt86/tdc-2012-php | |
* | |
* @example Uso normal | |
* $auth = Zend_Auth::getInstance(); | |
* $dbAdapter = Zend_Db_Table::getDefaultAdapter(); | |
* $authAdapter = new CORE_Auth_64KLoop($dbAdapter); | |
* $authAdapter->setTableName('usuarios') |
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
#!/bin/bash | |
FOLDER_IN="" | |
FOLDER_OUT="" | |
FOLDER_JS_IN="./js" | |
FOLDER_JS_OUT="./js" | |
FOLDER_CSS_IN="./css" | |
FOLDER_CSS_OUT="./css" |
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 Form_Cliente extends EasyBib_Form | |
{ | |
public function init() | |
{ | |
$this->setMethod('POST'); | |
$this->setName('formnovocliente'); | |
$this->setAttrib('class', 'row form-horizontal form-cliente'); | |
$this->setAttrib('enctype', 'multipart/form-data'); |
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
Por este termo de confidencialidade e sigilo comprometo-me: | |
1. A não utilizar as informações confidenciais a que tiver acesso, para gerar benefício próprio exclusivo e/ou unilateral, presente ou futuro, ou para o uso de terceiros; | |
2. A não efetuar nenhuma gravação ou cópia da documentação confidencial a que tiver acesso; | |
3. A não apropriar-se para si ou para outrem de material confidencial e/ou sigiloso da tecnologia que venha a ser disponível; | |
4. A não repassar o conhecimento das informações confidenciais, responsabilizando-se por todas as pessoas que vierem a ter acesso às informações, por seu intermédio, e obrigando-se, assim, a ressarcir a ocorrência de qualquer dano e / ou prejuízo oriundo de uma eventual quebra de sigilo das informações fornecidas. |
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
Show hidden characters
{ | |
"auto_complete_commit_on_tab ": false, | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
"default_line_ending": "unix", | |
"font_face": "Source Code Pro", | |
"font_size": 12.0, | |
"highlight_line": true, | |
"ignored_packages": |
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 | |
/** | |
* Zend Framework | |
* | |
* LICENSE | |
* | |
* This source file is subject to the new BSD license that is bundled | |
* with this package in the file LICENSE.txt. | |
* It is also available through the world-wide-web at this URL: | |
* http://framework.zend.com/license/new-bsd |
OlderNewer