Plugin Directory

Changeset 1110997


Ignore:
Timestamp:
03/12/2015 10:37:05 AM (11 years ago)
Author:
AdEntify
Message:

version 1.0.7

Location:
adentify/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • adentify/trunk/adentify.php

    r1109540 r1110997  
    44 * Plugin URI: http://wordpress.adentify.com
    55 * Description: A brief description of the Plugin.
    6  * Version: 1.0.6
     6 * Version: 1.0.7
    77 * Author: ValYouAd
    88 * Author URI: http://www.valyouad.com
     
    5151define( 'ADENTIFY_API_REFRESH_TOKEN', 'api_refresh_token');
    5252define( 'ADENTIFY_API_EXPIRES_TIMESTAMP', 'api_expires_timestamp');
    53 define( 'PLUGIN_VERSION', '1.0.6');
     53define( 'PLUGIN_VERSION', '1.0.7');
    5454define( 'ADENTIFY_SQL_TABLE_PHOTOS', 'adentify_photos');
    5555
     
    437437        wp_delete_attachment($_GET['wp_photo_id']);
    438438        DBManager::getInstance()->deletePhoto($_GET['wp_photo_id']);
    439         print_r(APIManager::getInstance()->deletePhoto($_GET['photo_id']));
     439        //print_r(APIManager::getInstance()->deletePhoto($_GET['photo_id']));
    440440    }
    441441}
  • adentify/trunk/readme.txt

    r1109540 r1110997  
    55Requires at least: 3.0.1
    66Tested up to: 4.1
    7 Stable tag: 1.0.6
     7Stable tag: 1.0.7
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7171= 1.0.6 =
    7272* New tag type : advertising. Now, you can add ads in your tags
     73= 1.0.7 =
     74* Fix translations
  • adentify/trunk/templates/admin/modals/tag.advertising.html.twig

    r1110977 r1110997  
    22    <div class="tag-form tab-pane active" id="tag-advertising" style="display: none">
    33        <div class="form-group">
    4             <label>{{ 'tag.advertising.formats'|trans }}</label>
     4            <label>{% trans 'tag.advertising.formats' %}</label>
    55            <select id="ad-formats" class="form-control">
    66                <option value="300-250">300x250</option>
    77                <option value="320-100">320x100</option>
    8                 <option value="custom">{{ 'tag.advertising.customFormat'|trans }}</option>
     8                <option value="custom">{% trans 'tag.advertising.customFormat' %}</option>
    99            </select>
    1010        </div>
     
    1212            <div class="row">
    1313                <div class="col-xs-6">
    14                     <label>{{ 'tag.advertising.labelWidth'|trans }}</label>
     14                    <label>{% trans 'tag.advertising.labelWidth' %}</label>
    1515                    <input class="form-control" type="text" id="ad-width" name="width" value="300">
    1616                </div>
    1717                <div class="col-xs-6">
    18                     <label>{{ 'tag.advertising.labelHeight'|trans }}</label>
     18                    <label>{% trans 'tag.advertising.labelHeight' %}</label>
    1919                    <input class="form-control" type="text" id="ad-height" name="height" value="250">
    2020                </div>
     
    2222        </div>
    2323        <div class="form-group">
    24             <label>{{ 'tag.advertising.labelCode'|trans }}</label>
     24            <label>{% trans 'tag.advertising.labelCode' %}</label>
    2525            <textarea class="form-control" id="ad-code" name="code"></textarea>
    2626        </div>
Note: See TracChangeset for help on using the changeset viewer.