- Timestamp:
- 09/30/10 14:04:56 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/newsletter/trunk/inc/class.newsletter.settings.php
r2643 r2685 1363 1363 $this->setParameter('date_previous_send',(string)$date_previous_send); 1364 1364 } 1365 1366 /** 1367 * Get the state of link with Agora 1368 */ 1369 public function getCheckAgoraLink() 1370 { 1371 return (boolean)$this->getParameter('check_agora_link'); 1372 } 1373 1374 /** 1375 * indique si on doit utiliser la liaison avec Agora 1376 */ 1377 public function setCheckAgoraLink($value) 1378 { 1379 $this->setParameter('check_agora_link',(boolean)$value); 1380 } 1381 1382 /** 1383 * réinitialise si on doit utiliser la liaison avec Agora 1384 */ 1385 public function clearCheckAgoraLink() 1386 { 1387 $this->setCheckAgoraLink(false); 1388 } 1365 1389 1366 1390 /** … … 1392 1416 if(!$this->getSendUpdatePost()) $this->clearSendUpdatePost(); 1393 1417 if(!$this->getDatePreviousSend()) $this->setDatePreviousSend(); 1418 if(!$this->getCheckAgoraLink()) $this->setCheckAgoraLink(true); 1394 1419 1395 1420 // en vrac … … 1491 1516 'excerpt_restriction', 1492 1517 'txt_link_visu_online', 1518 // agora link 1519 'check_agora_link', 1493 1520 // newsletter 1494 1521 'newsletter_subject',
Note: See TracChangeset
for help on using the changeset viewer.