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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T18:18:49+00:00 2026-06-07T18:18:49+00:00

In my view I am using this code: $numbers = $this->Paginator->numbers(array( ‘separator’ => ”,

  • 0

In my view I am using this code:

$numbers = $this->Paginator->numbers(array(
    'separator'     => '',
    'tag'           => 'li',
    'currentClass'  => 'active'
));

which outputs:

<li class="active">1</li>
<li><a href="/controller/action/page:2">2</a></li>
<li><a href="/controller/action/page:3">3</a></li>

This works pretty well, the only issue I have with it is that the current page is not a link. Is it possible to make the current page a link?

Thanks for reading.

  • 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-06-07T18:18:51+00:00Added an answer on June 7, 2026 at 6:18 pm

    I implemented a class extension like Dave suggested, but instead of copying all the code from the original class, I did a string replace method instead, that way, if I update the CakePHP core library, this should fail pretty gracefully, where as copying all the code from the original Helper may cause loss of features, bug fixes, etc. Here is the class that I implemented:

    <?php
    
    class AppPaginatorHelper extends PaginatorHelper
    {
        public function numbers($options = array()) {
            $output = parent::numbers($options);
    
            // get the current page number, and create a link with it
            $current = $this->current();
            $currentLink = $this->link($current, array('page' => $current));
    
            // if you're using cake pre 2.1 you cannot change the current class with
            // the options array, so it will always be "current"
            $find = "<li class=\"current\">{$current}</li>";
            $replace = "<li class=\"active\">{$currentLink}</li>"; 
    
            $output = str_replace($find, $replace, $output);
    
            return $output;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using this code to render an image from view. Then i am saving
While using this code, i can't get any results... Ext.define('Teste.view.Main', { extend: 'Ext.Container', initialize:
i have a scroll view with multiple images and i am using this code.
I have downloaded the source code and using this logview to view log4net logs.
I wanted to generate a list view using below code. But after running this
I am using this to determine which view to go to next, from the
I'm trying to create a page by using view 2. This page list all
I am using IE8 in compatibility view and while this does produce acceptable rendering,
I have this view @model IEnumerable<ViewModelRound2> ... <snip> ... @{ using (Html.BeginForm(new { round1Ring3Bids
I used this tutorial to rename a view controller http://iosdeveloperzone.com/2011/05/14/how-to-rename-a-class-using-refactoring-in-xcode-4/ Basically just switch to

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.