Plugin Directory

Changeset 670590


Ignore:
Timestamp:
02/20/2013 12:54:09 AM (13 years ago)
Author:
websitezcom
Message:

Adjusting text and adding cities display

Location:
furnishedcom
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • furnishedcom/tags/1.0/admin.php

    r670567 r670590  
    77
    88function furnished_com_instructions(){
     9    $cities = furnished_com_get_cities(); //Prime the cities to speed things up
    910?>
    1011<div class="wrap">
     
    1617        <li><?php _e('<strong>state</strong> is an optional value that allows you to specify the state to show furnished rentals.') ?></li>
    1718    </ul>
     19    <?php if(count($cities['cities']) > 0): ?>
     20    <p><?php _e('The following cities are supported:') ?></p>
     21    <ul style="margin-left: 20px;">
     22    <?php foreach($cities['cities'] as $city): ?>
     23    <li><?php _e($city['city'].", ".$city['state']); ?></li>
     24    <?php endforeach; ?>
     25    </ul>
     26    <?php endif; ?>
    1827</div>
    1928<?php
  • furnishedcom/tags/1.0/readme.txt

    r670567 r670590  
    77Stable tag: 1.0
    88
    9 The Furnished.com WordPress plugin creates a powerful search widget on your website that allows users to browse through thousands of furnished rentals right from your website.
     9The Furnished.com WordPress plugin creates a powerful search widget that allows users to browse through thousands of furnished rentals in the USA.
    1010
    1111== Description ==
  • furnishedcom/trunk/admin.php

    r669905 r670590  
    77
    88function furnished_com_instructions(){
     9    $cities = furnished_com_get_cities(); //Prime the cities to speed things up
    910?>
    1011<div class="wrap">
     
    1617        <li><?php _e('<strong>state</strong> is an optional value that allows you to specify the state to show furnished rentals.') ?></li>
    1718    </ul>
     19    <?php if(count($cities['cities']) > 0): ?>
     20    <p><?php _e('The following cities are supported:') ?></p>
     21    <ul style="margin-left: 20px;">
     22    <?php foreach($cities['cities'] as $city): ?>
     23    <li><?php _e($city['city'].", ".$city['state']); ?></li>
     24    <?php endforeach; ?>
     25    </ul>
     26    <?php endif; ?>
    1827</div>
    1928<?php
  • furnishedcom/trunk/readme.txt

    r669905 r670590  
    77Stable tag: 1.0
    88
    9 The Furnished.com WordPress plugin creates a powerful search widget on your website that allows users to browse through thousands of furnished rentals right from your website.
     9The Furnished.com WordPress plugin creates a powerful search widget that allows users to browse through thousands of furnished rentals in the USA.
    1010
    1111== Description ==
Note: See TracChangeset for help on using the changeset viewer.