コード例 #1
0
 /**
  * Clean page's title and content and insert it into SearchableDataObjects
  * @param Page $p
  */
 public static function insertPage(Page $p)
 {
     $Content = Purifier::PurifyTXT($p->Content);
     $Content = Purifier::RemoveEmbed($Content);
     self::storeData($p->ID, $p->ClassName, $p->Title, $Content);
 }