Exemplo n.º 1
0
 function RenameFile()
 {
     global $langmessage, $gp_index, $page;
     includeFile('tool/Page_Rename.php');
     $new_title = gp_rename::RenameFile($this->title);
     if ($new_title !== false && $new_title != $this->title) {
         msg(sprintf($langmessage['will_redirect'], common::Link_Page($new_title)));
         $page->head .= '<meta http-equiv="refresh" content="15;url=' . common::GetUrl($new_title) . '">';
         return true;
     }
     return false;
 }
Exemplo n.º 2
0
 function RenameFile()
 {
     global $langmessage, $gp_index;
     includeFile('tool/Page_Rename.php');
     //prepare variables
     $title =& $_REQUEST['title'];
     if (!isset($gp_index[$title])) {
         message($langmessage['OOPS'] . ' (R0)');
         return false;
     }
     gp_rename::RenameFile($title);
 }
Exemplo n.º 3
0
 /**
  * Rename a page
  *
  */
 public static function RenamePage($page)
 {
     global $langmessage, $gp_index;
     includeFile('tool/Page_Rename.php');
     $new_title = gp_rename::RenameFile($page->title);
     if ($new_title !== false && $new_title != $page->title) {
         msg(sprintf($langmessage['will_redirect'], common::Link_Page($new_title)));
         $page->head .= '<meta http-equiv="refresh" content="15;url=' . common::GetUrl($new_title) . '">';
         $page->ajaxReplace[] = array('location', common::GetUrl($new_title), 15000);
         return true;
     }
     return false;
 }