]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/commitdiff
Add some commenting
authorValerie Pond <redacted>
Thu, 19 Jan 2023 09:47:19 +0000 (09:47 +0000)
committerValerie Pond <redacted>
Thu, 19 Jan 2023 09:47:19 +0000 (09:47 +0000)
plugins/sql_auth/SQL/user.php

index fbb8c3dc29a11a3978f792a1f94112fcf4f2798f..3ed7c1454778f74569ba683690d20e39a3b0e5fd 100644 (file)
@@ -1,5 +1,9 @@
 <?php
 
+/**
+ * SQLA_User
+ * This is the User class for the SQL_Auth plugin
+ */
 class SQLA_User
 {
     public $id = NULL;
@@ -54,6 +58,12 @@ class SQLA_User
     }
 }
 
+
+/**
+ * This class looks up and returns any user meta.
+ * This is used by SQLA_User, so you won't need to 
+ * call it separately from SQLA_User.
+ */
 class SQLA_User_Meta
 {
     public $list = [];