2016-02-22 03:56:52 +01:00
[Bludit ](https://www.bludit.com/ )
2016-01-18 00:29:15 +01:00
================================
2015-06-26 06:54:39 +02:00
2021-02-07 22:03:53 +01:00
Dear developers
2018-01-17 09:50:27 +01:00
-------
2021-02-07 22:03:53 +01:00
## 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.
2018-07-20 10:03:00 +02:00
2021-02-07 22:03:53 +01:00
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
2018-01-17 09:50:27 +01:00
2021-02-07 22:03:53 +01:00
## 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
2020-07-13 11:43:00 +02:00
2021-02-07 22:03:53 +01:00
@key string Array => (key: string)
@return string/bool Returns the page key on successful delete, FALSE otherwise
*/
function deletePage($args) {
...
}
```
2020-07-13 11:43:00 +02:00
2021-02-07 22:03:53 +01:00
Documentation for Bludit v4
2015-07-15 02:07:07 +02:00
-------
2021-03-19 20:06:17 +01:00
There is a new branch for the Documentation in english for Bludit v4.
https://github.com/bludit/documentation-english/tree/v4.0