inherit
223470
0
Feb 27, 2019 17:05:53 GMT -8
₪» ⅀ ƪ Ƒ «₪
Original registration date: 2007. DeviantART: http://deviantart.com/ruanly. Discord: Ruanly#7946.
1,281
July 2015
fajita
|
Post by ₪» ⅀ ƪ Ƒ «₪ on May 29, 2018 14:09:22 GMT -8
My friend is a coder but she has no idea how to code on proboards specifically. I told her I would get a plugin with the build option so she could check around and see if it's something she's comfortable with. Which plugins that have build open do you guys suggest I give her that do a fair job as an example?
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on May 29, 2018 14:50:15 GMT -8
I think there are very few things specific to ProBoards that the application of general HTML, CSS, and Javascript knowledge doesn't already cover. Most ProBoards-specific things are listed in the Javascript API while all the keys you can pass into the nondescript pb.data method on the particular page you're viewing can be found by typing proboards.dataHash into the browser console. Plugins based around Javascript are usually only doing any of these three things: - Checking the plugin's settings for what values it's going to supply to its own functions:
- Checking the ID of each item on the current page for whether or not there's plugin key data tied to that ID:
- Manipulating the page according to what it finds in the aforementioned places:
Other than that they'll set the values of plugin keys, but in practice that can be condensed to a single line of code after all the preparation (getting the post/thread/etc. ID and value to be set).
|
|
inherit
223470
0
Feb 27, 2019 17:05:53 GMT -8
₪» ⅀ ƪ Ƒ «₪
Original registration date: 2007. DeviantART: http://deviantart.com/ruanly. Discord: Ruanly#7946.
1,281
July 2015
fajita
|
Post by ₪» ⅀ ƪ Ƒ «₪ on May 29, 2018 15:18:04 GMT -8
Thank you for your post! I sent it to her :)
Out of curiosity, does V6 plan to offer any additional coding languages? She is fluent in PHP and SQL but intermediate in JavaScript, so she said she isn't comfortable coding on ProBoards, so I said I'd ask if there's any plans in the future to allow PHP/SQL
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on May 29, 2018 15:31:35 GMT -8
PHP is server-side, so it's unlikely that it'll ever be available for use in plugins since the languages used to create them are all client-side.
SQL is for database manipulation. If there ever comes a time where a plugin can manipulate the forum's database beyond storing data in plugin keys there will likely be Javascript API methods for doing so.
|
|
inherit
223470
0
Feb 27, 2019 17:05:53 GMT -8
₪» ⅀ ƪ Ƒ «₪
Original registration date: 2007. DeviantART: http://deviantart.com/ruanly. Discord: Ruanly#7946.
1,281
July 2015
fajita
|
Post by ₪» ⅀ ƪ Ƒ «₪ on May 29, 2018 15:47:10 GMT -8
Ahh ohkay, thank you, I'll pass that along as well
|
|