Adverticum HTML5 banner készítési info

Mivel az Adverticum nem tud mapparendszereket kezelni, ezért minden file-nak legyen egyedi az elnevezése. Így elkerülhetjük az összeakadást több kreatív esetében.

Printscreen

teljes képernyő

Full Page Screen Capture – Chrome Web Store

http://prnt.sc/

Do you want to take screenshots outside of your browser? Choose the most functional Lightshot download option in order to get this opportunity. This application allows you to take screenshots directly from your desktop.

PHP WordPress Plugin Tutorial | Development

Getting Started with WordPress Plugin Development: The Ultimate Guide (2015 Jan): https://premium.wpmudev.org/blog/wordpress-plugin-development-guide/

How To Create A WordPress Plugin (2014 Jul): https://www.elegantthemes.com/blog/tips-tricks/how-to-create-a-wordpress-plugin

Plugin API/Action Reference/the post: https://codex.wordpress.org/Plugin_API/Action_Reference/the_post#Example

Actions Run During a Typical Request: https://codex.wordpress.org/Plugin_API/Action_Reference

One drawback of WordPress development is that WordPress was released before PHP 5, so much of the WordPress code is procedural and can be difficult to organize.

PHP WordPress Plugin Tutorial using Object Oriented Programming Part 1: Advanced Features – Pak PHP Micro Framework package blog: http://www.phpclasses.org/blog/package/9505/post/2-PHP-WordPress-Plugin-Tutorial-using-Object-Oriented-Programming-Part-1-Advanced-Features.html

Contents
Introduction
How to Translate your plugin
How to Create a Simple Settings Page for your Plugin
How to create a Dashboard Widget
How to Make AJAX Calls
How to Create Custom Post Types and Taxonomies
How to Unit Test Your Plugin by Extending the WordPress XML-RPC interface
How to include third party scripts
Conclusion

PHP WordPress Plugin Tutorial using Object Oriented Programming Part 1: Basic Example – Pak PHP Micro Framework package blog: http://www.phpclasses.org/blog/package/9505/post/1-PHP-WordPress-Plugin-Tutorial-using-Object-Oriented-Programming-Part-1-Basic-Example.html

WordPress and Laravel: https://laravel-news.com/2016/01/wordpress-and-laravel/

A popular way of setting up a site like this is to use WordPress as the admin and then build out the frontend in a framework such as Laravel.

WordPress Corcel (under DEVelopment)

This way you can use WordPress as back-end, to insert posts, custom types, etc, and you can use what you want in front-end, like Silex, Slim Framework, Laravel, Zend, or even pure PHP (why not?).

Using WordPress with Lumen: http://adampatterson.ca/blog/2015/06/using-wordpress-with-lumen/

Removes duplicates values from an multidimensional array (PHP)

The idea: Serialize the item of the item (array) of the multidimensional array

Than Sort out the same item.

// serialize — Generates a storable representation of a value
$workArr =array();
foreach ($newDateArr as $value) {
$workArr[]= serialize ( $value );
}

$workArr = array_unique($workArr);

//unserialize — Creates a PHP value from a stored representation
$workArr2 =array();
foreach ($workArr as $value) {
$workArr2[]= unserialize( $value );
}

other source – but this was not worked for me:

How to remove duplicate values from a multi-dimensional array in PHP

http://stackoverflow.com/questions/307674/how-to-remove-duplicate-values-from-a-multi-dimensional-array-in-php

Storing HTML Form data locally

<script type=”text/javascript”>

$(document).ready(function() {

var formElements = {};
var current_siteurl = window.location.href;
//console.log( ‘current_siteurl: ‘+ current_siteurl);

//WRITE
$(“form :input”).each(function(){
var input = $(this);
// console.log( input.attr(‘name’));

$(“textarea[name='”+input.attr(‘name’)+”‘]”).keyup(function() {

// console.log(‘click:’+ $(“textarea[name='”+input.attr(‘name’)+”‘]”).val());
formElements[input.attr(‘name’)]  = $(“textarea[name='”+input.attr(‘name’)+”‘]”).val();
formElements_str = JSON.stringify(formElements);
// A süti neve az aktuális oldal neve, egyedi azonosító
Cookies.set(current_siteurl, formElements_str , { expires: 3 });

});
});

//READ
$(“#show_saved_btn”).click(function() {

formPack_str = Cookies.get(current_siteurl);
//console.log( ‘suti: ‘+ formPack_str);
if(formPack_str){
formPack = JSON.parse(formPack_str);
for (var k in formPack ){
if (formPack.hasOwnProperty(k)) {
$(“textarea[name='”+k+”‘]”).val(formPack[k]);
}
}
}

});
});

</script>

 

 

Autosave form content to Local Storage, a cookie if LS is not available, as changes are made realtime in forms

https://github.com/BenGriffiths/jquery-save-as-you-type

The jQuery.autosave plugin automatically and unobtrusively saves form data based on a set of critera. : https://github.com/nervetattoo/jquery-autosave

Guide to have Persistent Form data using jQuery: http://time2hack.com/2013/09/guide-to-have-persistent-form-data-using-jquery.html

The idea is to store the form data in the cookies and refill tht data if the form is called once again. And if the for submission goes successful; we will just clear the cookies.

JQuery Cookie Lib: https://github.com/js-cookie/js-cookie

Photoshop tutorials

25 Awesome Movie Effects Photoshop Tutorials : http://line25.com/tutorials/movie-effects-photoshop-tutorials

We gathered here some really cool movie effects Photoshop tutorials which will teach you how to recreate your favorite movies posters or even manipulate your own photos and make you look like your favorite movie character!

20 Brilliant Sci-Fi/Space Photoshop Tutorials : http://line25.com/tutorials/space-photoshop-tutorials

If you are passionate about space, science, planets and stars, this list of brilliant space Photoshop tutorials will definitely appeal to you!

Top 100 Tutorials for Mastering Photoshop: http://speckyboy.com/2015/01/10/photoshop-tutorials/