friendica/src/Model
Roland Häder 27969e8ca6
Continued:
- moved if() block to suggested position by MrPetovan, for me I want to have all
  conditions checked at the start of the method, e.g. no unwanted null
  references or (in this case) if the URL is blacklisted
- normalized URLs are without SSL, means http://host/path/file.ext so they exist
  only once for contacts and servers (aka. instances)
- documented returned type `void`
2023-01-21 01:07:14 +01:00
..
APContact Happy New Year 2023! 2023-01-01 09:36:24 -05:00
Contact Happy New Year 2023! 2023-01-01 09:36:24 -05:00
Log Happy New Year 2023! 2023-01-01 09:36:24 -05:00
Notification Happy New Year 2023! 2023-01-01 09:36:24 -05:00
Post Merge pull request #12644 from annando/improve-ignore 2023-01-10 09:05:48 -05:00
User Happy New Year 2023! 2023-01-01 09:36:24 -05:00
APContact.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
Attach.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
Contact.php Ensure to reset the avatar paths when deleting avatar cache 2023-01-14 13:10:43 +00:00
Conversation.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
Event.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
FileTag.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
Group.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
GServer.php Continued: 2023-01-21 01:07:14 +01:00
Item.php Mode depending control for the behaviour with blocked contacts 2023-01-12 06:25:55 +00:00
ItemURI.php Check for URI ID existence in Post\Media::insert 2023-01-09 16:06:22 -05:00
Mail.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
Nodeinfo.php Nodeinfo data has moved to key values 2023-01-18 05:04:37 +00:00
OpenWebAuthToken.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
Photo.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
Post.php Improve ignoring of messages 2023-01-09 16:23:39 +00:00
Profile.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
PushSubscriber.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
README.md typo 2019-03-22 22:56:57 -04:00
Register.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
Search.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
Subscription.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
Tag.php Include other unique key column in condition in Model\Tag:store 2023-01-09 16:06:22 -05:00
User.php Allow colon in password 2023-01-18 20:34:20 -05:00
Verb.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00

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.