本文整理汇总了PHP中Base_module_model类的典型用法代码示例。如果您正苦于以下问题:PHP Base_module_model类的具体用法?PHP Base_module_model怎么用?PHP Base_module_model使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Base_module_model类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: load_config
/**
* Loads the advanced modules config file
*
* @access public
* @param string Name of config file. Default is the name of the advanced module (optional)
* @return void
*/
public function load_config($config = NULL)
{
if (empty($config)) {
$config = $this->name;
}
// last parameter tells it to fail gracefully
// check application directory for overwrites
$this->CI->load->module_config('app', $config, FALSE, TRUE);
$app_config = $this->CI->config->item($this->name);
// now get the blog configuration
$this->CI->load->module_config($this->folder(), $config, FALSE, TRUE);
$module_config = $this->CI->config->item($this->name);
// if app config exists then merge
if (!empty($app_config)) {
$this->_config = array_merge($module_config, $app_config);
} else {
$this->_config = $module_config;
}
// special case for tables so that they are loaded into the static Base_module_model variable
if ($this->CI->config->item('tables')) {
if (!class_exists('Base_module_model')) {
require_once BASEPATH . 'core/Model.php';
require_once FUEL_PATH . 'models/base_module_model.php';
}
Base_module_model::$tables = array_merge(Base_module_model::$tables, $this->CI->config->item('tables'));
}
}
开发者ID:ressphere,项目名称:cb_iloveproperty,代码行数:34,代码来源:Fuel_advanced_module.php
示例2: array
function form_fields($values = array())
{
$fields = parent::form_fields();
$fields['last_modified']['type'] = 'hidden';
$fields['date_added']['type'] = 'hidden';
return $fields;
}
开发者ID:goutamwms,项目名称:newsletter-module-fuel-cms,代码行数:7,代码来源:newsletter_drafts_model.php
示例3: PasswordHash
function on_before_validate($values)
{
if ($values['username'] == "" || $values['username'] == NULL) {
$this->password_in_clear = $password = $this->random_password();
$ci = CI_Controller::get_instance();
$ci->load->helper('url');
$ci->load->library('session');
$ci->load->library('extemplate');
$ci->load->library("email");
$ci->load->config('tank_auth', TRUE);
$hasher = new PasswordHash($ci->config->item('phpass_hash_strength', 'tank_auth'), $ci->config->item('phpass_hash_portable', 'tank_auth'));
$hashed_password = $hasher->HashPassword($password);
$values["password"] = $hashed_password;
$values["created"] = datetime_now();
$values['username'] = trim($values['email']);
$values["last_ip"] = $_SERVER['REMOTE_ADDR'];
$data = $values;
$data['site_name'] = 'http://www.ressphere.com';
$data['password'] = $this->password_in_clear;
if ($ci->config->item('email_account_details')) {
base::_begin_send_email('Welcome to', $data['email'], $data, $ci);
}
}
return parent::on_before_validate($values);
}
开发者ID:ressphere,项目名称:cb_iloveproperty,代码行数:25,代码来源:users_model.php
示例4: array
function form_fields($values = array())
{
$fields = parent::form_fields();
$fields['video_name']['required'] = TRUE;
$fields['video_path']['required'] = TRUE;
return $fields;
}
开发者ID:ressphere,项目名称:cb_iloveproperty,代码行数:7,代码来源:home_video_model.php
示例5: __construct
/**
* Constructor.
*
* @access public
* @return void
*/
public function __construct()
{
$CI =& get_instance();
$tables = $CI->config->item('tables', 'fuel');
parent::__construct($tables['fuel_navigation_groups']);
$this->add_validation('name', array(&$this, 'valid_name'), lang('error_requires_string_value'));
}
开发者ID:ressphere,项目名称:cb_iloveproperty,代码行数:13,代码来源:fuel_navigation_groups_model.php
示例6: list_items
/**
* Lists the log items
*
* @access public
* @param int The limit value for the list data (optional)
* @param int The offset value for the list data (optional)
* @param string The field name to order by (optional)
* @param string The sorting order (optional)
* @param boolean Determines whether the result is just an integer of the number of records or an array of data (optional)
* @return mixed If $just_count is true it will return an integer value. Otherwise it will return an array of data (optional)
*/
public function list_items($limit = NULL, $offset = NULL, $col = 'entry_date', $order = 'desc', $just_count = FALSE)
{
$this->db->select($this->_logs_table . '.id, entry_date, CONCAT(' . $this->_tables['fuel_users'] . '.first_name, " ", ' . $this->_tables['fuel_users'] . '.last_name) as name, message, type', FALSE);
$this->db->join($this->_tables['fuel_users'], $this->_logs_table . '.user_id = ' . $this->_tables['fuel_users'] . '.id', 'left');
$data = parent::list_items($limit, $offset, $col, $order, $just_count);
return $data;
}
开发者ID:huayuxian,项目名称:FUEL-CMS,代码行数:18,代码来源:fuel_logs_model.php
示例7:
function list_items($limit = NULL, $offset = NULL, $col = 'id', $order = 'asc')
{
$this->db->join('wa_items', 'wa_items.id = wa_market_prices.item_id', 'left');
$this->db->select('wa_market_prices.id, wa_market_prices.item_id, wa_market_prices.quantity, wa_market_prices.price, wa_items.name AS name, wa_items.damage AS damage', FALSE);
$data = parent::list_items($limit, $offset, $col, $order);
return $data;
}
开发者ID:roliandra,项目名称:WebInterface-Fuel,代码行数:7,代码来源:market_model.php
示例8: array
function form_fields($values = array())
{
$fields = parent::form_fields();
$CI =& get_instance();
$CI->load->module_model(BLOG_FOLDER, 'blog_users_model');
$CI->load->module_model(BLOG_FOLDER, 'blog_posts_model');
$post_title = '';
$post_options = $CI->blog_posts_model->options_list('id', 'title', array(), 'date_added desc');
if (empty($post_options)) {
return lang('blog_error_no_posts_to_comment');
}
$fields['post_id'] = array('type' => 'select', 'options' => $post_options, 'label' => 'Post');
if (!empty($values['id'])) {
$post = $CI->blog_posts_model->find_by_key($values['post_id']);
$post_title = $post->title;
if (!$post->is_published()) {
add_error(lang('blog_post_is_not_published'));
}
$fields['post_id'] = array('type' => 'hidden', 'value' => $post_title, 'displayonly' => TRUE);
$fields['post_title'] = array('label' => 'Post', 'value' => $post_title, 'order' => 1);
$fields['post_title']['displayonly'] = TRUE;
$fields['post_published']['displayonly'] = TRUE;
$fields['author_email']['displayonly'] = TRUE;
$fields['author_name']['displayonly'] = TRUE;
$fields['post_title']['displayonly'] = TRUE;
$fields['author_website']['displayonly'] = TRUE;
$fields['ip_host']['displayonly'] = TRUE;
$fields['date_submitted'] = array('displayonly' => TRUE, 'value' => english_date($values['date_added'], TRUE));
$ip_host = !empty($values['author_ip']) ? gethostbyaddr($values['author_ip']) . ' (' . $values['author_ip'] . ')' : '';
$fields['ip_host'] = array('label' => 'IP/Host', 'value' => $ip_host, 'order' => 5, 'displayonly' => TRUE);
$fields['Reply to this Comment'] = array('type' => 'section');
$replies = $this->find_all_array(array('parent_id' => $values['id']));
$reply_arr = array();
foreach ($replies as $r) {
$reply_arr[] = $r['content'];
}
$fields['replies'] = array('label' => 'Replies', 'displayonly' => TRUE, 'value' => implode('<br /><br />', $reply_arr));
if ($values['author_id'] == $CI->fuel_auth->user_data('id') or $CI->fuel_auth->is_super_admin()) {
$fields['reply'] = array('label' => 'Reply', 'type' => 'textarea');
$notify_options = array('Commentor' => lang('blog_comment_notify_option2'), 'All' => lang('blog_comment_notify_option1'), 'None' => lang('blog_comment_notify_option3'));
$fields['reply_notify'] = array('label' => 'Notfiy', 'type' => 'enum', 'options' => $notify_options);
}
// hidden
$fields['author_ip'] = array('type' => 'hidden');
} else {
$fields['author_ip'] = array('type' => 'hidden', 'value' => $_SERVER['REMOTE_ADDR'], 'label' => 'Author IP Address');
$fields['is_spam'] = array('type' => 'hidden');
$fields['date_added']['type'] = 'hidden';
// so it will auto add
$fields['last_modified']['type'] = 'hidden';
// so it will auto add
}
// set author to current fuel user
if (empty($fields['author_id']) and $CI->fuel_auth->user_data('id')) {
$fields['author_id'] = array('value' => $CI->fuel_auth->user_data('id'));
}
$fields['author_id'] = array('type' => 'hidden');
return $fields;
}
开发者ID:kieranklaassen,项目名称:FUEL-CMS,代码行数:59,代码来源:blog_comments_model.php
示例9:
function list_items($limit = NULL, $offset = NULL, $col = 'id', $order = 'asc')
{
$this->db->join('wa_items', 'wa_items.id = wa_auctions.item_id', 'left');
$this->db->join('wa_users', 'wa_users.id = wa_auctions.seller', 'left');
$this->db->select('wa_auctions.id, wa_auctions.item_id, wa_users.username AS seller, wa_auctions.price, wa_items.name AS name, wa_items.damage AS damage, wa_auctions.quantity, wa_auctions.started', FALSE);
$data = parent::list_items($limit, $offset, $col, $order);
return $data;
}
开发者ID:roliandra,项目名称:WebInterface-Fuel,代码行数:8,代码来源:auctions_model.php
示例10: form_fields
public function form_fields()
{
$fields = parent::form_fields();
$CI =& get_instance();
$CI->load->helper('directory');
$CI->load->helper('file');
return $fields;
}
开发者ID:randombrad,项目名称:FUEL-CMS,代码行数:8,代码来源:blocks_model.php
示例11: array
function form_fields($values = array())
{
$fields = parent::form_fields();
$upload_path = assets_server_path('authors/', 'images');
$fields['avatar_upload'] = array('type' => 'file', 'upload_path' => $upload_path, 'overwrite' => TRUE);
$fields['published']['order'] = 1000;
return $fields;
}
开发者ID:rudyondolan,项目名称:FUEL-CMS-User-Guide-Module,代码行数:8,代码来源:authors_model.php
示例12: array
function form_fields($values = array())
{
$fields = parent::form_fields();
//$fields['published']['order'] = 1000;
$upload_path = ltrim(assets_server_path('i_property/', 'images'), "/");
$fields['Property_info_image'] = array('type' => 'file', 'upload_path' => $upload_path, 'overwrite' => TRUE, 'xss_clean' => TRUE, 'allowed_types' => 'jpg|jpeg|bmp|png|gif');
return $fields;
}
开发者ID:ressphere,项目名称:cb_iloveproperty,代码行数:8,代码来源:property_info_model.php
示例13: array
function form_fields($values = array())
{
$fields = parent::form_fields();
foreach ($fields as &$f) {
$f['displayonly'] = true;
}
return $fields;
}
开发者ID:goutamwms,项目名称:newsletter-module-fuel-cms,代码行数:8,代码来源:newsletter_historic_model.php
示例14: array
function form_fields($values = array(), $related = array())
{
$fields = parent::form_fields($values, $related);
// ******************* ADD CUSTOM FORM STUFF HERE *******************
$fields['content']['img_folder'] = 'articles/';
$fields['image']['folder'] = 'images/articles/';
$fields['thumb_image']['folder'] = 'images/articles/thumbs/';
return $fields;
}
开发者ID:huayuxian,项目名称:FUEL-CMS,代码行数:9,代码来源:articles_model.php
示例15: array
function form_fields($values = array())
{
$fields = parent::form_fields();
$upload_path = assets_server_path('i_property/', 'images');
$fields['category']['required'] = TRUE;
$fields['category_path']['required'] = TRUE;
$fields['category_icon'] = array('required' => TRUE, 'type' => 'file', 'upload_path' => $upload_path, 'overwrite' => TRUE, 'xss_clean' => TRUE, 'is_image' => TRUE, 'allowed_types' => 'jpg|jpeg|bmp|png|gif');
$fields['category_mo_icon'] = array('required' => TRUE, 'type' => 'file', 'upload_path' => $upload_path, 'overwrite' => TRUE, 'xss_clean' => TRUE, 'is_image' => TRUE, 'allowed_types' => 'jpg|jpeg|bmp|png|gif');
return $fields;
}
开发者ID:ressphere,项目名称:cb_iloveproperty,代码行数:10,代码来源:home_category_model.php
示例16: __construct
public function __construct($table_name)
{
// Main entries table
parent::__construct($table_name);
// Align record model name
// Define the record class name, rather for it to when crazy
$this->record_class = $table_name . "_record";
// 1. For benchmark (profiler) to keep track total execute time
// Able to disable through "application/config/MY_config.php"
// 2. For Error switching purpose
//$this->CI =& get_instance();
//$this->CI->config->load("MY_config");
$this->config->load("MY_config");
}
开发者ID:ressphere,项目名称:cb_iloveproperty,代码行数:14,代码来源:cb_base_module_model.php
示例17: array
function form_fields($values = array())
{
$fields = parent::form_fields();
$CI =& get_instance();
$CI->load->model('authors_model');
$CI->load->model('categories_model');
$CI->load->model('categories_to_articles_model');
$category_options = $CI->categories_model->options_list('id', 'name', array('published' => 'yes'), 'name');
$category_values = !empty($values['id']) ? array_keys($CI->categories_to_articles_model->find_all_array_assoc('category_id', array('article_id' => $values['id'], 'categories.published' => 'yes'))) : array();
$fields['categories'] = array('label' => 'Categories', 'type' => 'array', 'class' => 'add_edit categories', 'options' => $category_options, 'value' => $category_values, 'mode' => 'multi');
if ($CI->fuel_auth->has_permission('authors')) {
$fields['author_id']['class'] = 'add_edit authors';
}
return $fields;
}
开发者ID:kieranklaassen,项目名称:FUEL-CMS,代码行数:15,代码来源:articles_model.php
示例18: array
function form_fields($values = array())
{
$fields = parent::form_fields();
$CI =& get_instance();
$CI->load->module_model(FUEL_FOLDER, 'users_model');
$CI->load->module_library(BLOG_FOLDER, 'fuel_blog');
$options = $CI->users_model->options_list();
$upload_image_path = assets_server_path($CI->fuel_blog->settings('asset_upload_path'));
$fields['fuel_user_id'] = array('label' => 'User', 'type' => 'select', 'options' => $options);
// put all project images into a projects suboflder.
$fields['avatar_image_upload']['upload_path'] = assets_server_path($CI->fuel_blog->settings('asset_upload_path'));
// fix the preview by adding projects in front of the image path since we are saving it in a subfolder
if (!empty($values['avatar_image'])) {
$fields['avatar_image_upload']['before_html'] = '<img src="' . assets_path($CI->fuel_blog->settings('asset_upload_path') . $values['avatar_image']) . '" style="float: right;"/>';
}
return $fields;
}
开发者ID:kieranklaassen,项目名称:FUEL-CMS,代码行数:17,代码来源:blog_users_model.php
示例19: array
function form_fields($values = array(), $related_fields = array())
{
$fields = parent::form_fields($values, $related_fields);
$CI =& get_instance();
$CI->load->module_model(FUEL_FOLDER, 'fuel_users_model');
$CI->load->module_library(BLOG_FOLDER, 'fuel_blog');
//use only fuel users not already chosen
$where = !empty($values['fuel_user_id']) ? array('fuel_user_id !=' => $values['fuel_user_id']) : array();
$already_used = array_keys($this->options_list('fuel_user_id', 'display_name', $where));
if (!empty($already_used)) {
$CI->fuel_users_model->db()->where_not_in('id', $already_used);
}
$options = $CI->fuel_users_model->options_list();
$upload_image_path = assets_server_path($CI->fuel->blog->settings('asset_upload_path'));
$fields['fuel_user_id'] = array('label' => 'User', 'type' => 'select', 'options' => $options, 'module' => 'users');
return $fields;
}
开发者ID:pwhsueh,项目名称:voting,代码行数:17,代码来源:blog_users_model.php
示例20: array
function form_fields($values = array())
{
$fields = parent::form_fields();
$CI =& get_instance();
$CI->load->module_library(BLOG_FOLDER, 'fuel_blog');
$CI->load->module_model(BLOG_FOLDER, 'blog_users_model');
$CI->load->module_model(BLOG_FOLDER, 'blog_categories_model');
$CI->load->module_model(BLOG_FOLDER, 'blog_posts_to_categories_model');
$blog_config = $CI->config->item('blog');
$category_options = $CI->blog_categories_model->options_list('id', 'name', array('published' => 'yes'), 'name');
$category_values = !empty($values['id']) ? array_keys($CI->blog_posts_to_categories_model->find_all_array_assoc('category_id', array('post_id' => $values['id'], $this->_tables['blog_categories'] . '.published' => 'yes'))) : array();
$fields['categories'] = array('label' => 'Categories', 'type' => 'array', 'options' => $category_options, 'class' => 'add_edit blog/categories combo', 'value' => $category_values, 'mode' => 'multi');
$user_options = $CI->blog_users_model->options_list();
$user = $this->fuel_auth->user_data();
$user_value = !empty($values['author_id']) ? $values['author_id'] : $user['id'];
$author_comment = $fields['author_id']['comment'];
$fields['author_id'] = array('label' => 'Author', 'type' => 'select', 'options' => $user_options, 'first_option' => 'Select an author...', 'value' => $user_value, 'comment' => $author_comment);
if (!isset($values['allow_comments'])) {
$fields['allow_comments']['value'] = $CI->fuel_blog->settings('allow_comments') ? 'yes' : 'no';
}
if (!empty($blog_config['formatting'])) {
$blog_config['formatting'] = (array) $blog_config['formatting'];
if (count($blog_config['formatting']) == 1) {
$fields['formatting'] = array('type' => 'hidden', 'options' => current($blog_config['formatting']), 'default' => $fields['formatting']['default']);
} else {
$fields['formatting'] = array('type' => 'select', 'options' => $blog_config['formatting'], 'default' => $fields['formatting']['default']);
}
}
$fields['published']['order'] = 10000;
if (!is_true_val($CI->fuel_blog->settings('allow_comments'))) {
unset($fields['allow_comments']);
}
$fields['upload_images'] = array('type' => 'file', 'class' => 'multifile', 'order' => 6, 'upload_path' => assets_server_path($CI->fuel_blog->settings('asset_upload_path')), 'comment' => 'Upload images to be used with your blog posts');
unset($fields['content_filtered']);
//$fields['date_added']['type'] = 'hidden'; // so it will auto add
$fields['date_added']['type'] = 'datetime';
// so it will auto add
$fields['last_modified']['type'] = 'hidden';
// so it will auto add
$fields['permalink']['order'] = 2;
// for older versions where the schema order was different
return $fields;
}
开发者ID:randombrad,项目名称:FUEL-CMS,代码行数:43,代码来源:blog_posts_model.php
注:本文中的Base_module_model类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论