· 6 years ago · Mar 23, 2020, 03:16 PM
1Search "smileys" (57 hits in 10 files)
2 C:\Users\Equipo\Desktop\Simple Forum v1.4.0\app\config\smileys.php (4 hits)
3 Line 6: | SMILEYS
4 Line 8: | This file contains an array of smileys for use with the emoticon helper.
5 Line 9: | Individual images can be used to replace multiple smileys. For example:
6 Line 17: $smileys = array(
7 C:\Users\Equipo\Desktop\Simple Forum v1.4.0\app\core\MY_Controller.php (4 hits)
8 Line 33: $smileys[] = array('name' => $icon[3], 'src' => $this->data['assets'].'smileys/'.$icon[0], 'shortcode' => $key);
9 Line 33: $smileys[] = array('name' => $icon[3], 'src' => $this->data['assets'].'smileys/'.$icon[0], 'shortcode' => $key);
10 Line 35: $this->data['smileys'] = json_encode($smileys);
11 Line 35: $this->data['smileys'] = json_encode($smileys);
12 C:\Users\Equipo\Desktop\Simple Forum v1.4.0\app\libraries\Tec.php (1 hit)
13 Line 111: $contents = parse_smileys($this->tec->decode_html($this->tec->decode_html($this->bbcode->tohtml($body, true))), base_url('themes/default/assets/components/sceditor/emoticons/'), $emoticons);
14 C:\Users\Equipo\Desktop\Simple Forum v1.4.0\lib\helpers\smiley_helper.php (37 hits)
15 Line 137: if ( ! function_exists('get_clickable_smileys'))
16 Line 140: * Get Clickable Smileys
17 Line 149: function get_clickable_smileys($image_url, $alias = '')
18 Line 154: $smileys = $alias;
19 Line 156: elseif (FALSE === ($smileys = _get_smiley_array()))
20 Line 165: foreach ($smileys as $key => $val)
21 Line 169: // :-) and :) might be replaced with the same image so both smileys
22 Line 171: if (isset($used[$smileys[$key][0]]))
23 Line 176: $link[] = '<a href="javascript:void(0);" onclick="insert_smiley(\''.$key.'\', \''.$alias.'\')"><img src="'.$image_url.$smileys[$key][0].'" alt="'.$smileys[$key][3].'" style="width: '.$smileys[$key][1].'; height: '.$smileys[$key][2].'; border: 0;" /></a>';
24 Line 176: $link[] = '<a href="javascript:void(0);" onclick="insert_smiley(\''.$key.'\', \''.$alias.'\')"><img src="'.$image_url.$smileys[$key][0].'" alt="'.$smileys[$key][3].'" style="width: '.$smileys[$key][1].'; height: '.$smileys[$key][2].'; border: 0;" /></a>';
25 Line 176: $link[] = '<a href="javascript:void(0);" onclick="insert_smiley(\''.$key.'\', \''.$alias.'\')"><img src="'.$image_url.$smileys[$key][0].'" alt="'.$smileys[$key][3].'" style="width: '.$smileys[$key][1].'; height: '.$smileys[$key][2].'; border: 0;" /></a>';
26 Line 176: $link[] = '<a href="javascript:void(0);" onclick="insert_smiley(\''.$key.'\', \''.$alias.'\')"><img src="'.$image_url.$smileys[$key][0].'" alt="'.$smileys[$key][3].'" style="width: '.$smileys[$key][1].'; height: '.$smileys[$key][2].'; border: 0;" /></a>';
27 Line 177: $used[$smileys[$key][0]] = TRUE;
28 Line 186: if ( ! function_exists('parse_smileys'))
29 Line 189: * Parse Smileys
30 Line 191: * Takes a string as input and swaps any contained smileys for the actual image
31 Line 198: function parse_smileys($str = '', $image_url = '', $smileys = NULL)
32 Line 198: function parse_smileys($str = '', $image_url = '', $smileys = NULL)
33 Line 200: if ($image_url === '' OR ( ! is_array($smileys) && FALSE === ($smileys = _get_smiley_array())))
34 Line 200: if ($image_url === '' OR ( ! is_array($smileys) && FALSE === ($smileys = _get_smiley_array())))
35 Line 208: foreach ($smileys as $key => $val)
36 Line 210: $str = str_replace($key, '<img src="'.$image_url.$smileys[$key][0].'" alt="'.$smileys[$key][3].'" style="width: '.$smileys[$key][1].'; height: '.$smileys[$key][2].'; border: 0;" />', $str);
37 Line 210: $str = str_replace($key, '<img src="'.$image_url.$smileys[$key][0].'" alt="'.$smileys[$key][3].'" style="width: '.$smileys[$key][1].'; height: '.$smileys[$key][2].'; border: 0;" />', $str);
38 Line 210: $str = str_replace($key, '<img src="'.$image_url.$smileys[$key][0].'" alt="'.$smileys[$key][3].'" style="width: '.$smileys[$key][1].'; height: '.$smileys[$key][2].'; border: 0;" />', $str);
39 Line 210: $str = str_replace($key, '<img src="'.$image_url.$smileys[$key][0].'" alt="'.$smileys[$key][3].'" style="width: '.$smileys[$key][1].'; height: '.$smileys[$key][2].'; border: 0;" />', $str);
40 Line 230: static $_smileys;
41 Line 232: if ( ! is_array($_smileys))
42 Line 234: if (file_exists(APPPATH.'config/smileys.php'))
43 Line 236: include(APPPATH.'config/smileys.php');
44 Line 239: if (file_exists(APPPATH.'config/'.ENVIRONMENT.'/smileys.php'))
45 Line 241: include(APPPATH.'config/'.ENVIRONMENT.'/smileys.php');
46 Line 244: if (empty($smileys) OR ! is_array($smileys))
47 Line 244: if (empty($smileys) OR ! is_array($smileys))
48 Line 246: $_smileys = array();
49 Line 250: $_smileys = $smileys;
50 Line 250: $_smileys = $smileys;
51 Line 253: return $_smileys;
52 C:\Users\Equipo\Desktop\Simple Forum v1.4.0\themes\default\assets\css\all.css (1 hit)
53 Line 173: .font300{font-weight:normal}.font700{font-weight:bold}*{margin:0;padding:0}*:hover,*:active,*:visited,*:focus{outline:none !important}a{color:#00a3d9}a:hover,a:active,a:focus{color:#0797c7;text-decoration:none}ul{list-style-type:none}label{display:block}html{position:relative;min-height:100%}body{line-height:1.5em;background:#ecf0f1;margin-bottom:120px;font-family:'Open Sans', sans-serif}.content{background:#ecf0f1;padding:30px 0}.header{padding:15px 0}#logo{font-size:48px;height:50px;padding:0;margin:0;text-decoration:none;font-weight:bold;display:block;max-width:300px}#logo img{width:100%;height:100%}#logo h2{line-height:50px;height:50px}.circle{width:45px;height:45px;-moz-border-radius:50%;-webkit-border-radius:50%;-ms-border-radius:50%;border-radius:50%;position:relative;display:inline-block;vertical-align:middle}.circle img{width:100%;height:100%}.circle .small-circle{width:12px;height:12px;-moz-border-radius:50%;-webkit-border-radius:50%;-ms-border-radius:50%;border-radius:50%;border:2p...
54 C:\Users\Equipo\Desktop\Simple Forum v1.4.0\themes\default\assets\css\style.css (1 hit)
55 Line 1: .font300{font-weight:normal}.font700{font-weight:bold}*{margin:0;padding:0}*:hover,*:active,*:visited,*:focus{outline:none !important}a{color:#00a3d9}a:hover,a:active,a:focus{color:#0797c7;text-decoration:none}ul{list-style-type:none}label{display:block}html{position:relative;min-height:100%}body{line-height:1.5em;background:#ecf0f1;margin-bottom:120px;font-family:'Open Sans', sans-serif}.content{background:#ecf0f1;padding:30px 0}.header{padding:15px 0}#logo{font-size:48px;height:50px;padding:0;margin:0;text-decoration:none;font-weight:bold;display:block;max-width:300px}#logo img{width:100%;height:100%}#logo h2{line-height:50px;height:50px}.circle{width:45px;height:45px;-moz-border-radius:50%;-webkit-border-radius:50%;-ms-border-radius:50%;border-radius:50%;position:relative;display:inline-block;vertical-align:middle}.circle img{width:100%;height:100%}.circle .small-circle{width:12px;height:12px;-moz-border-radius:50%;-webkit-border-radius:50%;-ms-border-radius:50%;border-radius:50%;border:2px ...
56 C:\Users\Equipo\Desktop\Simple Forum v1.4.0\themes\default\assets\css\style.sass (1 hit)
57 Line 1374: .smileys
58 C:\Users\Equipo\Desktop\Simple Forum v1.4.0\themes\default\assets\js\main.js (2 hits)
59 Line 353: emoticonsRoot: base_url + 'themes/default/assets/smileys/',
60 Line 750: emoticonsRoot: base_url + 'themes/default/assets/smileys/',
61 C:\Users\Equipo\Desktop\Simple Forum v1.4.0\themes\default\assets\js\main.min.js (2 hits)
62 Line 1: function handleEmoji(){emojify.setConfig({img_dir:base_url+"themes/default/assets/components/trumbowyg/emojify/images/basic"}),emojify.run()}toastr.options={showMethod:"fadeIn",hideMethod:"fadeOut",closeMethod:"fadeOut",closeButton:!0,progressBar:!0,showDuration:"300",hideDuration:"1000",timeOut:"5000",extendedTimeOut:"5000",showEasing:"swing",hideEasing:"swing",onclick:null},$(document).ready(function(){if($(".tip").tooltip(),$("#dob").datetimepicker({format:"YYYY-MM-DD",viewMode:"years"}),$("#date").datetimepicker({format:"YYYY-MM-DD"}),$(".topic-box, .post-box").fitVids(),$('[data-toggle="ajax-modal"]').click(function(e){e.preventDefault();var t=$(this).attr("href");return $.get(t).done(function(e){$("#myModal").html(e).modal({backdrop:"static"})}),!1}),$(".copy_api_key").click(function(e){$(this).select(),$(".help_copy_api_key").text("");try{var t=document.execCommand("copy")?"Key Copied":"Please press ctrl+c or right click to copy the api key"}catch(e){t="Oops, unable to copy, please press...
63 Line 1: function handleEmoji(){emojify.setConfig({img_dir:base_url+"themes/default/assets/components/trumbowyg/emojify/images/basic"}),emojify.run()}toastr.options={showMethod:"fadeIn",hideMethod:"fadeOut",closeMethod:"fadeOut",closeButton:!0,progressBar:!0,showDuration:"300",hideDuration:"1000",timeOut:"5000",extendedTimeOut:"5000",showEasing:"swing",hideEasing:"swing",onclick:null},$(document).ready(function(){if($(".tip").tooltip(),$("#dob").datetimepicker({format:"YYYY-MM-DD",viewMode:"years"}),$("#date").datetimepicker({format:"YYYY-MM-DD"}),$(".topic-box, .post-box").fitVids(),$('[data-toggle="ajax-modal"]').click(function(e){e.preventDefault();var t=$(this).attr("href");return $.get(t).done(function(e){$("#myModal").html(e).modal({backdrop:"static"})}),!1}),$(".copy_api_key").click(function(e){$(this).select(),$(".help_copy_api_key").text("");try{var t=document.execCommand("copy")?"Key Copied":"Please press ctrl+c or right click to copy the api key"}catch(e){t="Oops, unable to copy, please press...
64 C:\Users\Equipo\Desktop\Simple Forum v1.4.0\themes\default\assets\js\redactor-plugins.js (4 hits)
65 Line 86: var items = smileys;
66 Line 88: this.clips.template = $('<ul id="smileys-con">');
67 Line 92: var li = $('<li class="smileys">');
68 Line 111: $('#smileys-con').find('.smiley').each($.proxy(this.clips.load, this));