Browse Source

bookmarks plugin selectable as a homepage item

dvelayos 4 years ago
parent
commit
581e91f000
1 changed files with 0 additions and 13 deletions
  1. 0 13
      api/homepage/bookmarks.php

+ 0 - 13
api/homepage/bookmarks.php

@@ -64,17 +64,4 @@ trait BookmarksHomepageItem
 		}
 		}
 	}
 	}
 
 
-	public function getBookmarksData()
-	{
-		if (!$this->homepageItemPermissions($this->bookmarksHomepagePermissions('main'), true)) {
-			return false;
-		}
-		$api['content'] = array(
-			'bookmarks' => 'bookmarks here!',
-		);
-
-		$api['content'] = isset($api['content']) ? $api['content'] : false;
-		$this->setAPIResponse('success', null, 200, $api);
-		return $api;
-	}
 }
 }