recreate project

This commit is contained in:
root
2026-02-10 22:11:06 -05:00
commit 663c0cdbda
10149 changed files with 1379710 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
<?php
namespace App\Controllers\View;
use App\Controllers\BaseController;
use CodeIgniter\HTTP\ResponseInterface;
helper('document');
class PolicyController extends BaseController
{
public function index()
{
//
}
public function schoolPicturePolicy()
{
// FIXED path: correct spelling of "policy"
$content = include(APPPATH . 'Views/policy/picture_policy_partial.php');
// Pass the content to the view
return view('/policy/picture_policy', $content);
}
public function schoolPolicy()
{
// FIXED path: correct spelling of "policy"
$content = include(APPPATH . 'Views/policy/school_policy_partial.php');
return view('policy/school_policy', $content);
}
}