Last active
August 17, 2017 13:15
Revisions
-
Sentinel-7 revised this gist
Aug 17, 2017 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1 +0,0 @@ -
Sentinel-7 revised this gist
Aug 17, 2017 . 3 changed files with 30 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ {'!Sendex' | snippet : [ 'id' => '1' 'tplActivate' => 'tpl.Sendex.activate' ]} This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ <?php if ($_GET['sx_subscribed']) { return '<div id="sendex" class="uk-modal"> <div class="uk-modal-dialog"> <a class="uk-modal-close uk-close"></a> Письмо-подтверждение отправлено на почту. Перейдите по ссылке из письма. </div> </div>'; } if ($_GET['sx_confirmed']) { return '<div id="sendex" class="uk-modal"> <div class="uk-modal-dialog"> <a class="uk-modal-close uk-close"></a> Вы успешно подписаны на еженедельную email рассылку сайта. </div> </div>'; } if ($_GET['sx_unsubscribed']) { return '<div id="sendex" class="uk-modal"> <div class="uk-modal-dialog"> <a class="uk-modal-close uk-close"></a> Вы успешно отписаны от рассылки новых статей сайта. </div> </div> '; } This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ /tretr -
Sentinel-7 created this gist
Aug 17, 2017 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ <script> $(function() { var modal = UIkit.modal("#sendex"); modal.show(); }); </script>