Reference for building admin interface pages on the Joinery platform. Admin pages follow the logic/view split: business logic lives in /adm/logic/admin_*_logic.php and returns a LogicResult; presentation lives in /adm/admin_*.php and renders through AdminPage.
The canonical reference implementation is /adm/admin_user.php and /adm/logic/admin_user_logic.php.
/adm/logic/, presentation in /adm/.LogicResult (render, redirect, or error).process_logic() in views — views wrap the logic call so redirects and errors are handled centrally..php in URLs — all admin URLs are served through the front controller; the .php extension breaks routing./adm/
├── admin_user.php # View — display only
└── logic/
└── admin_user_logic.php # Business logicLogic files always live in /adm/logic/ (no subdirectories). Plugin admin pages mirror this in /plugins/{plugin}/admin/logic/.
| Page Type | View | Logic |
|---|---|---|
| List page | admin_users.php | admin_users_logic.php |
| Detail page | admin_user.php | admin_user_logic.php |
| Edit form | admin_user_edit.php | admin_user_edit_logic.php |
| Delete action | admin_user_delete.php | admin_user_delete_logic.php |
| Other actions | admin_user_{action}.php | admin_user_{action}_logic.php |
<?php
// Logic files require PathHelper directly. Views get it from serve.php's front
// controller, but logic files are included by views — by the time PHP parses
// the require below, PathHelper is already loaded — but keep this for
// defensive consistency with the rest of the codebase.
require_once(__DIR__ . '/../../includes/PathHelper.php');
function admin_page_logic(array $input): LogicResult {
require_once(PathHelper::getIncludePath('includes/LogicResult.php'));
require_once(PathHelper::getIncludePath('includes/LibraryFunctions.php'));
require_once(PathHelper::getIncludePath('includes/Pager.php'));
require_once(PathHelper::getIncludePath('data/users_class.php'));
// Globalvars, SessionControl, DbConnector, ThemeHelper, PluginHelper are
// always pre-loaded — never require them.
$settings = Globalvars::get_instance();
$session = SessionControl::get_instance();
$session->check_permission(5); // 5=admin, 9=super admin, 10=full
$session->set_return();
$page_vars = array();
$page_vars['settings'] = $settings;
$page_vars['session'] = $session;
// Process actions BEFORE loading display data.
if (isset($input['action'])) {
$action = $input['action'] ?? null;
switch ($action) {
case 'delete':
$item = new Item($input['item_id'], TRUE);
$item->soft_delete();
return LogicResult::redirect('/admin/admin_items');
case 'save':
$item = new Item($input['item_id'] ?? NULL);
$item->set('field_name', $input['field_name']);
$item->prepare();
$item->save();
return LogicResult::redirect('/admin/admin_item?item_id=' . $item->key);
}
}
// Load data for display.
$items = new MultiItem(
array('deleted' => false),
array('item_id' => 'DESC'),
30, 0
);
$numrecords = $items->count_all();
$items->load();
$page_vars['items'] = $items;
$page_vars['numrecords'] = $numrecords;
return LogicResult::render($page_vars);
}
?>5 = basic admin, 7 = higher admin, 9 = super admin, 10 = full system admin. check_permission() redirects unauthorized users automatically.$settings and $session in $page_vars.LogicResult::redirect(...) so refresh doesn't re-submit.return LogicResult::render($page_vars); // Normal display
return LogicResult::redirect('/path'); // After action
return LogicResult::error('Error msg'); // Failure (404, etc.)<?php
// PathHelper, Globalvars, SessionControl, DbConnector, ThemeHelper,
// PluginHelper are always pre-loaded — never require them.
require_once(PathHelper::getIncludePath('adm/logic/admin_page_logic.php'));
require_once(PathHelper::getIncludePath('includes/AdminPage.php'));
require_once(PathHelper::getIncludePath('includes/LibraryFunctions.php'));
require_once(PathHelper::getIncludePath('includes/Pager.php'));
$page_vars = process_logic(admin_page_logic(array_merge($_GET, $_POST)));
$session = $page_vars['session'];
$settings = $page_vars['settings'];
$items = $page_vars['items'];
$numrecords = $page_vars['numrecords'];
$page = new AdminPage();
$page->admin_header(array(
'menu-id' => 'items-list',
'page_title' => 'Items',
'readable_title' => 'Item List',
'breadcrumbs' => array('All Items' => ''),
'session' => $session,
));
$pager = new Pager(array('numrecords' => $numrecords, 'numperpage' => 30));
$headers = array('Name', 'Date', 'Actions');
$table_options = array('title' => 'Items', 'search_on' => TRUE);
$page->tableheader($headers, $table_options, $pager);
foreach ($items as $item) {
$row = array();
array_push($row, htmlspecialchars($item->get('name')));
array_push($row, LibraryFunctions::convert_time($item->get('created'), 'UTC', $session->get_timezone()));
array_push($row, '<a href="/admin/admin_item_edit?id=' . $item->key . '">Edit</a>');
$page->disprow($row);
}
$page->endtable($pager);
$page->admin_footer();
?>Tables rendered through tableheader() / disprow() adapt to phone-width screens
automatically. Below 767px each row collapses into a stacked card: the first column
becomes the card heading and every other column prints its header beside its value.
This works because tableheader() records the header labels and disprow() stamps
each cell with a data-label attribute and marks the first cell cell-primary. The
attributes are inert at desktop width, so the normal columnar table is unchanged.
Pass header strings that read well as standalone labels (e.g. Email, `Signup
Date`) — they double as the per-cell labels on mobile. Keep the most identifying
column first so it heads the card.
The card layout is opt-in via the jy-card-table wrapper class that the admin theme
adds around core-rendered tables. Hand-rolled <table class="table"> markup in a
plugin admin page is not carded; instead it scrolls horizontally within itself on
mobile, so it never widens the page. Prefer tableheader()/disprow() for list data
to get the card layout.
process_logic() BehaviourLogicResult::redirect(...), performs the redirect and exits.LogicResult::error(...), displays the error or throws.$page_vars array from LogicResult::render().admin_header() Options| Option | Notes |
|---|---|
menu-id | For sidebar highlighting |
page_title | Browser <title> |
readable_title | Page H1 |
breadcrumbs | ['Label' => '/url', ...]; empty string = current |
session | Required |
no_page_card | Skip the surrounding card wrapper |
header_action | Action button or dropdown HTML |
// Logic
$numperpage = 30;
$offset = LibraryFunctions::fetch_variable_local($get_vars, 'offset', 0);
$sort = LibraryFunctions::fetch_variable_local($get_vars, 'sort', 'user_id');
$sdirection = LibraryFunctions::fetch_variable_local($get_vars, 'sdirection', 'DESC');
$searchterm = LibraryFunctions::fetch_variable_local($get_vars, 'searchterm', '');
$criteria = array('deleted' => false);
if ($searchterm) $criteria['search'] = $searchterm;
$users = new MultiUser($criteria, array($sort => $sdirection), $numperpage, $offset);
$numrecords = $users->count_all();
$users->load();
$page_vars['users'] = $users;
$page_vars['numrecords'] = $numrecords;
$page_vars['numperpage'] = $numperpage;
$page_vars['sortoptions'] = array('Name' => 'last_name', 'Email' => 'email');// View
$pager = new Pager(array('numrecords' => $numrecords, 'numperpage' => $numperpage));
$page->tableheader(
array('Name', 'Email', 'Signup Date'),
array('sortoptions' => $page_vars['sortoptions'], 'title' => 'Users', 'search_on' => TRUE),
$pager
);
foreach ($users as $user) {
$row = array();
array_push($row, '<a href="/admin/admin_user?usr_user_id=' . $user->key . '">' . $user->display_name() . '</a>');
array_push($row, htmlspecialchars($user->get('usr_email')));
array_push($row, LibraryFunctions::convert_time($user->get('usr_signup_date'), 'UTC', $session->get_timezone(), 'M j, Y'));
$page->disprow($row);
}
$page->endtable($pager);Loads one main record and any related collections. Handles multiple POST actions via an action field. See /adm/logic/admin_user_logic.php for a worked example covering add/remove group, add/remove event, multiple related tables, and a custom altlinks dropdown.
// Logic — sketch
$user_id = $get_vars['usr_user_id'] ?? null;
if (!$user_id) return LogicResult::error('User ID is required');
$user = new User($user_id, TRUE);
if (!$user->get('usr_id')) {
header('HTTP/1.0 404 Not Found');
return LogicResult::error('User not found');
}
if ($post_vars) {
switch ($post_vars['action']) {
case 'add_to_group':
$group = new Group($post_vars['grp_group_id'], TRUE);
$group->add_member($user->key);
return LogicResult::redirect('/admin/admin_user?usr_user_id=' . $user->key);
}
}
// Load related data...
$page_vars['user'] = $user;
return LogicResult::render($page_vars);// Logic
$user_id = $get_vars['usr_user_id'] ?? null;
$user = new User($user_id ?? NULL, $user_id ? TRUE : FALSE);
if ($post_vars) {
try {
$user->set('usr_first_name', $post_vars['usr_first_name']);
$user->set('usr_last_name', $post_vars['usr_last_name']);
$user->set('usr_email', $post_vars['usr_email']);
$user->prepare();
$user->save();
return LogicResult::redirect('/admin/admin_user?usr_user_id=' . $user->key);
} catch (Exception $e) {
$page_vars['error_message'] = $e->getMessage();
}
}When using FormWriterV2's edit_primary_key_value hidden field, check the POST field first, then fall back to GET:
if (isset($post_vars['edit_primary_key_value'])) {
$item = new Item($post_vars['edit_primary_key_value'], TRUE);
} elseif (isset($get_vars['itm_item_id'])) {
$item = new Item($get_vars['itm_item_id'], TRUE);
} else {
$item = new Item(NULL);
}> Guard the save on the HTTP method, not on if($input). Logic functions that
> take a single $input (array_merge($_GET, $_POST)) must gate the save handler
> with LibraryFunctions::isFormSubmission() — $input is never empty on a GET
> (the edit link carries the record id), so if($input) runs the save on
> page-open and can null out the record. SystemBase enforces this at the write
> boundary; intentional GET-action links (e.g. ?action=delete) must opt in via
> SystemBase::$allow_get_mutation. See
> Logic Architecture — Detecting form submission.
// View — wrap in begin_box / end_box so the form gets the standard card chrome
$page->begin_box(array('title' => 'Edit User'));
$formwriter = $page->getFormWriter('form1', array('model' => $user));
$formwriter->begin_form();
// Fields prefixed with the model's column prefix (e.g. usr_) pick up
// validation from the model automatically.
$formwriter->textinput('usr_first_name', 'First Name');
$formwriter->textinput('usr_last_name', 'Last Name');
$formwriter->textinput('usr_email', 'Email');
$formwriter->submitbutton('submit', 'Save User');
$formwriter->end_form();
$page->end_box();// Logic
$user = new User($get_vars['usr_user_id'], TRUE);
if ($post_vars && ($post_vars['confirm'] ?? '') === 'yes') {
$user->soft_delete();
return LogicResult::redirect('/admin/admin_users');
}
$page_vars['user'] = $user;// View
?>
<div class="alert alert-warning">
<p>Delete <strong><?= htmlspecialchars($user->display_name()) ?></strong>?</p>
<form method="POST" action="/admin/admin_user_delete?usr_user_id=<?= $user->key ?>">
<input type="hidden" name="confirm" value="yes" />
<button type="submit" class="btn btn-danger">Yes, delete</button>
<a href="/admin/admin_user?usr_user_id=<?= $user->key ?>" class="btn btn-secondary">Cancel</a>
</form>
</div>These don't need their own pattern — they're composed from the basics above:
.card / .card-header / .card-body), Chart.js or similar, date-range selectors.<details> groups; group related fields into card-style sections; show success/error after save.MultiX criteria; <details> / <summary> for expandable rows; CSV export via a ?action=export branch in the logic.Both content pages and table pages support an altlinks dropdown — a small menu of secondary actions.
// Content pages — pass to begin_box()
$altlinks = array(
'Enable' => '/admin/admin_page_name?action=enable',
'Disable' => '/admin/admin_page_name?action=disable',
);
$page->begin_box(array('altlinks' => $altlinks));
// content
$page->end_box();// Table pages — pass via tableheader() options
$altlinks = array(
'Add New' => '/admin/admin_item_edit',
'Export' => '/admin/admin_items?action=export',
);
$page->tableheader($headers, array(
'altlinks' => $altlinks,
'title' => 'Items',
'search_on' => TRUE,
), $pager);Action handling and the resulting flash message belong in the logic file (see the DisplayMessage pattern below). Never handle actions inline in the view and never pass messages through query strings.
AdminPage renders every pending session flash message automatically as a
theme alert at the top of the content area (admin_header()), and
admin_footer() clears what was shown — each message displays exactly once.
Admin logic files and views must not call get_messages(),
clear_clearable_messages(), or render message alerts themselves.
The page_regex is passed straight to preg_match() against the request
URI, so it must be a valid, delimited PCRE — an undelimited path string
(e.g. '/plugins/foo/admin/', where everything after the second / parses
as pattern modifiers) makes preg_match() error out and the message is
silently never shown. Use ~ delimiters for paths with slashes:
plugin pages save with '~/plugins/{plugin}/admin/~'.
A logic file surfaces a message in one of two ways:
// After a successful save/delete — save the flash, then redirect
$page_regex = '/\/admin\/admin_items/';
if ($message) {
$session->save_message(new DisplayMessage(
$message, 'Success', $page_regex,
DisplayMessage::MESSAGE_ANNOUNCEMENT,
DisplayMessage::MESSAGE_DISPLAY_IN_PAGE
));
}
return LogicResult::redirect('/admin/admin_items');
// On a refused action — return an error with the page's data payload;
// process_logic() saves it as an error flash and the page re-renders with
// the alert shown
return LogicResult::error('Why the save was refused.', $page_vars);Message type maps to alert style: MESSAGE_ANNOUNCEMENT → success,
MESSAGE_WARNING → warning, MESSAGE_ERROR → danger.
JoineryModal is a global kit component — a vanilla-JS utility built on the native <dialog> element, shipped in the kit's base.js and loaded on every theme (not just admin). Use it for confirmations and notifications — never window.confirm() or Bootstrap modals.
// Confirmation (two buttons, danger-styled by default)
JoineryModal.confirm('Delete this record?', function() { submitAction(); });
// Alert (one OK button, primary-styled)
JoineryModal.alert('Settings saved successfully.');
// Prompt (text input)
JoineryModal.prompt('Enter the item name to confirm:', function(value) {
if (value === expected) submitDelete();
});All three accept an options object:
| Option | Type | Default | Notes | |
|---|---|---|---|---|
confirmLabel | string | 'Confirm' / 'OK' | Label on the action button | |
cancelLabel | string | 'Cancel' | confirm and prompt only | |
confirmStyle | 'danger' \ | 'primary' | 'danger' / 'primary' | Button color |
placeholder | string | '' | prompt only | |
defaultValue | string | '' | prompt only |
// Constructive action
JoineryModal.confirm('Apply this update?', function() {
submitForm();
}, { confirmLabel: 'Apply', confirmStyle: 'primary' });From PHP-rendered action links:
$plugin_name = htmlspecialchars($plugin['name']);
$warning = 'This will permanently delete all data. This cannot be undone.';
$action_cell .= '<a href="javascript:void(0)" onclick="confirmAndDelete(\'' . $plugin_name . '\', \'' . addslashes($warning) . '\')">Delete</a>';function confirmAndDelete(name, message) {
JoineryModal.confirm(message, function() {
submitPluginAction('delete', name);
}, { confirmLabel: 'Delete' });
}Form-hosting modals — when a modal needs real form fields, use a raw <dialog> element; the theme styles it automatically:
<dialog id="myModal">
<form method="post">
<!-- fields -->
<div class="dialog-actions">
<button type="button" onclick="document.getElementById('myModal').close()">Cancel</button>
<button type="submit" class="dialog-btn-confirm dialog-btn-primary">Save</button>
</div>
</form>
</dialog>document.getElementById('myModal').showModal();
document.getElementById('myModal').close();Full API: specs/joinery_modal_api.md.
// Add a checkbox column to each row
$checkbox = '<input type="checkbox" name="selected_ids[]" value="' . $item->get('primary_key') . '">';
array_push($row, $checkbox);
// Wrap the table in a form with an action selector
?>
<form method="post" action="/admin/admin_bulk_action">
<div class="form-row align-items-center mb-3">
<div class="col-auto">
<select name="bulk_action" class="form-control">
<option value="">Select Action...</option>
<option value="delete">Delete Selected</option>
<option value="activate">Activate Selected</option>
</select>
</div>
<div class="col-auto">
<button type="submit" class="btn btn-secondary">Apply</button>
</div>
</div>
<!-- table here -->
</form>The admin theme (joinery-system) is vanilla HTML5 with a small set of utility classes that mirror common Bootstrap names (form-control, btn, alert-*, grid columns) — these are theme-provided, not Bootstrap. Don't pull in Bootstrap.
<div class="row"> / <div class="col-12"> (or appropriate column sizes).col-md-4, col-md-6, col-md-8, col-12.form-control on inputs, btn btn-primary / btn btn-secondary / btn btn-danger on buttons.✅ Logic file owns all business logic, data loading, action handling. View renders only.
❌ Don't load data in the view (except trivial display-specific lookups).
❌ Don't use generic variable names like $data or $result in $page_vars.
Process actions before loading display data:
if ($post_vars) {
// handle and redirect
return LogicResult::redirect('/path');
}
// only reached on GET
$data = load_data();// ✅ No .php extension
return LogicResult::redirect('/admin/admin_users');
$link = '<a href="/admin/admin_user?usr_user_id=' . $id . '">View</a>';
// ❌ Breaks routing — query parameters can be lost
return LogicResult::redirect('/admin/admin_users.php');if (!$user_id) {
return LogicResult::error('User ID is required');
}
$user = new User($user_id, TRUE);
if (!$user->get('usr_id')) {
header('HTTP/1.0 404 Not Found');
return LogicResult::error('User not found');
}
try {
$user->prepare();
$user->save();
} catch (Exception $e) {
$page_vars['error_message'] = $e->getMessage();
}$session->check_permission(5);$user->authenticate_write([...]).htmlspecialchars() user-supplied output.// ✅ count_all() runs a count query without loading rows
$users = new MultiUser($criteria, $sort, $limit, $offset);
$numrecords = $users->count_all();
$users->load();
// ❌ Loads everything just to count
$users = new MultiUser($criteria);
$users->load();
$numrecords = $users->count();$formwriter = $page->getFormWriter('form1', array('model' => $object));
$formwriter->begin_form();
$formwriter->textinput('field_name', 'Label', array(
'placeholder' => 'Enter value',
'helptext' => 'Help text here',
));
$formwriter->submitbutton('submit', 'Save');
$formwriter->end_form();$page->getFormWriter() returns a FormWriterV2HTML5 instance. Never hand-roll admin forms — see FormWriter.
The view isn't wrapping the logic call with process_logic().
// ❌
$page_vars = admin_page_logic($_GET, $_POST);
// ✅
$page_vars = process_logic(admin_page_logic(array_merge($_GET, $_POST)));The variable wasn't added to $page_vars in the logic file. Every value the view reads must be returned through LogicResult::render($page_vars).
Either output was sent before the redirect, or the logic used header() directly.
// ❌
echo 'Debug';
header('Location: /admin/admin_users');
// ✅
return LogicResult::redirect('/admin/admin_users');The logic file isn't handling the action:
if ($post_vars && ($post_vars['action'] ?? '') === 'your_action') {
// ...
return LogicResult::redirect('/path');
}# Syntax check
php -l /var/www/html/joinerytest/public_html/adm/logic/admin_user_logic.php
php -l /var/www/html/joinerytest/public_html/adm/admin_user.php
# Method existence check
php /var/www/html/joinerytest/maintenance_scripts/dev_tools/validate_php_file.php \
/var/www/html/joinerytest/public_html/adm/logic/admin_user_logic.phpphp -l clean on both filesvalidate_php_file.php clean (or false positives understood)check_permission()