Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7436771
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T10:17:39+00:00 2026-05-29T10:17:39+00:00

I have a Games model which hasMany Avatars and Agents. When i remove the

  • 0

I have a Games model which hasMany Avatars and Agents. When i remove the game, i want to clean up all the remaining data, so i also want to remove all Avatars and Agents with the corresponding game_id:

namespace app\models;

use app\models\Avatars;
use app\models\Agents;

class Games extends \lithium\data\Model
{
    public static function __init($options = array()) {
        parent::__init($options);
        $self = static::_instance(__CLASS__);

        Games::applyFilter('remove', function($self, $params, $chain) {

            $conditions = array( 'game_id' => $params['conditions']['_id'] );

            $message = new \app\extensions\helper\Message();
            $debugString = var_export($conditions, true);
            $message->addDebugMessage("params:{$debugString}");
            //Output: 
            //params:array ( 'game_id' => '4f301f69a170c8cf52000002', )


            if(!Agents::remove($conditions)) { $message->addErrorMessage('Es konnten nicht alle Agents geloescht werden.'); };
            if(!Avatars::remove($conditions)) { $message->addErrorMessage('Es konnten nicht alle Avatare geloescht werden.'); };

            return $chain->next($self, $params, $chain);
        });

    }
}

Though the game gets removed, agents and avatars remain in the MongoDB.
Does someone have a hint on this?

Example of agent in db

>db.agents.find()
{ "_id" : ObjectId("4f301f71a170c8391f000000"), "game_id" : ObjectId("4f301f69a170c8cf52000002"), "type" : "army", "subtype" : "deer", "units" : 5, "xPos" : 5, "yPos" : 5 }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T10:17:40+00:00Added an answer on May 29, 2026 at 10:17 am

    I’d have to look, but I don’t think remove() casts values. You’d need to do:

    $conditions = array( 'game_id' => new MongoId($params['conditions']['_id']));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a games table which holds the data about a game. Then another
I have a Game model which has_many Rounds which has_many Shots. Per game, each
I have a data model called Game . In the Game model, I have
I have a model, Game , which has_many :piles . In fact, I know
In my model I have Games. Each Game has an Event associated with it,
I have written a checkers game model which has a Board object that holds
I have a large collection of retro games consoles and computers, I want to
I have a database designed to hold card data from various trading card games.
I have a Django model, which is essentially a list of words. It is
I currently have a model for team.rb and user.rb, which is a many to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.