You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Wasn't expecting a new major release so soon, but the legendary @PlanetTheCloud took the time to rewrite Element Changer in a much more efficient way. We decided the numerical system wasn't cutting it, and decided to make changing elements much easier.
Thank you, @PlanetTheCloud!
Co-Authored-By: Planet Cloud <[email protected]>
Copy file name to clipboardexpand all lines: element-changer/README.md
+21-59
Original file line number
Diff line number
Diff line change
@@ -8,36 +8,15 @@ You can put it anywhere! We recommend avoiding the left advert area, as it will
8
8
9
9
## How can I install it?
10
10
You'll first need to declare an array with the name ``changeElements`` within a script tag.
11
-
The elements in vPanel are categorized numerically in 11 groups, as shown in the table below:
12
-
| No. | Group Names |
13
-
|-----|---------------------------- |
14
-
| 1 | Preferences |
15
-
| 2 | Files |
16
-
| 3 | Databases |
17
-
| 4 | Domains |
18
-
| 5 | Email |
19
-
| 6 | Metrics |
20
-
| 7 | Security |
21
-
| 8 | Software |
22
-
| 9 | Advanced |
23
-
| 10 | Softaculous Apps Installer |
24
-
| 11 | Support |
25
11
26
-
To change the elements of a group, you will need to declare an object named with the number of that group, which will contain a new array. For example, to modify an element belonging in "Preferences" your object will need to be named 1.
27
-
An example on how your code would look will be shown below:
12
+
To change the elements of a group, you will need to create an object with the following properties that we'll analyze afterwards:
28
13
```js
29
-
changeElements = [
30
-
{1: [
31
-
{contents here}
32
-
]}
33
-
```
34
-
Inside the new array, create an object with the following properties that we'll analyze afterwards:
In ``item``, you'll assign a numerical value that corresponds with the position of the element you want to modify. Elements are sorted from left to right, or in the order they appear on mobile view, for instance ``1`` is the value of ``Change Password`` in Preferences.
19
+
In ``name``, you'll assign a value that corresponds with the name of the element exactly as it appears on the panel. For instance ``"Change Password"`` is what you'll need to enter to modify the Change Password element.
41
20
42
21
``attr`` is the attribute you wish to modify. There are two main attributes:
43
22
``itemdesc`` and ``url``.
@@ -48,30 +27,24 @@ Finally, ``value`` holds the new value of the element you'll be changing, for ex
48
27
An example of the code modifying the name and URL of ``Change Password`` to ``Your Domain`` and ``https://yourdomain.com`` respectively can be seen below:
Objects are separated by commas, so don't forget to include them when adding a new one.
57
35
58
36
### What is all of this? Where is my ready-to-use code?
59
-
If you skipped to this section, I apologise for the length of the previous ones. I tried to analyze the process in the best way I could.
60
37
Please read the Properties section before attempting to make your own modifications.
61
38
62
-
We'll provide a ready code for modifying the URLs of the first two elements of the ``Support`` and ``Email`` groups. Try it out in your panel (with the script, of course) to be able to better understand the process in adding your own objects.
39
+
We'll provide a ready code for modifying the names and URLs of ``SiteBuilder`` and ``Softaculous Apps Installer``. Try it out in your panel (with the script, of course) to be able to better understand the process in adding your own objects.
In JavaScript arrays like the one the script is modifying, indeed it does! I have modified the script (subtracting 1) so that counting starts at one, so make sure you don't use 0!
113
-
### Why is this so long and complicated?
114
-
I wish there was a more simple way to implement it. I don't know, there might be, but this is the easiest one I was able to come up with.
115
-
### Won't this break if iFastNet changes the item list?
116
-
~~[@BastelPichi, is this you?](https://github.com/WybeNetwork/VistaPanel-Customizations/issues/18#issuecomment-1235768587)~~
117
-
Yes, it will, although if iFastNet changes the item list and I/someone in our team/the MOFH community have the time, we will update it.
118
79
## Changelog
119
-
* Created on 15 August 2022 by [Anyx](https://github.com/4yx)
80
+
* Created on 15 August 2022 by [Anyx](https://github.com/4yx)
81
+
* Modified on 15 August 2022 by [PlanetCloud](https://github.com/PlanetTheCloud)
0 commit comments