drzippie / Sense

A MVC Framework designed to build complex websites and web applications based on WordPress.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Sense Framework

SensioLabsInsight

Build Status

Sense is a MVC Framework designed to build complex websites and web applications based on WordPress.

Code your WordPress plugins and themes using best practices

YOUR CONTROLLER

class TestController extends AbstractController{
        
   /**
     * @Route("/profile/{name_slug}", name="profile_detail")
     */
    function demoAction($name_slug, \WP_Query $wp_query, \Request $request) {
             
        $repository = $this->get("repository.user");
        $user = $repository->findBy("username", $name_slug);
             
        return $this->resultTemplate('User/profile.php', array(
            "user" => $user
        ));
    }
}

YOUR VIEW

<?php
//your-plugin-path/Views/User/profile.php     

    get_header();
        
    $user = sense_view()->get("user");
?>
     
<h1><?php echo $user->getName() ?></h1>
     
<?php
    
    get_footer();

(Yes, you can use Twig if you want too ;)

About

A MVC Framework designed to build complex websites and web applications based on WordPress.


Languages

Language:PHP 100.0%