Saltar al contenido

ejemplo de código bindmodel cakephp

Ejemplo: bindmodel cakephp

// Our case:
MemberNotification -> BelongsTo -> Notification, 
Notification -> HasMany -> NotificationLanguage

$this->MemberNotification->recursive = 0;
$this->set('memberNotifications', $this->paginate());
$this->MemberNotification->bindModel(array(
    'belongsTo' => array(
        'NotificationLanguage' => array(
            'foreignKey' => false,
            'conditions' => array('Notification.id = NotificationLanguage.notification_id')
        ),
    )
));

// our purpose just make the NotificationLanguage same level with the Notification, 
// so we can sort 2nd level association
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *