]> jfr.im git - irc/unrealircd/unrealircd-webpanel-plugins.git/commitdiff
'cursed': Add screenshot and change name
authorValerie Pond <redacted>
Tue, 27 Jun 2023 09:46:48 +0000 (10:46 +0100)
committerValerie Pond <redacted>
Tue, 27 Jun 2023 09:46:48 +0000 (10:46 +0100)
cursed/README.md [deleted file]
emoji_trail/README.md [new file with mode: 0644]
emoji_trail/emoji_trail.php [moved from cursed/cursed.php with 83% similarity]
emoji_trail/screenshots/emoji-trail.png [new file with mode: 0644]

diff --git a/cursed/README.md b/cursed/README.md
deleted file mode 100644 (file)
index 1bfb6dc..0000000
+++ /dev/null
@@ -1 +0,0 @@
-This plugin is cursed.
diff --git a/emoji_trail/README.md b/emoji_trail/README.md
new file mode 100644 (file)
index 0000000..32f2440
--- /dev/null
@@ -0,0 +1,11 @@
+Introducing the captivating and interactive Emoji Trail Plugin, a revolutionary addition to your web panel that will bring a whole new level of excitement and charm to your user experience. Imagine a magical trail of emojis gracefully following your cursor as you navigate through your website, leaving a delightful mark wherever you go.
+
+With the Emoji Trail Plugin, every movement of your cursor becomes an enchanting journey, as vibrant and expressive emojis seamlessly spawn and elegantly fade behind your every step. Watch as an array of playful symbols, from smiling faces and hearts to animals and objects, form an ephemeral path that captivates the attention of your visitors.
+
+This innovative plugin takes customization to the next level, allowing you to choose from a vast selection of emojis to match your website's style and personality. Whether you prefer a touch of whimsy with animated emojis or a more minimalistic approach with simple symbols, the possibilities are endless. Make your website truly your own by tailoring the emoji trail to reflect your brand or message, creating a truly immersive and memorable user experience.
+
+The Emoji Trail Plugin is not only visually appealing but also adds an interactive element to engage and entertain your users. As they navigate through your web panel, they will be entranced by the lively trail of emojis, providing a sense of playfulness and interactivity that keeps them engaged and eager to explore further. This captivating feature is perfect for a wide range of applications, including gaming platforms, online communities, e-commerce websites, and personal blogs.
+
+Moreover, the plugin offers seamless integration with your existing web panel, ensuring a hassle-free implementation process. Whether you are an experienced developer or a web enthusiast, the Emoji Trail Plugin is designed to be user-friendly, allowing you to effortlessly install and configure it within minutes. Its lightweight design ensures optimal performance and compatibility across various browsers and devices, guaranteeing a smooth and consistent experience for all your visitors.
+
+Enhance your web panel and make a lasting impression on your users with the Emoji Trail Plugin. Transform your website into an immersive wonderland, where every cursor movement leaves behind a trail of emojis, delighting visitors and creating an unforgettable visual journey. Embrace the power of interactive design and let the Emoji Trail Plugin add a touch of magic to your online presence. Get ready to watch your visitors smile, engage, and connect with your content in a whole new way.
similarity index 83%
rename from cursed/cursed.php
rename to emoji_trail/emoji_trail.php
index 196a99f5d10d64270f2ad0eee7fe177a3eed9a69..5c65c0c415e996de9ea832f472c01a2fff62937c 100644 (file)
@@ -1,26 +1,27 @@
 <?php
 /**
-  @title Cursed
+  @title Emoji Trail
   @author Valware
-  @description This plugin is cursed.
+  @description This plugin is emoji_trail.
   @contact valerie@valware.co.uk
   @version 1.0
   @tested 0.9
   @minver 0.9
   @maxver *
   @license GPLv3
+  @screenshot https://github.com/unrealircd/unrealircd-webpanel-plugins/blob/main/emoji_trail/screenshots/emoji-trail.png?raw=true
   @icon https://i.guim.co.uk/img/media/a1b7129c950433c9919f5670c92ef83aa1c682d9/55_344_1971_1183/master/1971.jpg?width=1200&height=900&quality=85&auto=format&fit=crop&s=88ba2531f114b9b58b9cb2d8e723abe1
 */
 
-class cursed
+class emoji_trail
 {
        /* You must specify these here for internal use
         * All of these are mandatory or your plugin will not work.
        */
-       public $name = "cursed"; // Name of your plugin
+       public $name = "emoji_trail"; // Name of your plugin
        public $author = "Valware"; // Name or handle of your lovely self
        public $version = "1.0"; // Version of this plugin
-       public $description = "Adds cursed stuff"; // Description of your beautiful plugin
+       public $description = "Adds emoji_trail stuff"; // Description of your beautiful plugin
        public $email = "v.a.pond@outlook.com"; // An email people can contact you with in case of problems
 
        /** This is run on plugin load. You can add hooks and initialize whatever databases
@@ -29,10 +30,10 @@ class cursed
        function __construct()
        {
                
-               Hook::func(HOOKTYPE_PRE_HEADER, 'cursed::do_cursed_shit'); 
+               Hook::func(HOOKTYPE_PRE_HEADER, 'emoji_trail::do_emoji_trail_shit'); 
        }
 
-       public static function do_cursed_shit(&$pages)
+       public static function do_emoji_trail_shit(&$pages)
        {
                ?>
                <style>
diff --git a/emoji_trail/screenshots/emoji-trail.png b/emoji_trail/screenshots/emoji-trail.png
new file mode 100644 (file)
index 0000000..d38be2f
Binary files /dev/null and b/emoji_trail/screenshots/emoji-trail.png differ