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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T03:51:45+00:00 2026-05-24T03:51:45+00:00

Model <?php class Tonguetwister extends AppModel { var $name = ‘Tonguetwister’; //The Associations below

  • 0

Model

<?php
class Tonguetwister extends AppModel {
        var $name = 'Tonguetwister';
        //The Associations below have been created with all possible keys, those that are not needed can be removed

        var $belongsTo = array(
                'language' => array(
                        'className' => 'language',
                        'foreignKey' => 'language_alias',
                        'dependent'=> true
                )
        );
}
?>

Controller

<?php
class TonguetwistersController extends AppController {

        var $name = 'Tonguetwisters';
        var $uses = array('Tonguetwister', 'Language');

        function index() {
                $this->set('languages', $this->Language->find('all'));
        }

        function view($id = null) {
                if (!$id) {
                        $this->Session->setFlash(__('Invalid tonguetwister', true));
                        $this->redirect(array('action' => 'index'));
                }
                $this->set('tonguetwisters', $this->Tonguetwister->find('all', array('conditions' => array('language_alias' => $id))));
        }

}
?>  

I only want to see languages on index() that have tongue twisters. How can I do this?

  • 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-24T03:51:46+00:00Added an answer on May 24, 2026 at 3:51 am

    There might be a more efficient way, but here’s how to pick only unique languages from the Tonguetwister table:

    function index() {
        $languageList = $this->Tonguetwister->find( 
            'list',
            array(
                'fields' => array( 'language_alias', 'language_alias' ),
                'group' => 'Tonguetwister.language_alias',
                'recursive' => -1
            )
        );
    
        // $languageList is now an array that holds the language ids
    
        $this->set(
            'languages', 
            $this->Tonguetwister->Language->find(
                'all',
                array( 
                    'conditions' => array( 
                        'Language.id' => $languageList
                    ) 
                )
            )
        );
    }
    

    By the way, you don’t need to put Language into $uses. Since they have a relation set you can access the Language model with $this->Tonguetwister->Language.

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

Sidebar

Related Questions

I have this model at app/models/product.php : class Product extends AppModel { var $hasAndBelongsToMany
My HotelAddress Model: <?php class HotelAddress extends AppModel { var $name = 'HotelAddress'; var
I have a function in my Comic Model as such: <?php class Comic extends
i created a model object in PHP class User { public $title; public function
This is my user class: <? require_once(dirname(__FILE__).'/DB.class.php'); require_once(dirname(__FILE__).'/Model.class.php'); class Benutzer extends Model { private
I have the following model : class Model extends BaseModel { public function save($conn
I created a new model class as my_model.php inside /models folder, and a function
I have a template file: 'template.txt' like below: class Core_Model_DbTable_{table_name} extends YouNet_Db_Table { const
I have a Model called blog_model. The code for its constructor is below: class
With include('basemodel.php'); I get Fatal error: Class 'BaseModel' not found in C:\xampp\htdocs\allsides\account\model.php on line

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.