Fork de https://github.com/bludit/bludit pour mes sites personnels
Find a file
Diego Najar 2271f6c986
Merge pull request #1368 from nogajun/v4.0
update Japanese translation
2021-10-08 14:55:33 +02:00
.github bug fixes 2021-09-05 16:18:01 +02:00
.vscode vscode configuration 2021-09-12 20:57:59 +02:00
bl-kernel include words for relativetime 2021-10-06 18:15:02 +02:00
bl-languages update Japanese translation 2021-10-08 17:39:11 +09:00
bl-plugins Create de_AT.json 2021-10-05 21:43:43 +02:00
bl-themes Additional terms 2021-10-06 18:03:48 +02:00
.gitignore bug fixes 2021-09-05 16:18:01 +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 remove directory creation 2021-09-23 18:56:57 +02:00
LICENSE change in metadata for Bludit v4.0, plugin for popeye theme updated, refactor 2021-06-02 22:48:30 +02:00
phpstan.neon bug fixes in tags 2021-09-23 18:51:07 +02:00
README.md bug fixes in tags 2021-09-23 18:51:07 +02: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.

/**
 * Create a new category. === Bludit v4
 * @param		array		$args			[string $name, string $template, string $description]
 * @return		string|bool					Returns the category key on successful create, FALSE otherwise
 */
function createCategory($args) {
   ...
}

Documentation for Bludit v4

There is a new branch for the Documentation in english for Bludit v4.

https://github.com/bludit/documentation-english/tree/v4.0

PHPStan

https://phpstan.org/

docker run --rm -v $(pwd):/app ghcr.io/phpstan/phpstan:0.12.99 analyse -c /app/phpstan.neon /app