예제 #1
0
파일: carnet.php 프로젝트: Ekleog/platal
 public function addRegistered(PlPage $page, Profile $profile)
 {
     XDB::execute('INSERT IGNORE INTO  contacts (uid, contact)
                               VALUES  ({?}, {?})', S::i('uid'), $profile->id());
     if (XDB::affectedRows() > 0) {
         S::user()->invalidWatchCache();
         Platal::session()->updateNbNotifs();
         $page->trigSuccess('Contact ajouté : ' . $profile->fullName(true));
     } else {
         $page->trigWarning('Contact déjà dans la liste : ' . $profile->fullName(true));
     }
 }