{"id":25009547,"url":"https://github.com/kentico/xperience-events","last_synced_at":"2025-03-30T02:10:39.429Z","repository":{"id":130531236,"uuid":"320142455","full_name":"Kentico/xperience-events","owner":"Kentico","description":"Contains a custom module and page type for creating events and managing attendees in the Xperience interface.","archived":false,"fork":false,"pushed_at":"2021-04-21T16:03:52.000Z","size":134,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-05T04:40:28.309Z","etag":null,"topics":["event-calendar","kentico-xperience"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Kentico.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-12-10T02:57:39.000Z","updated_at":"2021-05-04T13:02:30.000Z","dependencies_parsed_at":"2023-07-07T07:45:47.475Z","dependency_job_id":null,"html_url":"https://github.com/Kentico/xperience-events","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kentico%2Fxperience-events","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kentico%2Fxperience-events/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kentico%2Fxperience-events/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kentico%2Fxperience-events/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Kentico","download_url":"https://codeload.github.com/Kentico/xperience-events/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246266248,"owners_count":20749754,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["event-calendar","kentico-xperience"],"created_at":"2025-02-05T04:40:01.558Z","updated_at":"2025-03-30T02:10:39.421Z","avatar_url":"https://github.com/Kentico.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Nuget](https://img.shields.io/nuget/v/Xperience.Events)](https://www.nuget.org/packages/Xperience.Events) ![Kentico.Xperience.Libraries 13.0.5](https://img.shields.io/badge/Kentico.Xperience.Libraries-v13.0.5-orange)\n\n# Xperience Events\n\n## Installation\n\n1. Install the [Xperience.Events](https://www.nuget.org/packages/Xperience.Events) NuGet package in the CMS application\n1. _(Optional)_ Install the [companion package](https://github.com/kentico-ericd/xperience-core-events) in your .NET Core application\n1. Build the CMS application\n1. In the __Page types__ application, configure the [scopes](https://docs.xperience.io/developing-websites/defining-website-content-structure/managing-page-types/limiting-the-pages-users-can-create#Limitingthepagesuserscancreate-Managingpagetypescopes) and [allowed types](https://docs.xperience.io/developing-websites/defining-website-content-structure/managing-page-types/limiting-the-pages-users-can-create#Limitingthepagesuserscancreate-Allowinguserstoplacecertainpagesunderapagetype) for the new `Xperience.Event` and `Xperience.EventCalendar` page types\n\n## Creating a calendar\n\nTo create a new calendar of events, create an `Xperience.EventCalendar` page in your content tree. The _Text color_, _Background color_, and _Bullet color_ fields determine how events of this calendar appear on the live site:\n\n![Calendar fields](/img/calendarfields.png)\n\n_Text color_ defaults to `#000`. Under the __Attendees__ section you can control which information appears in an event's detailed popup (if you installed the __Xperience.Core.Events__ NuGet package):\n\n![Detail popup](/img/detailpopup.png)\n\n_Show event capacity and attendee count_ displays the \"3 of 10\" text from the above screenshot, and _Show event attendee names_ shows the list of names.\n\n## Adding events to a calendar\n\nTo add events to a calendar, create `Xperience.Event` pages under the `Xperience.EventCalendar` page. Aside from basic information about the event, you can also configure registration for the event.\n\nIf _Requires registration_ is enabled, you can set an event capacity and  also allow further registration if the capacity is exceeded. You can view and manage current registrations from the new __Attendees__ tab:\n\n![Attendee tab](/img/attendeetab.png)\n\n## Displaying events on the live site\n\nIf you installed the __Xperience.Core.Events__ package on your .NET Core site, you can [use the widget](https://github.com/kentico-ericd/xperience-core-events#displaying-event-calendars) to display calendars. Otherwise, you can use standard Xperience API to load calendars and their events: [Displaying page content](https://docs.xperience.io/developing-websites/retrieving-content/displaying-page-content).\n\n```cs\nvar events = pageRetriever.Retrieve\u003cEvent\u003e(query =\u003e query\n        .Path(\"/Calendars/Office\", PathTypeEnum.Children));\n```\n\n## Compatibility\n\nThis code is only available for use on Kentico Xperience 13 websites. The CMS application must be hotfixed to _at least_ the version indicated at the top of the README.\n\n## Feedback \u0026 Contributing\n\nCheck out the [contributing](https://github.com/kentico-ericd/xperience-core-events/blob/master/CONTRIBUTING.md) page to see the best places to file issues, start discussions, and begin contributing.\n\n## License\n\nThe repository is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkentico%2Fxperience-events","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkentico%2Fxperience-events","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkentico%2Fxperience-events/lists"}