This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#set($list = $core_v2_user.List("%{IncludeHidden = 'True', PageSize = 100 }")) | |
#foreach($user in $list) | |
#beforeall | |
<div> | |
#before | |
<div> | |
#each | |
$core_v2_ui.GetResizedImageHtml($user.AvatarUrl, 50, 50, "%{ }") | |
<span>$user.Username</span> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#set($list = $core_v2_user.List("%{IncludeHidden = 'True', PageSize = 100 }")) | |
#foreach($user in $list) | |
#beforeall | |
<div> | |
#before | |
<div> | |
#each | |
<img src="$demo_v1_gravatar.Url($user.Id)" /> | |
<span>$user.Username</span> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#set($list = $core_v2_user.List("%{IncludeHidden = 'True', PageSize = 100 }")) | |
#foreach($user in $list) | |
#beforeall | |
<div> | |
#before | |
<div> | |
#each | |
<img src="$demo_v1_gravatar.Url($user.Id)" /> | |
<span>$user.Username</span> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DECLARE @RC int | |
DECLARE @olderThanDays int | |
DECLARE @minRemainingPerUser int | |
SET @olderThanDays = 93 | |
SET @minRemainingPerUser = 30 | |
EXECUTE @RC = [Community61DEV].[dbo].[cs_Messaging_DeleteActivityMessages] | |
@olderThanDays | |
,@minRemainingPerUser |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DECLARE @return_value int | |
EXEC @return_value = [dbo].[te_DistributedMonitor_Leases_Remove] | |
@OlderThanHours = 0 | |
SELECT 'Return Value' = @return_value | |
GO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<job schedule="10 0 1 ? * SUN" type="Telligent.Evolution.CoreServices.Recommendations.UserRecommendationCalculationJob, Telligent.Evolution.Core"> | |
<settings> | |
<add key="UserActivityCutoffInMonths" value="12" /> | |
</settings> | |
</job> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Tester | |
{ | |
public void GetForumThread() | |
{ | |
var thread = PublicApi.ForumThreads.Get(123); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Tester | |
{ | |
public void GetForumThread() | |
{ | |
var thread = PublicApi.ForumThreads.Get(123, null); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Telligent.Evolution.Extensibility.Api.Version1; | |
using Telligent.Evolution.Extensibility.Content.Version1; | |
using Telligent.Evolution.Extensibility.Version1; | |
namespace RhysGodfrey.TelligentStoryExamples | |
{ | |
public class BlogPostStoryType : Telligent.Evolution.Api.Plugins.ActivityStories.BlogPostStoryType, IActivityStoryType, IPlugin | |
{ | |
string IActivityStoryType.GetViewHtml(IActivityStory story, Target target) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Telligent.Evolution.Extensibility.Storage.Version1; | |
using Telligent.Evolution.Extensibility.UI.Version1; | |
using Telligent.Evolution.Extensibility.Version1; | |
namespace RhysGodfrey.TelligentGistExample | |
{ | |
public class GistFileViewer : IPlugin, IFileViewer | |
{ | |
public int DefaultOrderNumber |