Overview
Comment:Ignore some modules while they are still in development, remove 'ignore' file to get them listed again
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev
Files: files | file ages | folders
SHA3-256: 45cd2fac1fa79c7c5e473229b34efa2ce6e499caa65be6e87ce20d767b2acf7c
User & Date: bohwaz on 2023-02-27 19:25:59
Other Links: branch diff | manifest | tags
Context
2023-02-27
19:33
Fix admin check for password change check-in: c3c3b77b18 user: bohwaz tags: dev
19:25
Ignore some modules while they are still in development, remove 'ignore' file to get them listed again check-in: 45cd2fac1f user: bohwaz tags: dev
19:20
Fix missing defined statement in if check-in: aad2c94d02 user: bohwaz tags: dev
Changes

Modified src/include/lib/Garradin/UserTemplate/Modules.php from [e1712e8d0b] to [49dc4a06e5].

57
58
59
60
61
62
63





64
65
66
67
68
69
70
		$list = [];

		// First list modules bundled
		foreach (glob(Module::DIST_ROOT . '/*') as $file) {
			if (!is_dir($file)) {
				continue;
			}






			$name = Utils::basename($file);
			$list[$name] = $name;
		}

		if ($include_installed) {
			// Then add modules in files







>
>
>
>
>







57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
		$list = [];

		// First list modules bundled
		foreach (glob(Module::DIST_ROOT . '/*') as $file) {
			if (!is_dir($file)) {
				continue;
			}

			// Ignore test modules
			if (file_exists($file . '/ignore')) {
				continue;
			}

			$name = Utils::basename($file);
			$list[$name] = $name;
		}

		if ($include_installed) {
			// Then add modules in files

Added src/skel-dist/modules/bilan_pc/ignore version [da39a3ee5e].

Added src/skel-dist/modules/invoice/ignore version [da39a3ee5e].