<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>The Content Model</title><link>https://community.telligent.com/community/11/w/developer-training/63114/the-content-model</link><description /><dc:language>en-US</dc:language><generator>14.0.0.586 14</generator><item><title>The Content Model</title><link>https://community.telligent.com/community/11/w/developer-training/63114/the-content-model</link><pubDate>Wed, 05 Aug 2020 14:58:45 GMT</pubDate><guid isPermaLink="false">437836fe-e6ce-4a93-be40-864cc38f2633</guid><dc:creator>Former Member</dc:creator><comments>https://community.telligent.com/community/11/w/developer-training/63114/the-content-model#comments</comments><description>Current Revision posted to Developer Training by Former Member on 08/05/2020 14:58:45&lt;br /&gt;
&lt;p&gt;Most information within Verint Community and interactions with Verint Community conform to the platform&amp;#39;s content model, an abstract, global organization of all content and its associated containing structures to enable platform-level global functionality.&lt;/p&gt;
&lt;p&gt;[toc]&lt;/p&gt;
&lt;h2&gt;&lt;a id="What_is_the_Content_Model" name="What_is_the_Content_Model"&gt;&lt;/a&gt;What is the Content Model?&lt;/h2&gt;
&lt;p&gt;The content model is an abstract representation of general content and its containing structures. This generic model is used to provide global services from the platform to enable consistent interactions and simplified extensibility and integration. The content model consists of three types of entities: Containers, Applications, and Content.&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-12-83/3858.png"&gt;&lt;img alt=" " src="/resized-image/__size/1040x0/__key/communityserver-wikis-components-files/00-00-00-12-83/3858.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a id="Containers" name="Containers"&gt;&lt;/a&gt;Containers&lt;/h3&gt;
&lt;p&gt;Containers are the top-level organization structure for content. On their own, containers offer little functionality aside from organizing applications, which contain content. Containers can be nested within themselves to provide deep navigational structures.&lt;/p&gt;
&lt;p&gt;Within Verint Community, the most prominent example of a container is a group.&lt;/p&gt;
&lt;h3&gt;&lt;a id="Applications" name="Applications"&gt;&lt;/a&gt;Applications&lt;/h3&gt;
&lt;p&gt;Applications exist within a single container and are the direct owner of content. That is, all content exists within a single application which exists within a single container. Within Verint Community, applications are are used as the basis for URL routes and permissions/security.&lt;/p&gt;
&lt;p&gt;An example of an application in Verint Community is a blog.&lt;/p&gt;
&lt;h3&gt;&lt;a id="Content" name="Content"&gt;&lt;/a&gt;Content&lt;/h3&gt;
&lt;p&gt;Content exists within a single application and represents authored, not structural, information. Most interactions within Verint Community are on content. Likes, bookmarks, comments, activity streams, notifications, search, etc occurs on content.&lt;/p&gt;
&lt;p&gt;An example of content in Verint Community would be a post within a blog.&lt;/p&gt;
&lt;h2&gt;&lt;a id="An_Internal_Example_Forums" name="An_Internal_Example_Forums"&gt;&lt;/a&gt;An Internal Example: Forums&lt;/h2&gt;
&lt;p&gt;The forums functionality in Verint Community consists of the &amp;quot;Forums&amp;quot; application which references the &amp;quot;Groups&amp;quot; container (that is, a forum exists within a group). The forums functionality defines two types of content: &amp;quot;Forum Threads&amp;quot; and &amp;quot;Forum Replies&amp;quot; both of which are defined to exist within the &amp;quot;Forums&amp;quot; application. The forums application types, forum threads content type, and forum replies content type are registered with the Verint Community platform via [[Plugins|plugins]], specifically as an [[api-documentation:IApplicationType Plugin Type|IApplicationType]] (for the forum application type) and [[api-documentation:IContentType Plugin Type|IContentType]] (for the forum thread and forum reply content types).&lt;/p&gt;
&lt;p&gt;By integrating directly using server-installed code, the forums functionality connects its data store of forum data to the platform, extending the platform&amp;#39;s &amp;quot;Group&amp;quot; container type and using other plugin types to define URLs/routes to access forum data through the Verint Community web UI, permissions to secure forum data, as well as integrating with search, likes, bookmarks, and other platform-defined services.&lt;/p&gt;
&lt;h2&gt;&lt;a id="An_External_Example_URLs" name="An_External_Example_URLs"&gt;&lt;/a&gt;An External Example: URLs&lt;/h2&gt;
&lt;p&gt;External integrations can also make use of the content model and associated platform services via an [[Authentication|OAuth client]] and the [[REST API]]. An OAuth client is an external integration that uses the REST API to interact with the Verint Community platform. OAuth clients can use Verint Community services on external URLs.&lt;/p&gt;
&lt;p&gt;In this situation, the OAuth client represents an application in the content model, extending the top-level group (container) of the Verint Community site. URLs referenced using the OAuth client when interacting with the REST API are interpreted as content associated to the OAuth client within Verint Community. This enables the OAuth client (external integration) to use platform-defined services such as bookmarking, liking, commenting, rating on data not stored within Verint Community but able to be referenced by a unique URL.&lt;/p&gt;
&lt;h2&gt;&lt;a id="Content_and_Core_Services" name="Content_and_Core_Services"&gt;&lt;/a&gt;Content and Core Services&lt;/h2&gt;
&lt;p&gt;As mentioned earlier, Verint Community provides global services to interact with data socially. These &amp;quot;core services&amp;quot; act on the content model. Some examples of core services provided by the Verint Community platform and how they interact with the content model is below:&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-12-83/2845.png"&gt;&lt;img alt=" " src="/resized-image/__size/1040x0/__key/communityserver-wikis-components-files/00-00-00-12-83/2845.png" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;&lt;a id="How_do_I_interact_with_the_Content_Model" name="How_do_I_interact_with_the_Content_Model"&gt;&lt;/a&gt;How do I interact with the Content Model?&lt;/h2&gt;
&lt;p&gt;How you use the content model depends largely on whether you&amp;#39;re implementing an external integration, integrating using plugins installed within Verint Community, or using content while customizing the Verint Community user interface:&lt;/p&gt;
&lt;h3&gt;&lt;a id="Within_an_External_Integration" name="Within_an_External_Integration"&gt;&lt;/a&gt;Within an External Integration&lt;/h3&gt;
&lt;p&gt;With an [[External Integration|external integration]], you&amp;#39;re primarily interacting with Verint Community using [[REST API|the REST API]]. You can use the installed content model implementations (groups, blogs, forums, etc) regardless of how you [[Authentication|authenticate your REST requests]].&lt;/p&gt;
&lt;p&gt;If you want to use Verint Community services on external content, you can [[Authentication|authenticate your REST requests using OAuth]]. By using an OAuth client, you can reference URLs within the context of your OAuth client and use Verint Community&amp;#39;s content services by providing a &lt;code&gt;ContentUrl&lt;/code&gt; to supporting services via their REST APIs.&lt;/p&gt;
&lt;h3&gt;&lt;a id="Using_Plugins_Installed_within_Telligent_Community" name="Using_Plugins_Installed_within_Telligent_Community"&gt;&lt;/a&gt;Using Plugins Installed within Verint Community&lt;/h3&gt;
&lt;p&gt;[[Plugins]] can interact with content generically or specifically using the [[In-Process API|in-process API]] to automate existing behavior or to expose functionality on existing content in a new way.&lt;/p&gt;
&lt;p&gt;The Verint Community platform also enables the implementation of new content model entities and types via content-related plugins: [[api-documentation:IContainerType Plugin Type|IContainerType]],&amp;nbsp;[[api-documentation:IApplicationType Plugin Type|IApplicationType]],&amp;nbsp;and [[api-documentation:IContentType Plugin Type|IContentType]]. These base plugin types can be extended to add support for Verint Community services via extensions to these base plugin types. For an example of implementing a custom application, see [[Creating Custom Applications and Content]] and [[Adding Core Service Support to Content]].&lt;/p&gt;
&lt;h3&gt;&lt;a id="When_Customizing_the_User_Interface" name="When_Customizing_the_User_Interface"&gt;&lt;/a&gt;When Customizing the User Interface&lt;/h3&gt;
&lt;p&gt;[[Widgets]] can interact with content generically or specifically using the widget API to expose existing data in a new way.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: Applications, Containers, Content&lt;/div&gt;
</description></item><item><title>The Content Model</title><link>https://community.telligent.com/community/11/w/developer-training/63114/the-content-model/revision/2</link><pubDate>Thu, 13 Jun 2019 19:39:42 GMT</pubDate><guid isPermaLink="false">437836fe-e6ce-4a93-be40-864cc38f2633</guid><dc:creator>Ben Tiedt</dc:creator><comments>https://community.telligent.com/community/11/w/developer-training/63114/the-content-model#comments</comments><description>Revision 2 posted to Developer Training by Ben Tiedt on 06/13/2019 19:39:42&lt;br /&gt;
&lt;p&gt;Most information within Telligent Community and interactions with Telligent Community conform to the platform&amp;#39;s content model, an abstract, global organization of all content and its associated containing structures to enable platform-level global functionality.&lt;/p&gt;
&lt;p&gt;[toc]&lt;/p&gt;
&lt;h2&gt;&lt;a id="What_is_the_Content_Model" name="What_is_the_Content_Model"&gt;&lt;/a&gt;What is the Content Model?&lt;/h2&gt;
&lt;p&gt;The content model is an abstract representation of general content and its containing structures. This generic model is used to provide global services from the platform to enable consistent interactions and simplified extensibility and integration. The content model consists of three types of entities: Containers, Applications, and Content.&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-12-83/3858.png"&gt;&lt;img src="/resized-image/__size/1040x0/__key/communityserver-wikis-components-files/00-00-00-12-83/3858.png" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a id="Containers" name="Containers"&gt;&lt;/a&gt;Containers&lt;/h3&gt;
&lt;p&gt;Containers are the top-level organization structure for content. On their own, containers offer little functionality aside from organizing applications, which contain content. Containers can be nested within themselves to provide deep navigational structures.&lt;/p&gt;
&lt;p&gt;Within Telligent Community, the most prominent example of a container is a group.&lt;/p&gt;
&lt;h3&gt;&lt;a id="Applications" name="Applications"&gt;&lt;/a&gt;Applications&lt;/h3&gt;
&lt;p&gt;Applications exist within a single container and are the direct owner of content. That is, all content exists within a single application which exists within a single container. Within Telligent Community, applications are are used as the basis for URL routes and permissions/security.&lt;/p&gt;
&lt;p&gt;An example of an application in Telligent Community is a blog.&lt;/p&gt;
&lt;h3&gt;&lt;a id="Content" name="Content"&gt;&lt;/a&gt;Content&lt;/h3&gt;
&lt;p&gt;Content exists within a single application and represents authored, not structural, information. Most interactions within Telligent Community are on content. Likes, bookmarks, comments, activity streams, notifications, search, etc occurs on content.&lt;/p&gt;
&lt;p&gt;An example of content in Telligent Community would be a post within a blog.&lt;/p&gt;
&lt;h2&gt;&lt;a id="An_Internal_Example_Forums" name="An_Internal_Example_Forums"&gt;&lt;/a&gt;An Internal Example: Forums&lt;/h2&gt;
&lt;p&gt;The forums functionality in Telligent Community consists of the &amp;quot;Forums&amp;quot; application which references the &amp;quot;Groups&amp;quot; container (that is, a forum exists within a group). The forums functionality defines two types of content: &amp;quot;Forum Threads&amp;quot; and &amp;quot;Forum Replies&amp;quot; both of which are defined to exist within the &amp;quot;Forums&amp;quot; application. The forums application types, forum threads content type, and forum replies content type are registered with the Telligent Community platform via [[Plugins|plugins]], specifically as an [[api-documentation:IApplicationType Plugin Type|IApplicationType]] (for the forum application type) and [[api-documentation:IContentType Plugin Type|IContentType]] (for the forum thread and forum reply content types).&lt;/p&gt;
&lt;p&gt;By integrating directly using server-installed code, the forums functionality connects its data store of forum data to the platform, extending the platform&amp;#39;s &amp;quot;Group&amp;quot; container type and using other plugin types to define URLs/routes to access forum data through the Telligent Community web UI, permissions to secure forum data, as well as integrating with search, likes, bookmarks, and other platform-defined services.&lt;/p&gt;
&lt;h2&gt;&lt;a id="An_External_Example_URLs" name="An_External_Example_URLs"&gt;&lt;/a&gt;An External Example: URLs&lt;/h2&gt;
&lt;p&gt;External integrations can also make use of the content model and associated platform services via an [[Authentication|OAuth client]] and the [[REST API]]. An OAuth client is an external integration that uses the REST API to interact with the Telligent Community platform. OAuth clients can use Telligent Community services on external URLs.&lt;/p&gt;
&lt;p&gt;In this situation, the OAuth client represents an application in the content model, extending the top-level group (container) of the Telligent Community site. URLs referenced using the OAuth client when interacting with the REST API are interpreted as content associated to the OAuth client within Telligent Community. This enables the OAuth client (external integration) to use platform-defined services such as bookmarking, liking, commenting, rating on data not stored within Telligent Community but able to be referenced by a unique URL.&lt;/p&gt;
&lt;h2&gt;&lt;a id="Content_and_Core_Services" name="Content_and_Core_Services"&gt;&lt;/a&gt;Content and Core Services&lt;/h2&gt;
&lt;p&gt;As mentioned earlier, Telligent Community provides global services to interact with data socially. These &amp;quot;core services&amp;quot; act on the content model. Some examples of core services provided by the Telligent Community platform and how they interact with the content model is below:&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-12-83/2845.png"&gt;&lt;img src="/resized-image/__size/1040x0/__key/communityserver-wikis-components-files/00-00-00-12-83/2845.png" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;&lt;a id="How_do_I_interact_with_the_Content_Model" name="How_do_I_interact_with_the_Content_Model"&gt;&lt;/a&gt;How do I interact with the Content Model?&lt;/h2&gt;
&lt;p&gt;How you use the content model depends largely on whether you&amp;#39;re implementing an external integration, integrating using plugins installed within Telligent Community, or using content while customizing the Telligent Community user interface:&lt;/p&gt;
&lt;h3&gt;&lt;a id="Within_an_External_Integration" name="Within_an_External_Integration"&gt;&lt;/a&gt;Within an External Integration&lt;/h3&gt;
&lt;p&gt;With an [[External Integration|external integration]], you&amp;#39;re primarily interacting with Telligent Community using [[REST API|the REST API]]. You can use the installed content model implementations (groups, blogs, forums, etc) regardless of how you [[Authentication|authenticate your REST requests]].&lt;/p&gt;
&lt;p&gt;If you want to use Telligent Community services on external content, you can [[Authentication|authenticate your REST requests using OAuth]]. By using an OAuth client, you can reference URLs within the context of your OAuth client and use Telligent Community&amp;#39;s content services by providing a &lt;code&gt;ContentUrl&lt;/code&gt; to supporting services via their REST APIs.&lt;/p&gt;
&lt;h3&gt;&lt;a id="Using_Plugins_Installed_within_Telligent_Community" name="Using_Plugins_Installed_within_Telligent_Community"&gt;&lt;/a&gt;Using Plugins Installed within Telligent Community&lt;/h3&gt;
&lt;p&gt;[[Plugins]] can interact with content generically or specifically using the [[In-Process API|in-process API]] to automate existing behavior or to expose functionality on existing content in a new way.&lt;/p&gt;
&lt;p&gt;The Telligent Community platform also enables the implementation of new content model entities and types via content-related plugins: [[api-documentation:IContainerType Plugin Type|IContainerType]],&amp;nbsp;[[api-documentation:IApplicationType Plugin Type|IApplicationType]],&amp;nbsp;and [[api-documentation:IContentType Plugin Type|IContentType]]. These base plugin types can be extended to add support for Telligent Community services via extensions to these base plugin types. For an example of implementing a custom application, see [[Creating Custom Applications and Content]] and [[Adding Core Service Support to Content]].&lt;/p&gt;
&lt;h3&gt;&lt;a id="When_Customizing_the_User_Interface" name="When_Customizing_the_User_Interface"&gt;&lt;/a&gt;When Customizing the User Interface&lt;/h3&gt;
&lt;p&gt;[[Widgets]] can interact with content generically or specifically using the widget API to expose existing data in a new way.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;
</description></item><item><title>The Content Model</title><link>https://community.telligent.com/community/11/w/developer-training/63114/the-content-model/revision/1</link><pubDate>Tue, 04 Jun 2019 20:31:06 GMT</pubDate><guid isPermaLink="false">437836fe-e6ce-4a93-be40-864cc38f2633</guid><dc:creator>Ben Tiedt</dc:creator><comments>https://community.telligent.com/community/11/w/developer-training/63114/the-content-model#comments</comments><description>Revision 1 posted to Developer Training by Ben Tiedt on 06/04/2019 20:31:06&lt;br /&gt;
&lt;p&gt;Most information within Telligent Community and interactions with Telligent Community conform to the platform&amp;#39;s content model, an abstract, global organization of all content and its associated containing structures to enable platform-level global functionality.&lt;/p&gt;
&lt;p&gt;[toc]&lt;/p&gt;
&lt;h2&gt;&lt;a id="What_is_the_Content_Model" name="What_is_the_Content_Model"&gt;&lt;/a&gt;What is the Content Model?&lt;/h2&gt;
&lt;p&gt;The content model is an abstract representation of general content and its containing structures. This generic model is used to provide global services from the platform to enable consistent interactions and simplified extensibility and integration. The content model consists of three types of entities: Containers, Applications, and Content.&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-12-83/6355.png"&gt;&lt;img src="/resized-image/__size/1040x0/__key/communityserver-wikis-components-files/00-00-00-12-83/6355.png" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a id="Containers" name="Containers"&gt;&lt;/a&gt;Containers&lt;/h3&gt;
&lt;p&gt;Containers are the top-level organization structure for content. On their own, containers offer little functionality aside from organizing applications, which contain content. Containers can be nested within themselves to provide deep navigational structures.&lt;/p&gt;
&lt;p&gt;Within Telligent Community, the most prominent example of a container is a group.&lt;/p&gt;
&lt;h3&gt;&lt;a id="Applications" name="Applications"&gt;&lt;/a&gt;Applications&lt;/h3&gt;
&lt;p&gt;Applications exist within a single container and are the direct owner of content. That is, all content exists within a single application which exists within a single container. Within Telligent Community, applications are are used as the basis for URL routes and permissions/security.&lt;/p&gt;
&lt;p&gt;An example of an application in Telligent Community is a blog.&lt;/p&gt;
&lt;h3&gt;&lt;a id="Content" name="Content"&gt;&lt;/a&gt;Content&lt;/h3&gt;
&lt;p&gt;Content exists within a single application and represents authored, not structural, information. Most interactions within Telligent Community are on content. Likes, bookmarks, comments, activity streams, notifications, search, etc occurs on content.&lt;/p&gt;
&lt;p&gt;An example of content in Telligent Community would be a post within a blog.&lt;/p&gt;
&lt;h2&gt;&lt;a id="An_Internal_Example_Forums" name="An_Internal_Example_Forums"&gt;&lt;/a&gt;An Internal Example: Forums&lt;/h2&gt;
&lt;p&gt;The forums functionality in Telligent Community consists of the &amp;quot;Forums&amp;quot; application which references the &amp;quot;Groups&amp;quot; container (that is, a forum exists within a group). The forums functionality defines two types of content: &amp;quot;Forum Threads&amp;quot; and &amp;quot;Forum Replies&amp;quot; both of which are defined to exist within the &amp;quot;Forums&amp;quot; application. The forums application types, forum threads content type, and forum replies content type are registered with the Telligent Community platform via [[Plugins|plugins]], specifically as an [[api-documentation:IApplicationType Plugin Type|IApplicationType]] (for the forum application type) and [[api-documentation:IContentType Plugin Type|IContentType]] (for the forum thread and forum reply content types).&lt;/p&gt;
&lt;p&gt;By integrating directly using server-installed code, the forums functionality connects its data store of forum data to the platform, extending the platform&amp;#39;s &amp;quot;Group&amp;quot; container type and using other plugin types to define URLs/routes to access forum data through the Telligent Community web UI, permissions to secure forum data, as well as integrating with search, likes, bookmarks, and other platform-defined services.&lt;/p&gt;
&lt;h2&gt;&lt;a id="An_External_Example_URLs" name="An_External_Example_URLs"&gt;&lt;/a&gt;An External Example: URLs&lt;/h2&gt;
&lt;p&gt;External integrations can also make use of the content model and associated platform services via an [[Authentication|OAuth client]] and the [[REST API]]. An OAuth client is an external integration that uses the REST API to interact with the Telligent Community platform. OAuth clients can use Telligent Community services on external URLs.&lt;/p&gt;
&lt;p&gt;In this situation, the OAuth client represents an application in the content model, extending the top-level group (container) of the Telligent Community site. URLs referenced using the OAuth client when interacting with the REST API are interpreted as content associated to the OAuth client within Telligent Community. This enables the OAuth client (external integration) to use platform-defined services such as bookmarking, liking, commenting, rating on data not stored within Telligent Community but able to be referenced by a unique URL.&lt;/p&gt;
&lt;h2&gt;&lt;a id="Content_and_Core_Services" name="Content_and_Core_Services"&gt;&lt;/a&gt;Content and Core Services&lt;/h2&gt;
&lt;p&gt;As mentioned earlier, Telligent Community provides global services to interact with data socially. These &amp;quot;core services&amp;quot; act on the content model. Some examples of core services provided by the Telligent Community platform and how they interact with the content model is below:&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-12-83/1018.png"&gt;&lt;img src="/resized-image/__size/1040x0/__key/communityserver-wikis-components-files/00-00-00-12-83/1018.png" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;&lt;a id="How_do_I_interact_with_the_Content_Model" name="How_do_I_interact_with_the_Content_Model"&gt;&lt;/a&gt;How do I interact with the Content Model?&lt;/h2&gt;
&lt;p&gt;How you use the content model depends largely on whether you&amp;#39;re implementing an external integration, integrating using plugins installed within Telligent Community, or using content while customizing the Telligent Community user interface:&lt;/p&gt;
&lt;h3&gt;&lt;a id="Within_an_External_Integration" name="Within_an_External_Integration"&gt;&lt;/a&gt;Within an External Integration&lt;/h3&gt;
&lt;p&gt;With an [[External Integration|external integration]], you&amp;#39;re primarily interacting with Telligent Community using [[REST API|the REST API]]. You can use the installed content model implementations (groups, blogs, forums, etc) regardless of how you [[Authentication|authenticate your REST requests]].&lt;/p&gt;
&lt;p&gt;If you want to use Telligent Community services on external content, you can [[Authentication|authenticate your REST requests using OAuth]]. By using an OAuth client, you can reference URLs within the context of your OAuth client and use Telligent Community&amp;#39;s content services by providing a &lt;code&gt;ContentUrl&lt;/code&gt; to supporting services via their REST APIs.&lt;/p&gt;
&lt;h3&gt;&lt;a id="Using_Plugins_Installed_within_Telligent_Community" name="Using_Plugins_Installed_within_Telligent_Community"&gt;&lt;/a&gt;Using Plugins Installed within Telligent Community&lt;/h3&gt;
&lt;p&gt;[[Plugins]] can interact with content generically or specifically using the [[In-Process API|in-process API]] to automate existing behavior or to expose functionality on existing content in a new way.&lt;/p&gt;
&lt;p&gt;The Telligent Community platform also enables the implementation of new content model entities and types via content-related plugins: [[api-documentation:IContainerType Plugin Type|IContainerType]],&amp;nbsp;[[api-documentation:IApplicationType Plugin Type|IApplicationType]],&amp;nbsp;and [[api-documentation:IContentType Plugin Type|IContentType]]. These base plugin types can be extended to add support for Telligent Community services via extensions to these base plugin types. For an example of implementing a custom application, see [[Creating Custom Applications and Content]] and [[Adding Core Service Support to Content]].&lt;/p&gt;
&lt;h3&gt;&lt;a id="When_Customizing_the_User_Interface" name="When_Customizing_the_User_Interface"&gt;&lt;/a&gt;When Customizing the User Interface&lt;/h3&gt;
&lt;p&gt;[[Widgets]] can interact with content generically or specifically using the widget API to expose existing data in a new way.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;
</description></item></channel></rss>