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


PHP OpenVBX::addCSS方法代码示例

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


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

示例1: array

            $ci->db->insert('outbound_queue', array('tenant' => $tenant_id, 'number' => $subscriber->value, 'type' => $type, 'time' => $time, 'callerId' => $callerId, 'data' => json_encode(array('message' => $_POST['message']))));
        }
    } elseif ('call' == $type) {
        $flow = OpenVBX::getFlows(array('id' => $_POST['flow'], 'tenant_id' => $tenant_id));
        if ($flow && count($subscribers) && $flow[0]->values['data']) {
            foreach ($subscribers as $subscriber) {
                $ci->db->insert('outbound_queue', array('tenant' => $tenant_id, 'number' => $subscriber->value, 'type' => $type, 'time' => $time, 'callerId' => $callerId, 'data' => json_encode(array('id' => $flow[0]->values['id'], 'name' => $flow[0]->values['name']))));
            }
        }
    }
}
$lists = $ci->db->query(sprintf('SELECT id, name FROM subscribers_lists WHERE tenant = %d', $tenant_id))->result();
$flows = OpenVBX::getFlows(array('tenant_id' => $tenant_id));
OpenVBX::addJS('jquery-ui-1.7.3.custom.min.js');
OpenVBX::addJS('schedule.js');
OpenVBX::addCSS('jquery-ui-1.7.3.custom.css');
?>
<style>
	.vbx-schedule form {
		display: none;
		padding: 20px 5%;
		background: #eee;
		border-bottom: 1px solid #ccc;
	}
	.vbx-schedule h3 {
		font-size: 16px;
		font-weight: bold;
		margin-top: 0;
	}
</style>
<div class="vbx-content-main">
开发者ID:rodrigotanco,项目名称:OpenVBX-Plugin-Subscriptions,代码行数:31,代码来源:schedule.php

示例2: file_get_contents

                echo file_get_contents('plugin.json', true);
                exit;
            }
        }
    }
}
?>

<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css'>

<?php 
// Chat UI Design by Julia Smith
// http://www.bypeople.com/web-chat-widget/
// http://codepen.io/drehimself/pen/KdXwxR?utm_source=bypeople
OpenVBX::addCSS('css/style.css');
OpenVBX::addCSS('css/jquery.light.css');
?>


<div class="vbx-content-main">
	<div class="vbx-content-menu vbx-content-menu-top">
		<h2 class="vbx-content-heading">SMS Conversation List</h2>
		<div id="sound-notification" style="float: right; color: white; font-size: 25px;"><a href="javascript:void(0);" style="color: white;"><i class="fa"></i></a>&nbsp;</div>
	</div><!-- .vbx-content-menu -->
	<div class="vbx-content-container">
		<div class="vbx-content-section">
			<div class="smsList" style="float:left; width:45%;">
				<table class="vbx-items-grid" border="0" id="smsList">
					<thead>
						<tr class="items-head recording-head"><th>Date</th><th>From</th><th>To</th><th>Messages</th></tr>
					</thead>
开发者ID:gegere,项目名称:OpenVBX-Plugin-SMS-Conversation,代码行数:31,代码来源:sms-conversation.php


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