HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
UrlReprocessController.php
Go to the documentation of this file.
1 <?php
2 
4 {
5  public function actionIndex($siteId, $urlMd5)
6  {
7  $this->renderPartial('__urlReprocessDialog', array(
8  'siteId' => $siteId,
9  'urlMd5' => $urlMd5,
10  )
11  );
12  }
13 
14  public function actionReprocess()
15  {
16  $command = new UrlReprocess;
17  $command->updateUrlInfo();
18  Yii::app()->request->redirect($_SERVER['HTTP_REFERER']);
19  }
20 }