mirror of
https://github.com/friendica/friendica
synced 2025-04-27 18:30:12 +00:00
Rename Term methods ahead of the move
- Rename createFromItemURI() to insertFromItemFileByUri() - Rename createFromItem() to insertFromItemFileById()
This commit is contained in:
parent
d0c9e7939c
commit
0abe4158d2
4 changed files with 12 additions and 11 deletions
|
@ -71,7 +71,7 @@ class Item extends BaseObject
|
|||
}
|
||||
|
||||
create_tags_from_item($item['id']);
|
||||
Term::createFromItem($item['id']);
|
||||
Term::insertFromItemFileById($item['id']);
|
||||
update_thread($item['id']);
|
||||
|
||||
Worker::add(PRIORITY_HIGH, "Notifier", 'edit_post', $item['id']);
|
||||
|
@ -153,7 +153,7 @@ class Item extends BaseObject
|
|||
['id' => $item['id']]);
|
||||
|
||||
create_tags_from_item($item['id']);
|
||||
Term::createFromItem($item['id']);
|
||||
Term::insertFromItemFileById($item['id']);
|
||||
delete_thread($item['id'], $item['parent-uri']);
|
||||
|
||||
// If it's the parent of a comment thread, kill all the kids
|
||||
|
@ -792,7 +792,7 @@ class Item extends BaseObject
|
|||
* This is not perfect - but a workable solution until we found the reason for the problem.
|
||||
*/
|
||||
create_tags_from_item($current_post);
|
||||
Term::createFromItem($current_post);
|
||||
Term::insertFromItemFileById($current_post);
|
||||
|
||||
if ($arr['parent-uri'] === $arr['uri']) {
|
||||
self::addShadow($current_post);
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
*/
|
||||
namespace Friendica\Model;
|
||||
|
||||
use Friendica\Database\DBM;
|
||||
use dba;
|
||||
|
||||
require_once "include/dba.php";
|
||||
|
@ -14,10 +15,10 @@ class Term
|
|||
* @param integer $itemid item id
|
||||
* @return void
|
||||
*/
|
||||
public static function createFromItem($itemid)
|
||||
public static function insertFromItemFileById($itemid)
|
||||
{
|
||||
$message = dba::selectFirst('item', ['uid', 'deleted', 'file'], ['id' => $itemid]);
|
||||
if (!\Friendica\Database\DBM::is_result($message)) {
|
||||
if (!DBM::is_result($message)) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -62,13 +63,13 @@ class Term
|
|||
* @param integer $uid uid
|
||||
* @return void
|
||||
*/
|
||||
public static function createFromItemURI($itemuri, $uid)
|
||||
public static function insertFromItemFileByUri($itemuri, $uid)
|
||||
{
|
||||
$messages = q("SELECT `id` FROM `item` WHERE uri ='%s' AND uid=%d", dbesc($itemuri), intval($uid));
|
||||
|
||||
if (count($messages)) {
|
||||
foreach ($messages as $message) {
|
||||
self::createFromItem($message["id"]);
|
||||
self::insertFromItemFileById($message["id"]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue