URI Маршрутизация для codeigniter - PullRequest
0 голосов
/ 22 ноября 2011

Я пытаюсь понять, как мне это сделать. Следующий контроллер предназначен для биостраницы для каждого борца. Вот пример.

http://kansasoutlawwrestling.com/bio/kid-wonder

Теперь, если вы заметили, есть три ссылки Биография, Борьба, Появления.

У меня один вопрос: должны ли все три быть разными функциями внутри этого контроллера?

Если ответ положительный, действительно ли ссылки на странице верны?

<?php 
if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Bio extends CI_Controller
{

function index($character = "jfkdlsjl")
{

    //Config Defaults Start
    $msgBoxMsgs = array();//msgType = dl, info, warn, note, msg
    $cssPageAddons = '';//If you have extra CSS for this view append it here
    $jsPageAddons = '';//If you have extra JS for this view append it here
    $metaAddons = '';//Sometimes there is a need for additional Meta Data such in the case of Facebook addon's
    $siteTitle = '';//alter only if you need something other than the default for this view.
    //Config Defaults Start


    //examples of how to use the message box system (css not included).
    //$msgBoxMsgs[] = array('msgType' => 'dl', 'theMsg' => 'This is a Blank Message Box...');

    /**********************************************************Your Coding Logic Here, Start*/


    $activeTemplate = $this->sitemodel->getTemplate();
    $footerLinks = $this->sitemodel->getFooterNav();
    $bodyContent = "bio";//which view file
    $bodyType = "main";//type of template
    $this->data['activeTemplate'] = $activeTemplate;
    $this->data['footerLinks']= $footerLinks;
    $this->load->model('biomodel');
    if($character !== "jfkdlsjl")
    {
        if((!empty($character))||(!isset($character))||(trim($character) !== '')||($character !== NULL))
        {
            $bioArray = $this->biomodel->getCharacterBio($character);
            if ($bioArray == "empty")
            {
                $this->data['bioArray']= array();
            }
            else
            {
                if (($bioArray[0]->characters_statuses_id == 2)||($bioArray[0]->characters_statuses_id == 3)||($bioArray[0]->characters_statuses_id == 5))
                {
                    $this->data['bioArray']= array(); 
                }
                else
                {
                    $this->data['bioArray']= $bioArray;
                    $bioPagesArray = $this->biomodel->getBioPages();
                    $alliesArray = $this->biomodel->getCharacterAllies($bioArray[0]->id);
                    $rivalsArray = $this->biomodel->getCharacterRivals($bioArray[0]->id);
                    $quotesArray = $this->biomodel->getCharacterQuotes($bioArray[0]->id);
                    $this->data['bioPagesArray']= $bioPagesArray;
                    $this->data['alliesArray']= $alliesArray;
                    $this->data['rivalsArray']= $rivalsArray;
                    $this->data['quotesArray']= $quotesArray;
                }
            }
        }
    }

    /***********************************************************Your Coding Logic Here, End*/

    //Double checks if any default variables have been changed, Start.
    //If msgBoxMsgs array has anything in it, if so displays it in view, else does nothing.
    if(count($msgBoxMsgs) !== 0)
    {
        $msgBoxes = $this->msgboxes->buildMsgBoxesOutput(array('display' => 'show', 'msgs' =>$msgBoxMsgs));
    }
    else
    {
        $msgBoxes = array('display' => 'none');
    }

    if($siteTitle == '')
    {
        $siteTitle = $this->metatags->SiteTitle(); //reads
    }

    //Double checks if any default variables have been changed, End.

    $this->data['msgBoxes'] = $msgBoxes;
    $this->data['cssPageAddons'] = $cssPageAddons;//if there is any additional CSS to add from above Variable this will send it to the view.
    $this->data['jsPageAddons'] = $jsPageAddons;//if there is any addictional JS to add from the above variable this will send it to the view.
    $this->data['metaAddons'] = $metaAddons;//if there is any addictional meta data to add from the above variable this will send it to the view.
    $this->data['pageMetaTags'] = $this->metatags->MetaTags();//defaults can be changed via models/metatags.php
    $this->data['siteTitle'] = $siteTitle;//defaults can be changed via models/metatags.php
    $this->data['bodyType'] = $bodyType;
    $this->data['bodyContent'] = $bodyContent;
    $this->load->view($activeTemplate[0]->short_name.'/index', $this->data);

}
}

/* End of file bio.php */
/* Location: ./application/controllers/bio.php */

РЕДАКТИРОВАТЬ: я действительно обеспокоен ссылкой на страницу биографии, когда я нахожусь на странице биографии, как ссылка выше.

Вот что у меня есть для моего маршрута: $ route ['bio / (: any)'] = "bio / index / $ 1";

Ответы [ 2 ]

1 голос
/ 22 ноября 2011

Было бы лучше иметь отдельные контроллеры для каждого из 3-х каналов.

Но если вы не хотите и все еще хотите ссылки /appearances/whatever, вот маршрут, который вам нужен, чтобы все это было в контроллере Bio:

ОБНОВЛЕНИЕ - это все еще плохой подход, но он должен делать.

if ($this->uri->segment(1) == 'bio') {
    $route['bio/(:any)'] = "bio/index/$1";
} else {
    $route['wrestling/(:any)'] = "bio/wrestling/$1";
    $route['appearances/(:any)'] = "bio/appearances/$1";
}

ОБНОВЛЕНИЕ 2: вы меня запутали, но первое решение должно работать, даже порядок не имеет значения:

$route['bio/(:any)'] = "bio/index/$1";
$route['wrestling/(:any)'] = "bio/wrestling/$1";
$route['appearances/(:any)'] = "bio/appearances/$1"; 

bio/kid переходит к bio/index/kid

wrestling/kid переходит к bio/wrestling/kid

appearances/kid переходит к bio/appearances/kid

1 голос
/ 22 ноября 2011

У вас есть эта настройка:

Функции

function index($wrestlerName = null){ }
function wrestling($wrestlerName = null){ }
function appearances($wrestlerName = null){ }

Ссылки

bio/kid-wonder
bio/wrestling/kid-wonder
bio/appearances/kid-wonder

Если вы хотите иметь wrestling/kid-wonder и appearances/kid-wonder без био в начале URL, вам нужно будет создать новые контроллеры для борьбы и появления.

class wrestler extends CI_Controller {
 function index($wrestlerId = NULL){
   if($wrestlerId != NULL){

   }
 }
}

class appearances extends CI_Controller {
 function index($wrestlerId = NULL){
   if($wrestlerId != NULL){

   }
 }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...