PluginProbe
Insert Html Snippet / 1.2.1
Insert Html Snippet v1.2.1
1.4.6 trunk 1.0 1.0.1 1.1 1.1.1 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.3 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.4 1.4.1 1.4.2 1.4.3 All 27 releases
insert-html-snippet / admin / admin-notices.php

admin-notices.php in Insert Html Snippet 1.2.1, at admin/admin-notices.php

75 lines 4.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <style>
2 #TB_window { width:50% !important; height: 100px !important;
3 margin-left: 25% !important;
4 left: 0% !important;
5 }
6 </style>
7 <?php add_thickbox();?>
8 <script type="text/javascript">
9 function share_html_code_snippet(){
10 tb_show("Share on","#TB_inline?width=500&amp;height=75&amp;inlineId=show_share_icons_ihs&class=thickbox");
11 }
12 </script>
13
14
15
16 <?php
17 function wp_ihsap_admin_notice()
18 {
19
20 $sharelink_text_array_ihs = array
21 (
22 "I use Insert HTML Code Snippet wordpress plugin from @xyzscripts and you should too.",
23 "Insert HTML Code Snippet wordpress plugin from @xyzscripts is awesome",
24 "Thanks @xyzscripts for developing such a wonderful wordpress plugin for inserting html",
25 "I was looking for a HTML Code Snippet insertion plugin and I found this. Thanks @xyzscripts",
26 "Its very easy to use Insert HTML Code Snippet wordpress plugin from @xyzscripts",
27 "I installed Insert HTML Code Snippet from @xyzscripts,it works flawlessly",
28 "Insert HTML Code Snippet wordpress plugin that i use works terrific",
29 "I am using Insert HTML Code Snippet wordpress plugin from @xyzscripts and I like it",
30 "The Insert HTML Code Snippet plugin from @xyzscripts is simple and works fine",
31 "I've been using this Snippet plugin for a while now and it is really good",
32 "Insert HTML Code Snippet wordpress plugin is a fantastic plugin",
33 "Insert HTML Code Snippet wordpress plugin is easy to use and works great. Thank you!",
34 "Good and flexible Insert HTML Code Snippet plugin especially for beginners",
35 "The best Insert HTML Code Snippet wordpress plugin I have used ! THANKS @xyzscripts",
36 );
37 $sharelink_text_ihs = array_rand($sharelink_text_array_ihs, 1);
38 $sharelink_text_ihs = $sharelink_text_array_ihs[$sharelink_text_ihs];
39
40
41 echo '<div id="ihs_notice_td" class="error" style="color: #666666;margin-left: 2px;background: none repeat scroll 0pt 0pt infobackground; border: 1px solid inactivecaption; padding: 5px;line-height:16px;">
42 <p>It looks like you have been enjoying using <a href="https://wordpress.org/plugins/insert-html-snippet/" target="_blank"> Insert HTML Code Snippet </a> plugin from Xyzscripts for atleast 30 days.Would you consider supporting us with the continued development of the plugin using any of the below methods?</p>
43 <p>
44 <a href="https://wordpress.org/support/view/plugin-reviews/insert-html-snippet" class="button" style="color:black;text-decoration:none;margin-right:4px;" target="_blank">Rate it 5�
45 \'s on wordpress</a>';
46 if(get_option('xyz_credit_link')=="0")
47 echo '<a class="button xyz_ihs_backlink" style="color:black;text-decoration:none;margin-right:4px;" target="_blank">Enable Backlink</a>';
48
49 echo '<a class="button" onclick=share_html_code_snippet(); style="color:black;text-decoration:none;margin-right:4px;">Share on</a>
50
51 <a href="admin.php?page=insert-html-snippet-settings&ihsap_notice=hide" class="button" style="color:black;text-decoration:none;margin-right:4px;">Don\'t Show This Again</a>
52 </p>
53
54 <div id="show_share_icons_ihs" style="display: none;">
55 <a class="button" style="background-color:#3b5998;color:white;margin-right:4px;margin-left:100px;margin-top: 25px;" href="http://www.facebook.com/sharer/sharer.php?u=https://wordpress.org/plugins/insert-html-snippet/&text='.$sharelink_text_ihs.'" target="_blank">Facebook</a>
56 <a class="button" style="background-color:#00aced;color:white;margin-right:4px;margin-left:20px;margin-top: 25px;" href="http://twitter.com/share?url=https://wordpress.org/plugins/insert-html-snippet/&text='.$sharelink_text_ihs.'" target="_blank">Twitter</a>
57 <a class="button" style="background-color:#007bb6;color:white;margin-right:4px;margin-left:20px;margin-top: 25px;" href="http://www.linkedin.com/shareArticle?mini=true&url=https://wordpress.org/plugins/insert-html-snippet/" target="_blank">LinkedIn</a>
58 <a class="button" style="background-color:#dd4b39;color:white;margin-right:4px;margin-left:20px;margin-top: 25px;" href="https://plus.google.com/share?&hl=en&url=https://wordpress.org/plugins/insert-html-snippet/" target="_blank">google+</a>
59 </div>
60 </div>';
61
62 }
63 $ihsap_installed_date = get_option('ihsap_installed_date');
64 if ($ihsap_installed_date=="") {
65 $ihsap_installed_date = time();
66 }
67
68 if($ihsap_installed_date < ( time() - (30*24*60*60) ))
69 {
70 if (get_option('xyz_ihsap_dnt_shw_notice') != "hide")
71 {
72 add_action('admin_notices', 'wp_ihsap_admin_notice');
73 }
74 }
75 ?>