Controllers: plural
- For example:
UsersControllers
Models: singular
- A model representes one item, i.e. a record from a database. So:
UserorUserModel.
| javascript:var loc=window.location.host;window.location.href='http://whois.domaintools.com/'+loc; |
| <?php | |
| // include both our template library and the Toro framework | |
| require_once('lib/php-template.php'); | |
| require_once('lib/toro.php'); | |
| // set our template directory and a new instance | |
| $tpl_path = dirname(__FILE__) . '/templates/'; | |
| $tpl = new Template($tpl_path); |
| import flash.net.NetConnection; | |
| import flash.net.NetStream; | |
| import flash.media.Video; | |
| import flash.events.MouseEvent; | |
| var myVideo:NetConnection = new NetConnection(); | |
| myVideo.connect(null); | |
| var newStream:NetStream = new NetStream(myVideo); |
| body.home #navigation li.home a, | |
| body.events #navigation li.events a, | |
| body.news #navigation li.news a, | |
| body.wrestlers #navigation li.wrestlers a, | |
| body.shop #navigation li.shop a { | |
| background: #ff9900; | |
| } |
| <?php | |
| $file_to_upload = array( | |
| 'ticket_attachment[attachment]' => '@' . $_SERVER['DOCUMENT_ROOT'] . '/nmsworkbacklog/crown.jpg', | |
| 'ticket_attachment[description]' => 'test description' | |
| ); | |
| $headers = array(); | |
| $headers[] = 'Authorization: Basic ' . base64_encode('nms/martinbean:' . $this->registry->get('authenticate')->getApiKey()); | |
| $ch = curl_init(); | |
| curl_setopt($ch, CURLOPT_URL, 'http://api3.codebasehq.com/api-test-project/tickets/146/attachments'); | |
| curl_setopt($ch, CURLOPT_POST, true); |
| <?php | |
| $products = array( | |
| array( | |
| 'title' => 'Product #1', | |
| 'description' => 'Lorem ipsum' | |
| ), | |
| array( | |
| 'title' => 'Product #2', | |
| 'description' => 'Lorem ipsum' |
| { | |
| "require": { | |
| "aws/aws-php-sdk": "dev-master" | |
| } | |
| } |
| <?php | |
| $xml = new DOMDocument('1.0', 'UTF-8'); | |
| $xml->formatOutput = true; | |
| $rss = $xml->createElement('rss'); | |
| $rss->setAttribute('version', '2.0'); | |
| $rss->setAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns:g', 'http://base.google.com/ns/1.0'); | |
| $xml->appendChild($rss); |
| <?php | |
| class NewsArticle extends AppModel { | |
| public $name = 'NewsArticle'; | |
| public $hasAndBelongsToMany = array( | |
| 'Image' => array( | |
| 'joinTable' => 'news_articles_images' | |
| ) | |
| ); | |