Welcome Guest, Not a member yet? Register   Sign In
Can't use $this->uri->segment in if check...
#1

[eluser]Bramme[/eluser]
Code:
$section = isset($this->uri->segment(2)) ? $this->uri->segment(2) : 'overview_tutorials';
This doesn't work... For that matter, stuff like $this->session->userdata doesn't work either. But I need this! Is there some way to work around this?

I'll try to explain what I need, maybe you guys have got some other idea that could solve my problem:
I'm porting an existing backend to CI, his current backend has got a shitload of links in the navigation, so I want to reduce this and group them by their function. Each group has its subnav, directing to their controllers, if you click on one of the main nav links, you simply get taken to the first controller of the group...

At the moment I do this like this in my controller constructor:
Code:
$tutorial_array = array('overview_tutorials' => 'Overview', 'new_tutorial' => 'New tutorial', 'categories' => 'Categories', 'ranks' => 'Ranks');
$news_array = array('overview_news' => 'Overview', 'new_news' => 'New news-item');
$section = $this->uri->segment(2);
if(array_key_exists($section, $news_array)) {
    $data['subnav_array'] = $news_array;
    $data['nav_current'] = 2;
} else {
    $data['subnav_array'] = $tutorial_array;
    $data['nav_current'] = 1;
}
$this->load->vars($data);

and my HTML looks like this
Code:
<ul id="nav">
    <li&lt;?php if($nav_current == 1) echo " id=\"current\""; ?&gt;><a href="/admin/overview_tutorials">Tutorials</a></li>
    <li&lt;?php if($nav_current == 2) echo " id=\"current\""; ?&gt;><a href="/admin/overview_news">News</a></li>
</ul>
<ul>
    &lt;?php foreach($subnav_array as $nav => $item) { ?&gt;
    <li><a href="/admin/&lt;?php echo $nav; ?&gt;">&lt;?php echo $item; ?&gt;</a></li>
    &lt;?php } ?&gt;
</ul>
This works like a charm, the only thing is: I'm in trouble when someone visits mysite.com/admin/, because the second uri segment isn't set then. I could set a redirect on the index, but that'd be sloppy imo.

Any ideas? Thanks a bunch!
#2

[eluser]nevercraft[/eluser]
This will work:

Code:
$section = $this->uri->segment(2, 'overview_tutorials');

The second parameter of the segment() function is a default value to return if the segment you're looking for doesn't exist.

For sessions you could do something like:
Code:
$var = ($this->session->userdata('varname') != FALSE ? $this->session->userdata('varname') : 'default value');
#3

[eluser]Bramme[/eluser]
Oh! Thanks!

This is what happens when I start coding at 2am, I forget to check the user guide and just start posting. Thanks!




Theme © iAndrew 2016 - Forum software by © MyBB