Skip to content

Commit b4e0f36

Browse files
committed
Summer Update
Release 2.3.2 is a minor release that contains the following: * Update Element Changer to close issue 25 (implemented on the first of May) * Update relevant documentation (correct some accidents, change table order to have identifiers last, and change example icon to a CC0 by https://seekicon.com/artist/kameleon)
1 parent 8612fe1 commit b4e0f36

File tree

6 files changed

+70
-67
lines changed

6 files changed

+70
-67
lines changed

altervp/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const AlterVP = {
5757
}
5858
};
5959
</script>
60-
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].1/altervp/altervp.js" type="text/javascript"></script>
60+
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].2/altervp/altervp.js" type="text/javascript"></script>
6161
```
6262
Alternatively, you can use our CDN:
6363
```html

cpanel-logo-to-copyright/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The full code, using jsDelivr:
4646
}
4747
4848
</script>
49-
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].1/cpanel-logo-to-copyright/cpanel-logo-to-copyright.js" type="text/javascript"></script>
49+
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].2/cpanel-logo-to-copyright/cpanel-logo-to-copyright.js" type="text/javascript"></script>
5050
```
5151
Alternatively, you can use our CDN:
5252
```html

dropdown-bug-fix/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To solve this, we need an external service which adds the correct type, like jsD
1818

1919
The full code, using jsDelivr:
2020
```html
21-
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].1/dropdown-bug-fix/dropdown-bug-fix.js" type="text/javascript"></script>
21+
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].2/dropdown-bug-fix/dropdown-bug-fix.js" type="text/javascript"></script>
2222
```
2323
Alternatively, you can use our CDN:
2424
```html

element-changer/README.md

+65-62
Original file line numberDiff line numberDiff line change
@@ -12,76 +12,26 @@ You'll first need to declare an array with the name ``changeElements`` within a
1212

1313
To add an element, you will need to create an object with the following properties that we'll analyze afterwards:
1414
```js
15-
{name: "Element Identifier", action: "add", group: "Group name", link: "#link", icon: "URL to icon", search_text: "words for the search bar divided with spaces"}
15+
{action: "add", name: "Element name", group: "Group name", link: "#link", icon: "URL to icon", search_text: "words for the search bar divided with spaces"}
1616
```
1717
To change an element, you will need to create an object with the following properties that we'll analyze afterwards:
1818
```js
19-
{name: "Element Identifier", action: "modify", attr: "attribute", value: "new value"}
19+
{action: "modify", name: "Element identifier", attr: "attribute", value: "new value"}
2020
```
2121
To remove an element, the object will be structured like this:
2222
```js
23-
{name: "Element Identifier", action: "remove"}
23+
{action: "remove", name: "Element identifier"}
2424
```
25-
**Element Identifier can be found in the table below.**
2625

2726
### Properties
28-
#### Common Properties
29-
In `name`, you'll assign an identifier that corresponds with the table below.
30-
Find the **item name** you wanted to change/remove, then assign the **identifier** of said **item name** to the `name` property.
31-
32-
| group | **identifier** | item name |
33-
|-------------|---------------------------|----------------------------|
34-
| preferences | change_password | Change Password |
35-
| preferences | change_language | Change Language |
36-
| preferences | contact_information | Update Contact Email |
37-
| preferences | backup_wizard | Getting Started |
38-
| preferences | two_factor_authentication | Account Upgrades |
39-
| preferences | user_manager | Account Settings |
40-
| files | file_manager | Online File Manager |
41-
| files | directory_privacy | Directory Privacy |
42-
| files | disk_usage | Disk Usage |
43-
| files | ftp_accounts | FTP Accounts |
44-
| files | ftp_connections | Free FTP Software |
45-
| files | backup | Backups |
46-
| databases | php_my_admin | phpMyAdmin |
47-
| databases | mysql_databases | MySQL Databases |
48-
| databases | remote_mysql | Remote MySQL |
49-
| databases | postgresql_databases | PostgreSQL Databases |
50-
| domains | addon_domains | Addon Domains |
51-
| domains | subdomains | Sub Domains |
52-
| domains | aliases | Aliases (Parked Domains) |
53-
| domains | redirects | Redirects |
54-
| email | accounts | Email Accounts |
55-
| email | forwarders | Forwarders |
56-
| email | mx_entry | MX Entry |
57-
| email | advanced_zone_editor | SPF Records |
58-
| email | email_filters | Webmail |
59-
| metrics | awstats | Account Statistics |
60-
| metrics | errors | Error Logs |
61-
| metrics | php | General PHP Info |
62-
| metrics | raw_access | Access Logs |
63-
| security | ip_blocker | IP Blocker |
64-
| security | ssl_tls | SSL/TLS |
65-
| software | sitereptile | SiteBuilder |
66-
| software | softaculous | Softaculous Apps Installer |
67-
| software | attracta_seotips | SEO Tools |
68-
| software | multiphp_configuration | Alter PHP Config |
69-
| software | lvephpsel | Select PHP Version |
70-
| advanced | cron_jobs | Cron Jobs |
71-
| advanced | simple_zone_editor | CNAME Records |
72-
| advanced | error_pages | Error Pages |
73-
| soft_div | soft_div_icons | Softaculous Apps Installer |
74-
| support | cloudflare_performance | Domain Types |
75-
| support | cloudflare_analytics | Tutorials |
76-
| support | attracta_seotools | Support Forum |
77-
| support | createticket | Create New Ticket |
78-
| support | ShowTickets | Open Support Tickets |
79-
| support | api_shell | Closed Support Tickets |
8027

28+
#### Common Properties
8129
The action you wish to perform will be defined in ``action``. There are three actions supported, ``add``, ``modify`` and ``remove``.
8230
If you declare no action in your object the script will assume ``modify `` to be the intended action.
8331

8432
#### Adding Elements
33+
In ``name``, you'll assign a value that corresponds with the name of the element exactly as you want it to appear on the panel.
34+
8535
In ``group``, you'll need to enter the name of the group in which you desire to add the new element in.
8636
The names might be different than the ones appearing on the panel, so we are listing them below:
8737

@@ -106,6 +56,59 @@ The names might be different than the ones appearing on the panel, so we are lis
10656
Finally, you can enter any text in ``search_text`` that will be used for the search utility the panel offers (to locate your element). Words are divided by spaces.
10757

10858
#### Changing Elements
59+
In `name`, you'll assign an identifier that corresponds with the table below.
60+
Look up the name of the item you want to change _as it appears on the panel_, then assign the **identifier** of said item name to the `name` property.
61+
62+
| Group | Item name | Identifier |
63+
|-------------|----------------------------|---------------------------|
64+
| preferences | Change Password | change_password |
65+
| preferences | Change Language | change_language |
66+
| preferences | Update Contact Email | contact_information |
67+
| preferences | Getting Started | backup_wizard |
68+
| preferences | Account Upgrades | two_factor_authentication |
69+
| preferences | Account Settings | user_manager |
70+
| files | Online File Manager | file_manager |
71+
| files | Directory Privacy | directory_privacy |
72+
| files | Disk Usage | disk_usage |
73+
| files | FTP Accounts | ftp_accounts |
74+
| files | Free FTP Software | ftp_connections |
75+
| files | Backups | backup |
76+
| databases | phpMyAdmin | php_my_admin |
77+
| databases | MySQL Databases | mysql_databases |
78+
| databases | Remote MySQL | remote_mysql |
79+
| databases | PostgreSQL Databases | postgresql_databases |
80+
| domains | Addon Domains | addon_domains |
81+
| domains | Sub Domains | subdomains |
82+
| domains | Aliases (Parked Domains) | aliases |
83+
| domains | Redirects | redirects |
84+
| email | Email Accounts | accounts |
85+
| email | Forwarders | forwarders |
86+
| email | MX Entry | mx_entry |
87+
| email | SPF Records | advanced_zone_editor |
88+
| email | Webmail | email_filters |
89+
| metrics | Account Statistics | awstats |
90+
| metrics | Error Logs | errors |
91+
| metrics | General PHP Info | php |
92+
| metrics | Access Logs | raw_access |
93+
| security | IP Blocker | ip_blocker |
94+
| security | SSL/TLS | ssl_tls |
95+
| software | SiteBuilder | sitereptile |
96+
| software | Softaculous Apps Installer | softaculous |
97+
| software | SEO Tools | attracta_seotips |
98+
| software | Alter PHP Config | multiphp_configuration |
99+
| software | Select PHP Version | lvephpsel |
100+
| advanced | Cron Jobs | cron_jobs |
101+
| advanced | CNAME Records | simple_zone_editor |
102+
| advanced | Error Pages | error_pages |
103+
| soft_div | Softaculous Apps Installer | soft_div_icons |
104+
| support | Domain Types | cloudflare_performance |
105+
| support | Tutorials | cloudflare_analytics |
106+
| support | Support Forum | attracta_seotools |
107+
| support | Create New Ticket | createticket |
108+
| support | Open Support Tickets | ShowTickets |
109+
| support | Closed Support Tickets | api_shell |
110+
111+
##### Modifying Elements
109112
``attr`` is the attribute you wish to modify. There are two main attributes:
110113
``itemdesc`` and ``url``.
111114
The first defines the name the element will have on the panel, while the second, as you can tell by the name, defines the URL for it.
@@ -117,7 +120,7 @@ Finally, ``value`` holds the new value of the element you'll be changing, for ex
117120
An example that adds an element named ``Custom`` in ``Databases`` linking to ``https://yourdomain.com`` with an image and ``custom`` as its search text can be seen below:
118121
```js
119122
var changeElements = [
120-
{name: "Custom", action: "add", group: "databases", link: "https://yourdomain.com", icon: "https://play-lh.googleusercontent.com/yPtnkXQAn6yEahOurxuYZL576FDXWn3CqewVcEWJsXlega_nSiavBvmaXwfTGktGlQ", search_text: "custom"}
123+
{name: "Custom", action: "add", group: "databases", link: "https://yourdomain.com", icon: "https://seekicon.com/free-icon-download/database-cloud_1.png", search_text: "custom"}
121124
];
122125
```
123126

@@ -149,7 +152,7 @@ We'll provide a ready code for adding our custom element from above, modifying t
149152
```html
150153
<script type="text/javascript">
151154
var changeElements = [
152-
{name: "Custom", action: "add", group: "databases", link: "https://yourdomain.com", icon: "https://play-lh.googleusercontent.com/yPtnkXQAn6yEahOurxuYZL576FDXWn3CqewVcEWJsXlega_nSiavBvmaXwfTGktGlQ", search_text: "custom"},
155+
{name: "Custom", action: "add", group: "databases", link: "https://yourdomain.com", icon: "https://seekicon.com/free-icon-download/database-cloud_1.png", search_text: "custom"},
153156
{name: "sitereptile", action: "modify", attr: "itemdesc", value: "VistaPanel Themes"},
154157
{name: "sitereptile", action: "modify", attr: "url", value: "https://vpt.cdn.wybenetwork.com"},
155158
{name: "softaculous", action: "modify", attr: "itemdesc", value: "VistaPanel Customizations"},
@@ -173,7 +176,7 @@ To solve this, we need an external service which adds the correct type, like jsD
173176

174177
The code, using jsDelivr:
175178
```html
176-
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].1/element-changer/element-changer.js" type="text/javascript"></script>
179+
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].2/element-changer/element-changer.js" type="text/javascript"></script>
177180
```
178181

179182
Alternatively, you can use our CDN:
@@ -185,7 +188,7 @@ A full code utilizing our example and our CDN:
185188
```html
186189
<script type="text/javascript">
187190
var changeElements = [
188-
{name: "Custom", action: "add", group: "databases", link: "https://yourdomain.com", icon: "https://play-lh.googleusercontent.com/yPtnkXQAn6yEahOurxuYZL576FDXWn3CqewVcEWJsXlega_nSiavBvmaXwfTGktGlQ", search_text: "custom"},
191+
{name: "Custom", action: "add", group: "databases", link: "https://yourdomain.com", icon: "https://seekicon.com/free-icon-download/database-cloud_1.png", search_text: "custom"},
189192
{name: "sitereptile", action: "modify", attr: "itemdesc", value: "VistaPanel Themes"},
190193
{name: "sitereptile", action: "modify", attr: "url", value: "https://vpt.cdn.wybenetwork.com"},
191194
{name: "softaculous", action: "modify", attr: "itemdesc", value: "VistaPanel Customizations"},
@@ -202,5 +205,5 @@ var changeElements = [
202205
## Changelog
203206
* Created on 15th September 2022 by [Anyx](https://github.com/4yx)
204207
* Modified on 15th September 2022 by [PlanetCloud](https://github.com/PlanetTheCloud)
205-
* Modifier on 19th September 2022 by [PlanetCloud](https://github.com/PlanetTheCloud)
206-
* Last modified on 1st May 2022 by [PlanetTheCloud (Aka PlanetCloud)](https://github.com/PlanetTheCloud)
208+
* Modified on 19th September 2022 by [PlanetCloud](https://github.com/PlanetTheCloud)
209+
* Last modified on 1st May 2022 by [PlanetCloud](https://github.com/PlanetTheCloud)

responsive-domain-search/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The full code, using jsDelivr:
3232
affCode = "AFFILIATE_CODE_HERE";
3333
*/
3434
</script>
35-
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].1/responsive-domain-search/responsive-domain-search.js" type="text/javascript"></script>
35+
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].2/responsive-domain-search/responsive-domain-search.js" type="text/javascript"></script>
3636
```
3737
Alternatively, you can use our CDN:
3838
```html

sidebar-bug-fix/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To solve this, we need an external service which adds the correct type, like jsD
1919

2020
The full code, using jsDelivr:
2121
```html
22-
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].1/sidebar-bug-fix/sidebar-bug-fix.js" type="text/javascript"></script>
22+
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].2/sidebar-bug-fix/sidebar-bug-fix.js" type="text/javascript"></script>
2323
```
2424
Alternatively, you can use our CDN:
2525
```html

0 commit comments

Comments
 (0)