Giter Site home page Giter Site logo

ephframe's Introduction

Hi there πŸ‘‹

Hi, I’m a formerly freelance full-stack developer from Berlin working for @bitly Europe (@Egoditor). Beforehand I was supporting agencies, businesses, and science projects with clean and fast performing JavaScript & PHP since 2001.

Whether it’s back end or front end, apps or web-based services, consulting or coding – I love to tackle complex challenges and always strive for a structured product.

GitHub stats

ephframe's People

Contributors

ephigenia avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

ephframe's Issues

Router & Redirects

It should be possible to create a Route that redirects to an other route with a given set of parameters. So that migrations from old to new urls are easily possible. Maybe the redirect to the other route works with the instance of that other route or with the name.

Hidden Form Field does not render value

The Hidden Form Element does not render it’s value which is set in the constructor. It’s correctly in the attributes but does not render in the output.

Form Element Select: OptGroup Generation with increment index

The Form Element Select should automatically use a increment index when a nested array is added as option list so that the numbers are not doubled.

https://github.com/Ephigenia/ephFrame/blob/master/lib/ephFrame/HTML/Form/Element/Select.php#L37

<?php

$select->options = array(
   'optGroupLabel1' => array(
       'Label1',
       'Label2',
  ),
  'optGroupLabel2' => array(
      'Label1',
      'Label2',
  )
);

would result in

<select>
  <optgroup label="optGroupLabel1">
     <option value="0">Label1</option>
     <option value="1">Label2</option>
  </optgroup>
  <optgroup label="optGroupLabel2">
     <option value="0">Label1</option>
     <option value="1">Label2</option>
  </optgroup>
</select>

and it should be:

<select>
  <optgroup label="optGroupLabel1">
     <option value="0">Label1</option>
     <option value="1">Label2</option>
  </optgroup>
  <optgroup label="optGroupLabel2">
     <option value="2">Label1</option>
     <option value="3">Label2</option>
  </optgroup>
</select>

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.