diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-11-09 18:25:18 -0800 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-11-09 18:25:18 -0800 |
commit | c0260ff7018c1f29cf27d6fdb6ff6c7e4db5fff4 (patch) | |
tree | 313727f60ed334b1907e2e13e80763b2100b876d /doc/hook/smilie.bb | |
parent | fba2603304353f83a54addf2b6b8acb52fa7ee87 (diff) | |
download | volse-hubzilla-c0260ff7018c1f29cf27d6fdb6ff6c7e4db5fff4.tar.gz volse-hubzilla-c0260ff7018c1f29cf27d6fdb6ff6c7e4db5fff4.tar.bz2 volse-hubzilla-c0260ff7018c1f29cf27d6fdb6ff6c7e4db5fff4.zip |
more doco
Diffstat (limited to 'doc/hook/smilie.bb')
-rw-r--r-- | doc/hook/smilie.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/hook/smilie.bb b/doc/hook/smilie.bb index cea3e0c94..575acc178 100644 --- a/doc/hook/smilie.bb +++ b/doc/hook/smilie.bb @@ -1 +1,19 @@ [h2]smilie[/h2] + + +Called when processing translation of emoticons. It is passed an array containing two sub-arrays: + + array( + 'texts' => array('text1','text2',...), + 'icons' => array('icon1','icon2',...) + ); + + texts is the emoticon text - for example ':-)' for a traditional smile face. + icons is the HTML used as a replacement. For example + '<img class="smiley" src="https://localhost/images/smiley-smile.gif" alt=":-)" />' + + If adding or removing an entry from either array, the corresponding element from the matching array must also + be added or removed. Emoticons less than three characters in length or not recommended as they get triggered + incorrectly quite often. Extended emoticons are indicated by convention using a preceding colon, for example + + :walrus_kissing_a_baby
\ No newline at end of file |