Gabay Guro
Tulong sa Guro, Gabay sa Learner
Create your teacher account
Register once with your Division and School Name so Gabay Guro can organize usage, generated materials, and learner support tracking properly.
function gg_enterprise_user_scope_sql(array $enterprise, string $alias = 't'): array { $teacherId = (int)($enterprise['teacher_id'] ?? 0); $isAdmin = ($enterprise['role'] ?? '') === 'admin'; if ($isAdmin) { return ['where' => '1=1', 'params' => []]; } // Enterprise semi-admin can only see: // 1. their own account // 2. accounts they personally created through enterprise_dashboard.php return [ 'where' => "({$alias}.teacher_id = ? OR {$alias}.enterprise_owner_id = ?)", 'params' => [$teacherId, $teacherId], ]; }
Gabay Guro
Tulong sa Guro, Gabay sa Learner
Register once with your Division and School Name so Gabay Guro can organize usage, generated materials, and learner support tracking properly.