I am very new to coding in PyroCMS and CodeIgnitor so I apologize for my lack of knowledge.

I am working on a module that allows me to display a project on each page and lists them on a listing page. At the moment I have 5 tables in my database:

work (projects) clients agency roles project types

The idea is that when creating a project a series of drop downs are pulling in the information from the other tables.

I have these projects listed on the fronted as well as displaying info on the project pages which pulls it in from 'work' table in the database.

The issue I am facing is that the columns in the project table that represent the other four tables have values stored as numbers, the ID for each row, rather than the name of the item in the table. Instead of the names appearing for each element on the page it is only displaying the numbers. I need to find a way to pull the names from the other tables.

I have played around with the code and can display an array of the items in each table but I don't know how to display just one item specific to the project that is visible.

I found this thread on the forum and tried to integrate it without much success.

http://www.pyrocms.com/forums/topics/view/3422

Controller Code

class Work extends Public_Controller    
{

    public function __construct()
    {
        parent::__construct();

        // Load the required classes
        $this->load->model('projects_m');
        $this->load->model('clients_m');
        $this->load->model('projtypes_m');
        $this->load->model('roles_m');
        $this->load->model('agency_m');
        $this->lang->load('work');      
        $this->template->append_metadata(css('work.css', 'work'))
                        ->append_metadata(js('work.js', 'work'));

    }

   public function _remap($method)
    {
        if($method == 'index')
        {
            $this->index();
        }
        else
        {
            $this->project($method);
        }
    }

    /**
     * index method
     *
     * @access public
     * @return void
     */
    public function index()
    {

        $projects = $this->projects_m->get_all();   

        $this->template->set('projects', $projects)
                       ->build('index', $this->data);
    }

    public function project($slug = FALSE)
    {
        if(!$slug)
        {
            redirect('work');
        }
        else
        {
            $projects = $this->projects_m->get_by('slug', $slug);       
            $this->data->projects =& $projects;  
            $this->template->set('projects', $projects)
                           ->build('project', $this->data);
        }
    }
}

View Code

<ul id="proj-list">
<?php foreach($projects as $project): ?>
    <?php  ?>
    <li id="proj-list-top">
        <a href="/work/strongbow-gold/"><img src="http://localhost/repos/paulflood/addons/default/themes/paul/img/inline/projects/sbg/sbg.jpg" alt="Strongbow Gold"/></a>
        <div class="proj-details">
            <img class="proj-logo" src="http://localhost/repos/paulflood/addons/default/themes/paul/img/inline/projects/sbg/logo.jpg" alt="Strongbow Logo"/>
            <span class="proj-type"><?php echo $project->projtype; ?></span>
            <h3><?php echo $project->name; ?></h3>
            <p><?php echo $project->short; ?></p>
            <a href="<?php echo rtrim(site_url(), '/').'/work/'; ?><?php echo $project->slug; ?>">View Project</a></div>
    </li>
<?php endforeach; ?>
</ul>

There is nothing special happening in the Modal file, everything is being pulled in.

If anybody could throw some light on this I would be really grateful as I am really struggling at the moment to figure this out.

Cheers

link|improve this question
feedback

1 Answer

It seems like you need to use JOIN in your SQL statements in order to retreive the names from the other tables. Post here the tables for further help.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.