Skip to content

Instantly share code, notes, and snippets.

@mariuswilms
Created March 6, 2009 10:38
Show Gist options
  • Save mariuswilms/74858 to your computer and use it in GitHub Desktop.
Save mariuswilms/74858 to your computer and use it in GitHub Desktop.
<?php
// app/controllers/movies_controller.php
class MoviesController extends AppController {
function edit($id = null) {
// ...
// $this->data = array(
// 'Movie' => array('title' => 'Vicky Cristina Barcelona'),
// 'Attachment' => array(
// 0 => array('file' => transferable item1, 'model' => 'Movie'),
// 1 => array('file' => transferable item2, 'model' => 'Movie'),
// )
// );
$this->Movie->saveAll($this->data, array('validate' => 'first'));
// ...
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment