PluginProbe
Insert Html Snippet / 1.2.2
Insert Html Snippet v1.2.2
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.2, at admin/admin-notices.php

71 lines 4.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 function wp_ihs_admin_notice()
3 {
4 add_thickbox();
5 $sharelink_text_array_ihs = array
6 (
7 "I use Insert HTML Snippet wordpress plugin from @xyzscripts and you should too.",
8 "Insert HTML Snippet wordpress plugin from @xyzscripts is awesome",
9 "Thanks @xyzscripts for developing such a wonderful wordpress plugin for inserting html",
10 "I was looking for a HTML Snippet insertion plugin and I found this. Thanks @xyzscripts",
11 "Its very easy to use Insert HTML Snippet wordpress plugin from @xyzscripts",
12 "I installed Insert HTML Snippet from @xyzscripts,it works flawlessly",
13 "Insert HTML Snippet wordpress plugin that i use works terrific",
14 "I am using Insert HTML Snippet wordpress plugin from @xyzscripts and I like it",
15 "The Insert HTML Snippet plugin from @xyzscripts is simple and works fine",
16 "I've been using this Snippet plugin for a while now and it is really good",
17 "Insert HTML Snippet wordpress plugin is a fantastic plugin",
18 "Insert HTML Snippet wordpress plugin is easy to use and works great. Thank you!",
19 "Good and flexible Insert HTML Snippet plugin especially for beginners",
20 "The best Insert HTML Snippet wordpress plugin I have used ! THANKS @xyzscripts",
21 );
22 $sharelink_text_ihs = array_rand($sharelink_text_array_ihs, 1);
23 $sharelink_text_ihs = $sharelink_text_array_ihs[$sharelink_text_ihs];
24
25
26 echo '<style>
27 #TB_window { width:50% !important; height: 100px !important;
28 margin-left: 25% !important;
29 left: 0% !important;
30 }
31 </style>
32 <script type="text/javascript">
33 function share_html_snippet(){
34 tb_show("Share on","#TB_inline?width=500&amp;height=75&amp;inlineId=show_share_icons_ihs&class=thickbox");
35 }
36 </script>
37 <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;">
38 <p>It looks like you have been enjoying using <a href="https://wordpress.org/plugins/insert-html-snippet/" target="_blank"> Insert HTML 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>
39 <p>
40 <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�
41 \'s on wordpress</a>';
42 if(get_option('xyz_credit_link')=="0")
43 echo '<a class="button xyz_ihs_backlink" style="color:black;text-decoration:none;margin-right:4px;" target="_blank">Enable Backlink</a>';
44
45 echo '<a class="button" onclick=share_html_snippet(); style="color:black;text-decoration:none;margin-right:4px;">Share on</a>
46
47 <a href="admin.php?page=insert-html-snippet-settings&ihs_notice=hide" class="button" style="color:black;text-decoration:none;margin-right:4px;">Don\'t Show This Again</a>
48 </p>
49
50 <div id="show_share_icons_ihs" style="display: none;">
51 <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>
52 <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>
53 <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>
54 <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>
55 </div>
56 </div>';
57
58 }
59 $ihsap_installed_date = get_option('ihsap_installed_date');
60 if ($ihsap_installed_date=="") {
61 $ihsap_installed_date = time();
62 }
63
64 if($ihsap_installed_date < ( time() - (30*24*60*60) ))
65 {
66 if (get_option('xyz_ihs_dnt_shw_notice') != "hide")
67 {
68 add_action('admin_notices', 'wp_ihs_admin_notice');
69 }
70 }
71 ?>