friendica/src/Model
Philipp Holzer 800694e9b3
Remove unused `use` statements & remove PConfig class
2020-01-18 17:02:59 +01:00
..
Config Fix typo in Model\Config\PConfig 2019-07-15 16:32:13 -04:00
Storage avoid exception throwing because of false-like return 2020-01-17 23:55:17 +01:00
TwoFactor Replace BaseObject class with DI::* calls 2019-12-29 20:17:38 +01:00
User Creating interfaces for Config/PConfig & fix tests 2019-12-29 20:18:19 +01:00
APContact.php Replace BaseObject class with DI::* calls 2019-12-29 20:17:38 +01:00
Attach.php Fix missing storage class 2020-01-10 22:27:05 +01:00
Contact.php Ensure that local contacts always are DFRN contacts 2020-01-16 06:43:21 +00:00
Conversation.php Replace deprecated calls to defaults() by ?? and ?: in src/ 2019-10-16 08:38:52 -04:00
Event.php Remove unused `use` statements & remove PConfig class 2020-01-18 17:02:59 +01:00
FileTag.php Remove unused `use` statements & remove PConfig class 2020-01-18 17:02:59 +01:00
GContact.php Remove get_server() in favor of Search::getGlobalDirectory() 2020-01-05 00:04:55 +01:00
GServer.php Improved server platform detection 2020-01-13 05:57:05 +00:00
Group.php Allow special groups in default user permissions 2020-01-05 17:09:14 -05:00
Introduction.php Fix typo in intro table field name 2020-01-12 10:55:47 -05:00
Item.php Remove unused `use` statements & remove PConfig class 2020-01-18 17:02:59 +01:00
ItemContent.php Remove unused `use` statements & remove PConfig class 2020-01-18 17:02:59 +01:00
ItemDeliveryData.php Now using the correct function call ... 2019-11-23 04:31:40 +00:00
ItemURI.php Replace BaseObject class with DI::* calls 2019-12-29 20:17:38 +01:00
Mail.php Implement code review from nupplaphil 2020-01-11 16:01:58 +01:00
Nodeinfo.php The item count is now done in a single query 2020-01-11 14:25:43 +00:00
Notify.php Creating interfaces for Config/PConfig & fix tests 2019-12-29 20:18:19 +01:00
OpenWebAuthToken.php Fix PHPDoc comments project-wide 2019-01-21 10:35:51 -05:00
PermissionSet.php Replace BaseObject class with DI::* calls 2019-12-29 20:17:38 +01:00
Photo.php Merge pull request #8089 from mexon/mat/repair-contact-photo 2020-01-11 18:30:34 +01:00
Process.php Replace BaseObject class with DI::* calls 2019-12-29 20:17:38 +01:00
Profile.php Remove unused `use` statements & remove PConfig class 2020-01-18 17:02:59 +01:00
PushSubscriber.php Fix PHPDoc comments project-wide 2019-01-21 10:35:51 -05:00
README.md typo 2019-03-22 22:56:57 -04:00
Register.php Fix security vulnerbilities. 2019-10-10 15:21:41 -08:00
Search.php Replace BaseObject class with DI::* calls 2019-12-29 20:17:38 +01:00
Term.php Tags and mentions should be escaped 2020-01-13 15:37:46 +00:00
User.php Remove unused `use` statements & remove PConfig class 2020-01-18 17:02:59 +01:00
UserItem.php Notifications: Now declare direct thread answers as replies 2020-01-09 17:53:17 +00:00

README.md

Friendica\Model

Models are the glue between the business logic of the app and the datastore(s).

In the namespace Model should only be static classes that interact with the DB with the same name as a database table.