Benim kimlik kurma, benim users_controller i aşağıda listelenen bir kayıt eylem var. Ben hattı 20'de bir hata alıyorum hangi
if (!empty($this->data)) {
Hata:
syntax error, unexpected T_STRING
İşte benim bütün users_controller olduğunu:
<?php
class UsersController extends AppController {
var $name = 'Users';
var $helpers = array('Time', 'Crumb', 'Html', 'Form');
var $components = array('Auth');
function index() {
$this->set('users', $this->User->find('all'));
}
function view($id = null) {
$this->User->id = $id;
$this->set('user', $this->User->read());
}
function register() {
if (!empty($this->data)) {
if ($this->data['User']['password'] == $this->Auth->password($this->data['User']['password_confirm'])) {
$this->User->create();
$this->User->save($this->data);
$this->redirect(array('action' => 'index'));
}
}
}
function beforeFilter() {
parent::beforeFilter();
$this->Auth->loginRedirect = array('controller' => 'users', 'action' => 'index');
}
function login() {
}
function logout() {
$this->redirect($this->Auth->logout());
}
}
?>
Ne yanlış herkes görebilir miyim?
Jonesy