/**
  * create view
  * 
  * @param arrray $params associative array of view
  * - $params['to_uid']: integer user id transfer to
  * - $params['items_to_transfer']: array of item information id to transfer
  * - $params['items_to_transfer'][]['transfer_enable']:
  *    boolean true if it can be transfer.
  * - $params['items_to_transfer'][]['transfer_explanation']:
  *    string explanation why it can't be transfer.
  * - $params['items_to_transfer'][]['item_id']: integer item id
  * - $params['items_to_transfer'][]['lock_type']:
  *    integer item lock type(see XooNIpsItemLock)
  * - $params['items_to_transfer'][]['child_items']:
  *    array of child item information
  * - $params['items_to_transfer'][]['child_items'][]['item_id']:
  *    integer child item id
  * - $params['items_to_transfer'][]['child_items'][]['lock_type']:
  *    integer item lock type(see XooNIpsItemLock)
  * - $params['to_user_options']: associative array
  * - $params['to_user_options'][(uid:integer)]:
  *    string uname(login name) transfer to
  * - $params['transfer_enable']:
  *    boolean true if all items can be transfered.
  */
 function XooNIpsViewTransferUserItemList($params)
 {
     parent::XooNIpsView($params);
 }
 /**
  * create view
  * 
  * @param arrray $params associative array of view
  * - $params['template_file_name']: 
  * - $params['template_vars']: 
  */
 function XooNIpsViewTransferUserRequestedItemDetail($params)
 {
     parent::XooNIpsView($params);
 }
 /**
  * create view
  * 
  * @param arrray $params associative array of view<br />
  * - $params['to_uid']:
  *   integer user id transfer to<br />
  * - $params['item_ids_to_transfer']:
  *    array of integer of item id to transfer<br />
  * - $params['child_item_ids_to_transfer']: associative array<br />
  * - $params['child_item_ids_to_transfer'][(item id:integer)]:
  *    array of child item id<br />
  * - $params['is_user_in_groups']:
  *    boolean true if to_uid is subscribed to group
  *    of all transfered items.<br />
  * - $params['gids_to_subscribe']:
  *    array group id(s) to subscribe transferee to complete transfer.<br />
  */
 function XooNIpsViewTransferUserItemConfirm($params)
 {
     parent::XooNIpsView($params);
 }
 /**
  * create view
  * 
  * @param arrray $params associative array of view
  * - $params['from_uid']:integer user id transfer from
  * - $params['to_uid']: integer user id transfer to
  * - $params['from_index_id']: integer index id transfer from
  * - $params['to_index_id']: integer index id transfer to
  * - $params['from_index_item_ids']: array of integer item id
  *   of index of from_index_id
  * - $params['can_not_transfer_items']: array like below
  * - $params['can_not_transfer_items']['locked']:
  *   array of item id that can not be transferd because of item lock.
  * - $params['can_not_transfer_items']['have_another_parent']:
  *   array of item id that can not be transferd 
  *   because item has dependency to some other items.
  * - $params['child_items']: associative array
  * - $params['child_items'][(item_id:integer)]:
  *   array of item_id of child items.
  * - $params['selected_item_ids']:
  *   array of item id that is selected to transfer.
  * - $params['page']: integer page number to show.
  * - $params['from_user_options']: associative array
  * - $params['from_user_options'][(uid:integer)]:
  *   string uname(login name) transfer from
  * - $params['to_user_options']: associative array
  * - $params['to_user_options'][(uid:integer)]:
  *   string uname(login name) transfer to
  * - $params['from_index_options']: array like below
  * - $params['from_index_options'][]: associative array like below
  * - $params['from_index_options'][]['index_id']: integer index id
  * - $params['from_index_options'][]['depth']:
  *   integer depth of the index(zero if the index is child of IID_ROOT)
  * - $params['from_index_options'][]['title']: string name of the index
  * - $params['from_index_options'][]['item_count']:
  *   integer number of items in the index
  * - $params['to_index_options']:
  *   array same structure with 'from_index_options'
  */
 function XooNIpsViewTransferAdminItemSelect($params)
 {
     parent::XooNIpsView($params);
 }