Esempio n. 1
0
 static function getComments($id)
 {
     $c = new Criteria();
     // $c->addByColumn('created_at');
     $c->add(CommentPeer::ARTICLE_ID, $id);
     return CommentPeer::doSelect($c);
 }
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      PropelPDO $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, PropelPDO $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(CommentPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(CommentPeer::DATABASE_NAME);
         $criteria->add(CommentPeer::ID, $pks, Criteria::IN);
         $objs = CommentPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
Esempio n. 3
0
$databaseManager = new sfDatabaseManager();
$databaseManager->initialize();
//$data = new sfPropelData();
//$data->loadData(sfConfig::get('sf_data_dir').DIRECTORY_SEPARATOR.'fixtures');
//$code = CodePeer::retrieveByPK(1);
//$code->setRating(4, 1);
//$code->save();
//$tag = new Tag();
//$tag->setTag('Hede');
//$tag->setTagNormalized(Tag::normalize('Hede'));
//$tag->save();
//$soap = new SoapClient("http://localhost:8080/axis2/services/CodesnippetService?wsdl");
//print_r($soap);
//$func = $soap->__getFunctions();
//print_r($func);
//$rtn = $soap->highlight(array("language"=>"c", "code"=>"deneme"));
//print_r($rtn);
//echo $rtn->return;
$languages = CodeLanguagePeer::doSelect(new Criteria());
foreach ($languages as $language) {
    $c = new Criteria();
    //$c->add(CommentPeer::ID, 8);
    $comments = CommentPeer::doSelect($c);
    foreach ($comments as $comment) {
        echo '<' . $language->getTag() . '\\-code>(.|\\r|\\n)+<\\/' . $language->getTag() . '\\-code>' . "\n";
        $arr = array();
        preg_match_all("/<" . $language->getTag() . "\\-code>(.+)<\\/" . $language->getTag() . "\\-code>/isU", $comment->getComment(), $arr, PREG_SET_ORDER);
        print_r($arr);
    }
}
print_r(myUtils::highlightSnippet('deneme'));
Esempio n. 4
0
 /**
  * Gets an array of Comment objects which contain a foreign key that references this object.
  *
  * If this collection has already been initialized with an identical Criteria, it returns the collection.
  * Otherwise if this Article has previously been saved, it will retrieve
  * related Comments from storage. If this Article is new, it will return
  * an empty collection or the current collection, the criteria is ignored on a new object.
  *
  * @param      PropelPDO $con
  * @param      Criteria $criteria
  * @return     array Comment[]
  * @throws     PropelException
  */
 public function getComments($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(ArticlePeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collComments === null) {
         if ($this->isNew()) {
             $this->collComments = array();
         } else {
             $criteria->add(CommentPeer::ARTICLE_ID, $this->id);
             CommentPeer::addSelectColumns($criteria);
             $this->collComments = CommentPeer::doSelect($criteria, $con);
         }
     } else {
         // criteria has no effect for a new object
         if (!$this->isNew()) {
             // the following code is to determine if a new query is
             // called for.  If the criteria is the same as the last
             // one, just return the collection.
             $criteria->add(CommentPeer::ARTICLE_ID, $this->id);
             CommentPeer::addSelectColumns($criteria);
             if (!isset($this->lastCommentCriteria) || !$this->lastCommentCriteria->equals($criteria)) {
                 $this->collComments = CommentPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastCommentCriteria = $criteria;
     return $this->collComments;
 }