Beispiel #1
0
    public function RemoveRecipe($_criteria) {

        $dbl = new DBLayer();
        $dbl->setCollectionObj($this->Colname);
        $this->objID = $dbl->RemoveCollection($this->Colname, $_criteria);
        $cursor = $dbl->get_CollectionObjectbyid($this->Colname, $this->objID);
//var_(iterator_to_array($cursor));
        $this->instructions->value = $arr['instructions'];
        $this->ingredients->value = $arr['ingredients'];
        echo "<b>Instructions</b> : " . $this->printinstructionsHtmlTag() . '<br>';
        echo "<b>Ingredients</b> : " . $this->printingredientsHtmlTag() . '<br>';
    }
Beispiel #2
0
 public function RemoveThing($paramName, $paramValue)
 {
     $dbl = new DBLayer();
     $dbl->setCollectionObj($this->Colname);
     $cursor = $dbl->get_CollectionObjectbysearchParameter($this->Colname, $paramName, $paramValue);
     foreach ($cursor as $arr) {
         $this->objID = $arr["_id"];
         $this->name->value = $arr["name"];
         $this->url->value = $arr["url"];
         $this->image->value = $arr["image"];
         $this->description->value = $arr["description"];
     }
     $obj = $this->prepare_array();
     $criteria = array("_id" => $this->objID);
     $this->objID = $dbl->RemoveCollection($this->Colname, $criteria);
 }
Beispiel #3
0
public function RemoveCreativeWork($_criteria)
{

$dbl=new DBLayer();
$dbl->setCollectionObj($this->Colname);
$this->objID=$dbl->RemoveCollection(UpdateCollection($this->Colname, $_criteria));
$cursor = $dbl->get_CollectionObjectbyid($this->Colname,$this->objID);
foreach ($cursor as $arr)
{
$this->about->value = $arr['about'];
$this->author->value = $arr['author'];
}

echo "<b>about</b> : " . $this->printaboutHtmlTag().'<br>';
echo "<b>Author</b> : ". $this->printauthorHtmlTag().'<br>';
}