当前位置: 首页>>代码示例>>PHP>>正文


PHP site::baseUrl方法代码示例

本文整理汇总了PHP中site::baseUrl方法的典型用法代码示例。如果您正苦于以下问题:PHP site::baseUrl方法的具体用法?PHP site::baseUrl怎么用?PHP site::baseUrl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在site的用法示例。


在下文中一共展示了site::baseUrl方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

           <p class="lead text-center">
             ResMan was designed and built by active multifamily professionals who understand the unique challenges you face on a daily basis.
             The developers and designers of ResMan are experienced property managers with "boots on the ground" experience and know what you need
             to increase your profitability, decrease expenses, and make your life easier.
           </p>
            <p class="lead text-center">
               Everything we do is guided by a moral compass that ensures fairness, respect, and an appreciation for the members of the multifamily
               industry. We work day-in and day-out to provide tools that make a difference and allow customers to focus on what matters: their own customers.
            </p>

            <div class="container exec">
               <h1>Meet The Team</h1>
                <div class="row exec">
                    <div class="col-sm-4 tami-pic">
                        <img class="img-responsive" src="<?php 
echo $site->baseUrl('img/company/tami.jpg');
?>
" />
                    </div>
                    <div class="col-sm-8 tami">
                        <h3>Tami Franklin — <span class="title"><em>President</em></span></h3>
                        <p class="bio">Tami Franklin has been instrumental in bringing intuitive software to an industry she has been a part of
                            for over 30 years.  Over the past decade she has been a driving force to bringing ResMan to fruition.  Tami is determined
                            to provide a superior product to the multifamily industry that enables businesses to reach new heights of performance.</p>
                    </div>
                </div>
                <div class="row exec">
                    <div class="col-sm-4 switch-right dave-pic">
                        <img class="img-responsive" src="<?php 
echo $site->baseUrl('img/company/dave-mckenna.jpg');
?>
开发者ID:nomadicmarc,项目名称:goodbay,代码行数:31,代码来源:index.php

示例2: site

<?php 
include '../php/config.php';
$site = new site();
$site->head("Property Management Solutions");
$site->nav();
?>

<!-- //// LANDING PAGE - EDIT THIS SECTION! //// -->
<section class="request-demo white">
    <div class="container">
        <div class="col-sm-7 content">

            <h2 class="text-center">The #1 Property Management Solution.</h2>
            <img class="img-responsive" src="<?php 
echo $site->baseUrl('img/mac-with-resman.png');
?>
" style="margin: 20px auto" />
            <p class="lead">ResMan is the <strong>only</strong> software for property management that works the way you do.  With the easy-to-use interface you can review a delinquent account, follow up on a work order, or manage your portfolio—all within 3 clicks or less. </p>
            <p class="lead">ResMan's property management solutions also features:</p>
            <ul>
                <li>Robust Accounting Suite</li>
                <li>Portfolio Reporting</li>
                <li>Maintenance Utility Module</li>
                <li>Lead Management</li>
                <li>Resident Portal</li>
                <li>Online Leasing &#038; Availability</li>
                <li>Accessibility on phone, tablet, and computer</li>
            </ul>
        </div>
<!-- STOP EDITING! -->
开发者ID:nomadicmarc,项目名称:goodbay,代码行数:30,代码来源:index.php

示例3: site

<?php

include '../php/config.php';
$site = new site();
$site->head('ResidentCheck');
$site->nav();
?>



    <section class="partners white">
        <div class="container">
            <div class="text-center">
                <img src="<?php 
echo $site->baseUrl('img/integration/resident-check-large.png');
?>
" class="img-responsive" style="margin: 0 auto" alt="Minol USA"/>
            </div>
        </div>
    </section>
    <section class="partners light-grey">
        <div class="container">
            <div class="row">
                <div class="col-sm-6">
                    <h3>
                        ResidentCheck
                    </h3>
                    <a href="http://www.residentcheck.com/" class="lead" target="_blank">
                        residentcheck.com
                    </a>
                    <h4>
开发者ID:nomadicmarc,项目名称:goodbay,代码行数:31,代码来源:residentcheck.php

示例4:

                <div class="content computer">
                    <h2>Vendor &#038; Expense Controls</h2>
                    <p class="lead">Set rules in ResMan to allow or restrict vendor activity. This guarantees vendor compliance and ensures that the spending limits you set are being followed.</p>
                </div>
            </div>
        </div>
    </div>
</section>


<!-- ~~~~~~ NEXT/PREV ~~~~~~ -->
<section class="cta blue">
    <div class="container">
        <div class="tour col-md-5">
            <a href="<?php 
echo $site->baseUrl('products/receivables');
?>
">
                <img src="../../img/arrow-left.png">
            </a>
            <h2 class="white">Manage Receivables</h2>
            <p class="lead white">
                Enable your team to improve cash flow in no time.
            </p>
            <a href="<?php 
echo $site->baseUrl('products/receivables');
?>
" class="btn btn-cta btn-block">Check it out</a>
        </div>
        <div class="or col-md-2">
            <span class="line"></span>
开发者ID:nomadicmarc,项目名称:goodbay,代码行数:31,代码来源:index.php

示例5: site

<?php

include '../php/config.php';
$site = new site();
$site->head('Audio Images');
$site->nav();
?>



    <section class="partners white">
        <div class="container">
            <div class="text-center">
                <img src="<?php 
echo $site->baseUrl('img/integration/audioimages-lg.jpg');
?>
" class="img-responsive" style="margin: 0 auto" alt="365 Connect"/>
            </div>
        </div>
    </section>
    <section class="partners light-grey">
        <div class="container">
            <h3>
                Audio Images
            </h3>
            <a href="http://www.audioimages.com/" class="lead" target="_blank">
                audioimages.com
            </a>
            <h4>
                About Audio Images
            </h4>
开发者ID:nomadicmarc,项目名称:goodbay,代码行数:31,代码来源:audio-images.php

示例6: site

<?php

include '../php/config.php';
$site = new site();
$site->head('Jonah Systems');
$site->nav();
?>



    <section class="partners white">
        <div class="container">
            <div class="text-center">
                <img src="<?php 
echo $site->baseUrl('img/integration/jonah-lg.jpg');
?>
" class="img-responsive" style="margin: 0 auto" alt="365 Connect"/>
            </div>
        </div>
    </section>
    <section class="partners light-grey">
        <div class="container">
            <h3>
                Jonah Systems
            </h3>
            <a href="http://www.jonahsystems.com/" class="lead" target="_blank">
                jonahsystems.com
            </a>
            <h4>
                About Jonah Systems
            </h4>
开发者ID:nomadicmarc,项目名称:goodbay,代码行数:31,代码来源:jonah.php

示例7: site

<?php

include '../php/config.php';
$site = new site();
$site->head('Satisfacts');
$site->nav();
?>



    <section class="partners white">
        <div class="container">
            <div class="text-center">
                <img src="<?php 
echo $site->baseUrl('img/integration/satisfacts-lg.jpg');
?>
" class="img-responsive" style="margin: 0 auto" alt="365 Connect"/>
            </div>
        </div>
    </section>
    <section class="partners light-grey">
        <div class="container">
            <h3>
                Satisfacts
            </h3>
            <a href="http://www.satisfacts.com/" class="lead" target="_blank">
                satisfacts.com
            </a>
            <h4>
                About Satisfacts
            </h4>
开发者ID:nomadicmarc,项目名称:goodbay,代码行数:31,代码来源:satisfacts.php

示例8: site

<?php

include '../php/config.php';
$site = new site();
$site->head('Minol USA: Premier Partner');
$site->nav();
?>



    <section class="partners white">
        <div class="container">
            <div class="text-center">
                <img src="<?php 
echo $site->baseUrl('img/integration/minol-large.png');
?>
" class="img-responsive" style="margin: 0 auto" alt="Minol USA"/>
            </div>
        </div>
    </section>
    <section class="partners light-grey">
        <div class="container">
            <h3>
                Minol USA: Premier Partner
            </h3>
            <a href="http://www.minolusa.com/" class="lead" target="_blank">
                minolusa.com
            </a>
            <h4>
                About Minol
            </h4>
开发者ID:nomadicmarc,项目名称:goodbay,代码行数:31,代码来源:minol-usa.php

示例9: site

<?php

include '../php/config.php';
$site = new site();
$site->head('Aptexx: Premier Partner');
$site->nav();
?>



    <section class="partners white">
        <div class="container">
            <div class="text-center">
                <img src="<?php 
echo $site->baseUrl('img/integration/aptexx-large.png');
?>
" class="img-responsive" style="margin: 0 auto" alt="Minol USA"/>
            </div>
        </div>
    </section>
    <section class="partners light-grey">
        <div class="container">
            <h3>
                Aptexx: Premier Partner
            </h3>
            <a href="http://aptexx.com/" class="lead" target="_blank">
                aptexx.com
            </a>
            <h4>
                About Aptexx: Premier Partner
            </h4>
开发者ID:nomadicmarc,项目名称:goodbay,代码行数:31,代码来源:aptexx.php

示例10: site

<?php

include '../php/config.php';
$site = new site();
$site->head('Assurant');
$site->nav();
?>



    <section class="partners white">
        <div class="container">
            <div class="text-center">
                <img src="<?php 
echo $site->baseUrl('img/integration/assurant-lg.jpg');
?>
" class="img-responsive" style="margin: 0 auto" alt="365 Connect"/>
            </div>
        </div>
    </section>
    <section class="partners light-grey">
        <div class="container">
            <h3>
                Assurant
            </h3>
            <a href="http://www.amrent.com/" class="lead" target="_blank">
                assurant.com
            </a>
            <h4>
                About Assurant
            </h4>
开发者ID:nomadicmarc,项目名称:goodbay,代码行数:31,代码来源:assurant.php

示例11: site

<?php

include '../php/config.php';
$site = new site();
$site->head('365 Connect');
$site->nav();
?>



    <section class="partners white">
        <div class="container">
            <div class="text-center">
                <img src="<?php 
echo $site->baseUrl('img/integration/365connect-lg.jpg');
?>
" class="img-responsive" style="margin: 0 auto" alt="365 Connect"/>
            </div>
        </div>
    </section>
    <section class="partners light-grey">
        <div class="container">
            <h3>
                365 Connect
            </h3>
            <a href="http://www.365connect.com/" class="lead" target="_blank">
                365connect.com
            </a>
            <h4>
                About 365 Connect
            </h4>
开发者ID:nomadicmarc,项目名称:goodbay,代码行数:31,代码来源:365connect.php

示例12: site

<?php

include '../php/config.php';
$site = new site();
$site->head('Maintenance Supply Headquarters');
$site->nav();
?>



    <section class="partners white">
        <div class="container">
            <div class="text-center">
                <img src="<?php 
echo $site->baseUrl('img/integration/maintenance-supply-headquarters-large.png');
?>
" class="img-responsive" style="margin: 0 auto" alt="Minol USA"/>
            </div>
        </div>
    </section>
    <section class="partners light-grey">
        <div class="container">
            <h3>
                Maintenance Supply Headquarters
            </h3>
            <a href="http://supplyhq.com/" class="lead" target="_blank">
                supplyhq.com
            </a>
            <h4>
                About Maintenance Supply Headquarters
            </h4>
开发者ID:nomadicmarc,项目名称:goodbay,代码行数:31,代码来源:maintenance-supply-headquarters.php

示例13: site

<?php

include '../php/config.php';
$site = new site();
$site->head('ePremium Insurance - ResMan Property Management Integration Partner');
$site->nav();
?>



    <section class="partners white">
        <div class="container">
            <div class="text-center">
                <img src="<?php 
echo $site->baseUrl('img/integration/ePremium-lg.jpg');
?>
" class="img-responsive" style="margin: 0 auto" alt="ePremium Insurance"/>
            </div>
        </div>
    </section>
    <section class="partners light-grey">
        <div class="container">
            <h3>
                ePremium
            </h3>
            <a href="http://www.epremiuminsurance.com/" class="lead" target="_blank">
                epremiuminsurance.com
            </a>
            <h4>
                About ePremium
            </h4>
开发者ID:nomadicmarc,项目名称:goodbay,代码行数:31,代码来源:epremium.php

示例14: site

<?php

include '../php/config.php';
$site = new site();
$site->head('Fresh Interactive');
$site->nav();
?>



    <section class="partners white">
        <div class="container">
            <div class="text-center">
                <img src="<?php 
echo $site->baseUrl('img/integration/freshiscool-lg.jpg');
?>
" class="img-responsive" style="margin: 0 auto" alt="365 Connect"/>
            </div>
        </div>
    </section>
    <section class="partners light-grey">
        <div class="container">
            <h3>
                Fresh Interactive
            </h3>
            <a href="http://www.freshiscool.com/" class="lead" target="_blank">
                freshiscool.com
            </a>
            <h4>
                About Fresh Interactive
            </h4>
开发者ID:nomadicmarc,项目名称:goodbay,代码行数:31,代码来源:freshiscool.php

示例15: site

<?php

include '../php/config.php';
$site = new site();
$site->head('DepositIQ: The Smart Alternative to Deposits');
$site->nav();
?>



    <section class="partners white">
        <div class="container">
            <div class="text-center">
                <img src="<?php 
echo $site->baseUrl('img/integration/depositiq-lg.jpg');
?>
" class="img-responsive" style="margin: 0 auto" alt="DepositIQ Logo"/>
            </div>
        </div>
    </section>
    <section class="partners light-grey">
        <div class="container">
            <h3>
                DepositIQ
            </h3>
            <a href="http://www.depositiq.com/" class="lead" target="_blank">
                DepositIQ.com
            </a>
            <h4>
                About DepositIQ
            </h4>
开发者ID:nomadicmarc,项目名称:goodbay,代码行数:31,代码来源:depositiq.php


注:本文中的site::baseUrl方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。