Server : Apache/2 System : Linux vps.sdns.vn 3.10.0-1160.15.2.el7.x86_64 #1 SMP Wed Feb 3 15:06:38 UTC 2021 x86_64 User : phatdatpq ( 1022) PHP Version : 7.2.34 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/phatdatpq/public_html/wp-content/plugins/loco-translate/src/admin/ |
Upload File : |
<?php /** * Generic navigation helper. */ class Loco_admin_Navigation extends ArrayIterator { /** * @return Loco_admin_Navigation */ public function add( $name, $href = null, $active = false ){ $this[] = new Loco_mvc_ViewParams( compact('name','href','active') ); return $this; } /* not currently used * @return Loco_admin_Navigation * public function addRoute( $name, $action ){ $href = Loco_mvc_AdminRouter::generate( $action ); return $this->add( $name, $href ); }*/ /** * Create a breadcrumb trail for a given view below a bundle * @return Loco_admin_Navigation */ public static function createBreadcrumb( Loco_package_Bundle $bundle ){ $nav = new Loco_admin_Navigation; // root link depends on bundle type $type = strtolower( $bundle->getType() ); if( 'core' !== $type ){ $link = new Loco_mvc_ViewParams( array( 'href' => Loco_mvc_AdminRouter::generate($type), ) ); if( 'theme' === $type ){ $link['name'] = __('Themes','loco-translate'); } else { $link['name'] = __('Plugins','loco-translate'); } $nav[] = $link; } // Add actual bundle page, href may be unset to show as current page if needed $nav->add ( $bundle->getName(), Loco_mvc_AdminRouter::generate( $type.'-view', array( 'bundle' => $bundle->getHandle() ) ) ); // client code will add current page return $nav; } /** * @return Loco_mvc_ViewParams * public function getSecondLast(){ $i = count($this); if( $i > 1 ){ return $this[ $i-2 ]; } }*/ }