$this->set('programStateList', $this->ProgramBroadcaster->
Program->ProgramFile->ProgramState->find('list'));
You can add condition in it.
On Sat, Sep 27, 2008 at 10:43 PM, Mickael Gentil
<[EMAIL PROTECTED]>wrote:
> Hi all,
>
> I need some help with a problem.
>
> This is my controller :
>
> <?php
> class ProgramBroadcastersController extends AppController {
>
> var $name = 'ProgramBroadcasters';
> var $components = array('Filter');
>
> var $paginate = array(
> 'limit'=>20,
> 'page'=>1,
> 'order'=>'ProgramBroadcaster.created DESC',
>
> 'fields'=>array('id','broadcaster_id','program_id','play_date','delivery_date','case_number','video_tape_number'),
> 'contain'=>array(
> 'Broadcaster'=>array('fields'=>array('id','name')),
> 'Program'=>array(
> 'ProgramFile'=>array(
>
> 'fields'=>array('id','program_id','program_state_id'),
> 'ProgramState',
>
> 'User'=>array('fields'=>array('lastname','firstname'))
> )
> )
> )
> );
>
> public function index()
> {
> $this->set('broadcasterList',
> $this->ProgramBroadcaster->Broadcaster->find('list'));
> $this->set('programStateList',
> $this->ProgramBroadcaster->Program->ProgramFile->ProgramState->find('list'));
>
> $filter = $this->Filter->process($this);
> $this->set('url',$this->Filter->url);
> $this->set('programs', $this->paginate(null, $filter));
>
> }
> }
>
> I need to filter datas on ProgramState.id, and i don't know how.
>
> Thanks a lot.
>
> Yudao.
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---