Calendar: Fix indication to enable agenda_collective_invitations - refs BT#19390

pull/4099/head
Angel Fernando Quiroz Campos 4 years ago
parent 12a4a1f160
commit 77a452fa84
  1. 1
      main/install/configuration.dist.php
  2. 5
      src/Chamilo/CoreBundle/Entity/AgendaEventInvitation.php
  3. 5
      src/Chamilo/CoreBundle/Entity/AgendaEventInvitee.php

@ -399,6 +399,7 @@ ALTER TABLE personal_agenda ADD CONSTRAINT FK_D8612460AF68C6B FOREIGN KEY (agend
CREATE UNIQUE INDEX UNIQ_D8612460AF68C6B ON personal_agenda (agenda_event_invitation_id);
*/
// Then add the "@" symbol to AgendaEventInvitation and AgendaEventInvitee classes in the ORM\Entity() line.
// Then uncomment the "use EventColletiveTrait;" line in the PersonalAgenda class.
//$_configuration['agenda_collective_invitations'] = false;
// ------
//

@ -11,10 +11,9 @@ use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
/**
* Add @ to the next lineactivating the agenda_collective_invitations configuration setting.
* ORM\Entity().
*
* @ORM\Table(name="agenda_event_invitation")
* Add @ to the next lineactivating the agenda_collective_invitations configuration setting.
* ORM\Entity()
*/
class AgendaEventInvitation
{

@ -9,10 +9,9 @@ use Chamilo\UserBundle\Entity\User;
use Doctrine\ORM\Mapping as ORM;
/**
* Add @ to the next lineactivating the agenda_collective_invitations configuration setting.
* ORM\Entity().
*
* @ORM\Table(name="agenda_event_invitee")
* Add @ to the next lineactivating the agenda_collective_invitations configuration setting.
* ORM\Entity()
*/
class AgendaEventInvitee
{

Loading…
Cancel
Save