Difference between revisions of "Php SDK Changelog"

From OpenKM Documentation
Jump to: navigation, search
(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...")
 
m
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== SDK FOR JAVA 2.0 ==
+
== SDK for PHP 2.0.2 ==
 +
* Removed two contants in class Node
 +
const DOCUMENT = 1;
 +
const FOLDER = 2;
 +
* Removed var $type into class Node to indentify node type ( document or folder )
 +
* Solve bug in search to identify with instanceof the node type (document or folder )
 +
 
 +
== SDK for PHP 2.0.1 ==
 +
* Added two contants in class Node
 +
const DOCUMENT = 1;
 +
const FOLDER = 2;
 +
* Added var $type into class Node to indentify node type ( document or folder )
 +
* Solve bug in search to identify node document or folder
 +
* Solve bug in search with empty categories and keywords
 +
 
 +
== SDK for PHP 2.0 ==
 
* '''Added method in PropertyGroup'''
 
* '''Added method in PropertyGroup'''
 
<source lang="php">
 
<source lang="php">
Line 23: Line 38:
 
</source>
 
</source>
 
* '''Changes in class Document'''
 
* '''Changes in class Document'''
  added instance variable String title
+
  added variable String title
  added instance variable String language
+
  added variable String language
 
* '''Changes in class Folder'''
 
* '''Changes in class Folder'''
  added instance variable long style;
+
  added variable long style;
 
* '''Changes in class QueryParams'''
 
* '''Changes in class QueryParams'''
 
Variable folder replaces removed variable path to indicate folder from where starting searching.
 
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.
 
Variable folderRecursive indicates if search must be done in folder path and subfolders.
  
  added instance variable String folder
+
  added variable String folder
  added instance variable boolean folderRecursive
+
  added variable boolean folderRecursive
  added instance variable String title
+
  added variable String title
  added instance variable String language
+
  added variable String language
  added instance variable String notes
+
  added variable String notes
 
  removed instance variable String path
 
  removed instance variable String path
 
* '''Changes in class QueryResult'''
 
* '''Changes in class QueryResult'''
  added instance variable Node node
+
  added variable Node node
  added instance variable boolean attachment
+
  added variable boolean attachment
  removed instance variable Document document
+
  removed variable Document document
  removed instance variable Folder folder
+
  removed variable Folder folder
 
* '''Changes in class Node'''
 
* '''Changes in class Node'''
  added instance variable long nodeClass
+
  added variable long nodeClass
 
 
  
 +
== SDK for PHP 1.0.1 ==
 +
* Solve bug in search with empty categories and keywords
 
[[Category: Extension Guide]]
 
[[Category: Extension Guide]]

Latest revision as of 17:20, 27 August 2014

SDK for PHP 2.0.2

  • Removed two contants in class Node
const DOCUMENT = 1;
const FOLDER = 2;
  • Removed var $type into class Node to indentify node type ( document or folder )
  • Solve bug in search to identify with instanceof the node type (document or folder )

SDK for PHP 2.0.1

  • Added two contants in class Node
const DOCUMENT = 1;
const FOLDER = 2;
  • Added var $type into class Node to indentify node type ( document or folder )
  • Solve bug in search to identify node document or folder
  • Solve bug in search with empty categories and keywords

SDK for PHP 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 variable String title
added variable String language
  • Changes in class Folder
added 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 variable String folder
added variable boolean folderRecursive
added variable String title
added variable String language
added variable String notes
removed instance variable String path
  • Changes in class QueryResult
added variable Node node
added variable boolean attachment
removed variable Document document
removed variable Folder folder
  • Changes in class Node
added variable long nodeClass

SDK for PHP 1.0.1

  • Solve bug in search with empty categories and keywords