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 5987829
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T22:52:18+00:00 2026-05-22T22:52:18+00:00

I’m using CakePHP 1.3.8, and I’ve installed the CakeDC Search plugin . I have

  • 0

I’m using CakePHP 1.3.8, and I’ve installed the CakeDC Search plugin. I have a Tutorial model, which is in a HABTM relationship with a LearningGoal model.

I have a search action & view in the Tutorials controller with which I can successfully search fields in the Tutorial model. I’d also like to filter my tutorial search results using LearningGoal checkboxes on the same form. I’ve tried adding various parameters to Tutorial’s $filterArgs and TutorialsController’s $presetVars. I’ve also tried moving the relevant $filterArgs to the LearningGoal model. I have not yet been able to successfully trigger the entry for learning goals in $filterArgs.

I think I must be missing something obvious. Or maybe the Search plugin doesn’t support what I’m trying to do. Does anyone know how to use this plugin to search on associated models?

  • 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-22T22:52:19+00:00Added an answer on May 22, 2026 at 10:52 pm

    So here’s what I’ve figured out. You can combine what’s below with the Search plugin directions to search on related models.

    The $filterArgs piece in the Tutorial model must look like this:

    var $filterArgs = array(
      array('name' => 'LearningGoal', 'type' => 'subquery', 'method' => 'findByLearningGoals', 'field' => 'Tutorial.id'),
    );
    

    Here’s the supporting function in the Tutorial model:

    function findByLearningGoals($data = array()) {
      $ids = explode('|', $data['LearningGoal']);
      $ids = join(',', $ids);
      $this->LearningGoalsTutorial->Behaviors->attach('Containable', array('autoFields' => false));
      $this->LearningGoalsTutorial->Behaviors->attach('Search.Searchable');
    
      $query = $this->LearningGoalsTutorial->getQuery('all',
         array(
           'conditions' => array('LearningGoalsTutorial.learning_goal_id IN (' . $ids . ')'),
           'fields' => array('tutorial_id'),
         )
      );
      return $query;
    }
    

    In TutorialsController, $presetVars should look like this:

    public $presetVars = array(
      array('field' => 'LearningGoal', 'type' => 'checkbox', 'model' => 'Tutorial'),
    );
    

    And in my search action in TutorialsController, I did this:

    $this->LearningGoal = $this->Tutorial->LearningGoal;
    

    The Prg component seems to need that.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a text area in my form which accepts all possible characters from
I have thousands of HTML files to process using Groovy/Java and I need to
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
That's pretty much it. I'm using Nokogiri to scrape a web page what has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
I am trying to understand how to use SyndicationItem to display feed which is
I used javascript for loading a picture on my website depending on which small
I have a jquery bug and I've been looking for hours now, I can't

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.