- Vital Signs are public and readable by anyone.
- To submit a Vital Signs record for your association, you must complete the SASE process.
+
+ DSC Categories are public and readable by anyone.
+ To submit a record, you must complete the SASE process.
Visit
to begin.
@@ -80,9 +126,9 @@ function dsc01_access_wall() {
';
}
-// ----------------------------------------------------------------------------
+// ---------------------------------------------------------------------------
// CONTENT
-// ----------------------------------------------------------------------------
+// ---------------------------------------------------------------------------
function dsc01_content() {
if (function_exists('head_add_css')) {
@@ -92,23 +138,25 @@ function dsc01_content() {
head_add_js('/addon/dsc01/view/js/dsc01.js');
}
- $access = dsc01_access_state();
+ $association_slug = argv(1) ?? '';
+
+ $access = dsc01_access_state($association_slug);
// dsc01 is public — access wall only gates submission, not reading
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
- if ($access === 'public' || $access === 'denied') {
- return dsc01_access_wall();
+ if ($access === 'public') {
+ return dsc01_access_wall($association_slug);
}
// TODO: handle POST submission
- return dsc01_access_wall();
+ return dsc01_access_wall($association_slug);
}
return dsc01_render_main($access);
}
-// ----------------------------------------------------------------------------
+// ---------------------------------------------------------------------------
// RENDER
-// ----------------------------------------------------------------------------
+// ---------------------------------------------------------------------------
function dsc01_render_main($access) {
$out = '
';
@@ -117,7 +165,7 @@ function dsc01_render_main($access) {
$out .= '
The legal surfaces where HOA governance disputes manifest, organized from the homeowner\'s perspective.
';
$out .= '
';
- // TODO: render the ten Vital Signs
+ // TODO: render DSC categories
$out .= '
Content forthcoming.