Php SDK Changelog

From OpenKM Documentation
Revision as of 12:34, 30 May 2014 by Jllort (talk | contribs) (Created page with "== SDK FOR JAVA 2.0 == * '''Added method in PropertyGroup''' <source lang="php"> public function getPropertyGroupForm($grpName); </source> * '''Added methods in Auth''' <sourc...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

SDK FOR JAVA 2.0

  • Added method in PropertyGroup
public function getPropertyGroupForm($grpName);
  • Added methods in Auth
public void createUser($user, $password, $email, $name, $active);
public void deleteUser($user);
public void updateUser($user, $password, $email, $name, $active);
public void createRole($role, $active);
public void deleteRole($role);
public void updateRole($role, $active);
public void assignRole($user, $role);
public void removeRole($user, $role);
  • Added methods in Document
public function setLanguage($docId, $lang);
public function setTitle($docId, $title);
public function setDocumentNodeClass($docId, $ncId);
public Function getDetectedLanguages();
  • Changes in class Document
added instance variable String title
added instance variable String language
  • Changes in class Folder
added instance variable long style;
  • Changes in class QueryParams

Variable folder replaces removed variable path to indicate folder from where starting searching. Variable folderRecursive indicates if search must be done in folder path and subfolders.

added instance variable String folder
added instance variable boolean folderRecursive
added instance variable String title
added instance variable String language
added instance variable String notes
removed instance variable String path
  • Changes in class QueryResult
added instance variable Node node
added instance variable boolean attachment
removed instance variable Document document
removed instance variable Folder folder
  • Changes in class Node
added instance variable long nodeClass