-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 1.0.4 - Added and updated Snippets - Znuny 7.0.
- Loading branch information
1 parent
ffab6c0
commit 9e4f523
Showing
1,375 changed files
with
6,490 additions
and
3,217 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"install": "messages/install.txt", | ||
"1.0.2": "messages/version.txt" | ||
"1.0.4": "messages/version.txt" | ||
} |
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
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
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
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
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
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
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
19 changes: 19 additions & 0 deletions
19
snippets/Functions/ActivityObject/znuny.ActivityObject.Add.sublime-snippet
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
${1:my \$CreatedID = \$ActivityObject->Add( | ||
ID => '...', | ||
Type => '...', | ||
Title => '...', | ||
Text => '...', | ||
State => '...', | ||
Link => '...', | ||
CreateTime => '...', | ||
CreateBy => '...', | ||
UserID => \$UserID, | ||
);} | ||
]]></content> | ||
<tabTrigger>znuny.ActivityObject.Add</tabTrigger> | ||
<description>7.0</description> | ||
<scope>source.perl</scope> | ||
</snippet> |
19 changes: 19 additions & 0 deletions
19
snippets/Functions/ActivityObject/znuny.ActivityObject.DataAdd.sublime-snippet
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
${1:my \$CreatedID = \$ActivityObject->DataAdd( | ||
ID => '...', | ||
Type => '...', | ||
Title => '...', | ||
Text => '...', | ||
State => '...', | ||
Link => '...', | ||
CreateTime => '...', | ||
CreateBy => '...', | ||
UserID => \$UserID, | ||
);} | ||
]]></content> | ||
<tabTrigger>znuny.ActivityObject.DataAdd</tabTrigger> | ||
<description>7.0</description> | ||
<scope>source.perl</scope> | ||
</snippet> |
19 changes: 19 additions & 0 deletions
19
snippets/Functions/ActivityObject/znuny.ActivityObject.DataDelete.sublime-snippet
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
${1:my \$Success = \$ActivityObject->DataDelete( | ||
ID => '...', # optional | ||
Type => '...', # optional | ||
Title => '...', # optional | ||
Text => '...', # optional | ||
State => '...', # optional | ||
Link => '...', # optional | ||
CreateTime => '...', # optional | ||
CreateBy => '...', # optional | ||
UserID => \$UserID, | ||
);} | ||
]]></content> | ||
<tabTrigger>znuny.ActivityObject.DataDelete</tabTrigger> | ||
<description>7.0</description> | ||
<scope>source.perl</scope> | ||
</snippet> |
19 changes: 19 additions & 0 deletions
19
snippets/Functions/ActivityObject/znuny.ActivityObject.DataGet.sublime-snippet
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
${1:my %Data = \$ActivityObject->DataGet( | ||
ID => '...', # optional | ||
Type => '...', # optional | ||
Title => '...', # optional | ||
Text => '...', # optional | ||
State => '...', # optional | ||
Link => '...', # optional | ||
CreateTime => '...', # optional | ||
CreateBy => '...', # optional | ||
UserID => \$UserID, | ||
);} | ||
]]></content> | ||
<tabTrigger>znuny.ActivityObject.DataGet</tabTrigger> | ||
<description>7.0</description> | ||
<scope>source.perl</scope> | ||
</snippet> |
19 changes: 19 additions & 0 deletions
19
snippets/Functions/ActivityObject/znuny.ActivityObject.DataListGet.sublime-snippet
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
${1:my @Data = \$ActivityObject->DataListGet( | ||
ID => '...', # optional | ||
Type => '...', # optional | ||
Title => '...', # optional | ||
Text => '...', # optional | ||
State => '...', # optional | ||
Link => '...', # optional | ||
CreateTime => '...', # optional | ||
CreateBy => '...', # optional | ||
UserID => \$UserID, | ||
);} | ||
]]></content> | ||
<tabTrigger>znuny.ActivityObject.DataListGet</tabTrigger> | ||
<description>7.0</description> | ||
<scope>source.perl</scope> | ||
</snippet> |
20 changes: 20 additions & 0 deletions
20
snippets/Functions/ActivityObject/znuny.ActivityObject.DataSearch.sublime-snippet
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
${1:my %Data = \$ActivityObject->DataSearch( | ||
Search => 'test*test', | ||
ID => '...', # optional | ||
Type => '...', # optional | ||
Title => '...', # optional | ||
Text => '...', # optional | ||
State => '...', # optional | ||
Link => '...', # optional | ||
CreateTime => '...', # optional | ||
CreateBy => '...', # optional | ||
UserID => \$UserID, | ||
);} | ||
]]></content> | ||
<tabTrigger>znuny.ActivityObject.DataSearch</tabTrigger> | ||
<description>7.0</description> | ||
<scope>source.perl</scope> | ||
</snippet> |
13 changes: 13 additions & 0 deletions
13
snippets/Functions/ActivityObject/znuny.ActivityObject.DataUpdate.sublime-snippet
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
${1:my \$Success = \$ActivityObject->DataUpdate( | ||
ID => 1234, | ||
UserID => \$UserID, | ||
# all other attributes are optional | ||
);} | ||
]]></content> | ||
<tabTrigger>znuny.ActivityObject.DataUpdate</tabTrigger> | ||
<description>7.0</description> | ||
<scope>source.perl</scope> | ||
</snippet> |
19 changes: 19 additions & 0 deletions
19
snippets/Functions/ActivityObject/znuny.ActivityObject.Get.sublime-snippet
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
${1:my \$Success = \$ActivityObject->Get(); | ||
ID => 1, | ||
Type => '...', # optional | ||
Title => '...', # optional | ||
Text => '...', # optional | ||
State => '...', # optional | ||
Link => '...', # optional | ||
CreateTime => '...', # optional | ||
CreateBy => '...', # optional | ||
UserID => \$UserID, | ||
);} | ||
]]></content> | ||
<tabTrigger>znuny.ActivityObject.Get</tabTrigger> | ||
<description>7.0</description> | ||
<scope>source.perl</scope> | ||
</snippet> |
14 changes: 14 additions & 0 deletions
14
snippets/Functions/ActivityObject/znuny.ActivityObject.GetLink.sublime-snippet
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
${1:my \$String = \$ActivityObject->GetLink( | ||
TicketID => \$TicketID, | ||
# OR: | ||
ApointmentID => \$ApointmentID, | ||
);} | ||
]]></content> | ||
<tabTrigger>znuny.ActivityObject.GetLink</tabTrigger> | ||
<description>7.0</description> | ||
<scope>source.perl</scope> | ||
</snippet> |
9 changes: 9 additions & 0 deletions
9
snippets/Functions/ActivityObject/znuny.ActivityObject.InitConfig.sublime-snippet
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
${1:my \$Success = \$ActivityObject->InitConfig();} | ||
]]></content> | ||
<tabTrigger>znuny.ActivityObject.InitConfig</tabTrigger> | ||
<description>7.0</description> | ||
<scope>source.perl</scope> | ||
</snippet> |
19 changes: 19 additions & 0 deletions
19
snippets/Functions/ActivityObject/znuny.ActivityObject.ListGet.sublime-snippet
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
${1:my @Activities = \$ActivityObject->ListGet( | ||
ID => '...', # optional | ||
Type => '...', # optional | ||
Title => '...', # optional | ||
Text => '...', # optional | ||
State => '...', # optional | ||
Link => '...', # optional | ||
CreateTime => '...', # optional | ||
CreateBy => '...', # optional | ||
UserID => \$UserID, | ||
);} | ||
]]></content> | ||
<tabTrigger>znuny.ActivityObject.ListGet</tabTrigger> | ||
<description>7.0</description> | ||
<scope>source.perl</scope> | ||
</snippet> |
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
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
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
Oops, something went wrong.