Fork de https://github.com/bludit/bludit pour mes sites personnels
Find a file
2021-02-07 22:03:53 +01:00
.github Improve issue template 2019-09-06 16:12:41 +02:00
bl-kernel add some documentation to the readme, now all plugins print the description in the settings form its possible disable as well, clean up css, and refactor Categories plugin 2021-02-07 22:03:53 +01:00
bl-languages Change user password, Disable user, improve comments on functions 2021-01-26 22:31:12 +01:00
bl-plugins add some documentation to the readme, now all plugins print the description in the settings form its possible disable as well, clean up css, and refactor Categories plugin 2021-02-07 22:03:53 +01:00
bl-themes API create/edit/delete category, UI for manage categories, UI for manage users still in progress, improvments in dbList class, warn the user when didn't save the progress in the editor 2021-01-16 13:03:16 +01:00
.gitignore update ignores 2020-08-23 19:00:46 +02:00
.htaccess init branch for Bludit v4 2020-11-01 11:55:34 +01:00
index.php Fix typo in the index.php 2019-07-05 20:11:00 +01:00
install.php New approach when the page is created, remove UUID, remove symlinks for upload images, modal for filemanager, and more 2021-01-01 23:13:01 +01:00
LICENSE Update bootstrap v4.3.1 -> v4.4.1 2020-01-01 16:40:11 +05:30
README.md add some documentation to the readme, now all plugins print the description in the settings form its possible disable as well, clean up css, and refactor Categories plugin 2021-02-07 22:03:53 +01:00

Bludit

Dear developers

Frameworks and libraries included in Bludit v4

Bludit will include the following frameworks, please use them with they native functions.

Frontend:

  • Bootstrap v5.
  • Boostrap icons.
  • jQuery, you can use vanilla Javascript but for events in the views please use jQuery.

Backend:

  • bl-kernel/functions.php provides the global function for Bludit; These functions provide connectivity between different objects and databases; These functions should provide different checks and logic before add/edit/delete into the databases.
  • PHP SimpleImage for processing images: https://github.com/claviska/SimpleImage

Comments for functions and methods

Please add the following structure commenting what it does the function, also add the stamp === Bludit v4 so I know what is new.

/*	Delete a page === Bludit v4

	@key			string			Array => (key: string)
	@return			string/bool		Returns the page key on successful delete, FALSE otherwise
*/
function deletePage($args) {
   ...
}

Controller and views structure

Please follow complete example for

Documentation for Bludit v4