$page->move($uid)

Changes the uid for the page

  • $uid (string)
    A UID
  • return (boolean)

Example

<?php
try {
  $page->move('a-new-uid');

} catch(Exception $e) {

  echo $e->getMessage();

}