Udf Component

This commit is contained in:
cgfhtw
2024-03-28 15:38:50 +01:00
parent 46fff01eaa
commit b1c094383f
4 changed files with 471 additions and 0 deletions
+17
View File
@@ -827,6 +827,23 @@ class DB_Model extends CI_Model
return $result;
}
public function getDbTable()
{
return $this->dbTable;
}
public function getPk()
{
return $this->pk;
}
public function getPks()
{
if (is_array($this->pk))
return $this->pk;
return [$this->pk];
}
// ------------------------------------------------------------------------------------------
// Protected methods