Code Monkey home page Code Monkey logo

jelixphpresponse's Introduction

jelixPhpResponse

PHP response for Jelix frameworks, it allow you to use php code inside templates with the ".php" file extension. Usage

First put the phpResponse class in your app responses directory '/responses/'

like that '/responses/phpResponse.class.php'

Second declare the response in your app config file '/var/config/mainconfig.ini.php'

or in the entrypoint configuration file 'config/index/config.ini.php'

For Example :

[responses]
html=myHtmlResponse
...
php=phpResponse

Use phpResponse in your controller

<?php

class defaultCtrl extends jController {
    
    function index() {
        $rep = $this->getResponse('php');
        $rep->tplname = "mytemplate";
        $rep->assign('salut','<h1>  Mou kwaba ooh! </h1>');
        return $rep;
    }
    
}

Use php response in templates

Create template in your module templates directory '/modules/your_module_name/templates/mytemplate.php' with the '.php' extension

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
        <title>Mou kwaba phpResponse</title>
    </head>
    <body>
        <?php echo $this->salut;?>
    </body>
</html>

Changelog

0.1 put in github

jelixphpresponse's People

Contributors

aurellemeless avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.