Search found 5 matches

by inquirer
Fri Aug 12, 2022 5:42 pm
Forum: Plugins
Topic: Advanced plugin development documentation
Replies: 8
Views: 990

Re: Advanced plugin development documentation

So, i figured out the way to inject custom fields on plugin install programmatically, and feel like it should be added to docs: public function install($position = 1) { global $site; global $L; parent::install(); $fields=array( "field-name"=>array( "type"=>"string", &qu...
by inquirer
Wed May 18, 2022 3:49 am
Forum: Plugins
Topic: Advanced plugin development documentation
Replies: 8
Views: 990

Re: Advanced plugin development documentation

There's no reference to point to, but i can design an example: imagine, there are researches publishing articles. They do that both on site and on external platforms. Let's organize the articles by field of study. Maths bludit/article2 bludit/article5 somemagazine/uri1 Chemistry bludit/article4 some...
by inquirer
Mon May 16, 2022 3:47 am
Forum: Plugins
Topic: Advanced plugin development documentation
Replies: 8
Views: 990

Re: Advanced plugin development documentation

"extra data structure" I am making a grouping plugin for the blog pages, static pages, and arbitrary links and wish to have this mix orderable within the group as well as ordering the groups themselves. Thus i figured out storing it all in one json with plugin settings is not a good idea....
by inquirer
Fri May 13, 2022 5:11 am
Forum: Plugins
Topic: Advanced plugin development documentation
Replies: 8
Views: 990

Re: Advanced plugin development documentation

Yeah, it's the easiest of hard ways.
So, your response suggests there is no "Bludit" way of doing this, just be inventive :D
by inquirer
Thu May 12, 2022 6:18 am
Forum: Plugins
Topic: Advanced plugin development documentation
Replies: 8
Views: 990

Advanced plugin development documentation

Hi, i've chosen Bludit v3.13.1 for a project, and there is a bit of extra functionality i couldn't find in plugins, so i opted into making a plugin of my own. And i have questions i haven't found answers to in docs and forum, that could lead to extension of the documentation portal of yours (unless ...