Created
September 21, 2012 08:40
-
-
Save fedmich/3760414 to your computer and use it in GitHub Desktop.
CakePHP_Codes
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
App::uses('Chart', 'Lib'); | |
class ... { | |
} | |
---- | |
Late importing | |
function ...(){ | |
App::import('Lib', 'Chart'); | |
} |
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 | |
//in controller files | |
public function beforeFilter() { | |
parent::beforeFilter(); | |
//Cronjob mode, no views needed | |
$this->render(false); | |
//$this->autoRender = false; | |
//$this->layout = null; | |
} |
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
<img src="<?= $this->webroot; ?>img/delete.png" alt="Delete" title="Delete" width="16" height="16" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment